Categories | Question details Back To List | ||
Grid how can i put hyperlink into cell? Answer posted on Jun 11, 2007 10:27 There are multiple ways to provide javascript actions from cell, most common are a) Use "link" excell and formated data <cell>Text^javascript:Action^_self</cell> <cell>Delete Alert?^javascript:confirmDelete("some")^_self</cell> such code will create an A tag, with javascript action attached to it b) Use "ro" excell and HTML value <cell><![CDATA[<a href='#' onclick='Action'>Text</a>]]></cell> <cell><![CDATA[<a href='#' onclick='confirmDelete("some")'>Delete Alert?</a>]]></cell> Answer posted by Andrei (Support) on Nov 30, 2014 21:37 If you haven't found the needed information there and still looking for a solution, you will find the additional help checking vb.net scheduler and slide bar javascript. |