or

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <table width="500px"> <tr> <td> <telerik:RadTextBox ID="RadTextBox1" runat="server" Skin="Vista" Width="100%"> </telerik:RadTextBox> </td> </tr> </table> </form></body></html>Hi all,
I wrote java script function to handle: ClientEvents -> OnRowSelecting
function rowSelecting(sender, args) { .... }
My question is: can I ( and how ) determine whether this event has been rised
by clicking data row or by checking a header checkbox of GridClientSelectColumn ?
I was trying to retrieve it from sender but I failed. Does anyone know how to do it ?
Thx from advance
| <div id="page_content_home"> |
| |
| <cc1:TabContainer ID="tcHomePage" runat="server" CssClass="sales_tabs_home" ActiveTabIndex="0"> |
| <cc1:TabPanel ID="tpNews" runat="server"> |
| <contenttemplate><br /> |
| <telerik:RadRotator ID="RadRotator1" runat="server" DataSourceID="xmlDataSource1" ScrollDirection="Up" ScrollDuration="2000" Width="450px" Height="330px" |
| FrameDuration="1" InitialItemIndex="-1"> |
| <ItemTemplate> |
| <div class="newsFeed"> |
| <a href='<%# XPath("link") %>'> |
| <%# System.Web.HttpUtility.HtmlEncode(XPath("title").ToString())%> |
| </a> |
| <br /><%# XPath("description") %><br /> |
| <%# XPath("pubDate") %> |
| </div> |
| </ItemTemplate> |
| </telerik:RadRotator> |
| </contenttemplate> |
| <headertemplate>News</headertemplate> |
| </cc1:TabPanel> |
| <cc1:TabPanel ID="tpMatchInfo" runat="server"> |
| <contenttemplate> <br /> |
| <telerik:RadTextBox ID="RadTextBox1" runat="server" Text="radtextbox" Width="125px"> |
| </telerik:RadTextBox><br /> |
| This will be the latest match information |
| </contenttemplate> |
| <headertemplate>Match Info</headertemplate> |
| </cc1:TabPanel> |
| <cc1:TabPanel ID="tpLatestPredictions" runat="server" > |
| <contenttemplate> <br /><br /> |
| This the latest match prediction from users |
| </contenttemplate> |
| <headertemplate>Latest Predictions</headertemplate> |
| </cc1:TabPanel> |
| <cc1:TabPanel ID="tpComments" runat="server" > |
| <contenttemplate><br /><br /> |
| This is the latest comments from users |
| </contenttemplate> |
| <headertemplate>Supporter Comments</headertemplate> |
| </cc1:TabPanel> |
| </cc1:TabContainer> |
| <asp:XmlDataSource ID="xmlDataSource1" XPath="rss/channel/item" runat="server" DataFile="http://www.finning.co.uk/rss/"> |
| </asp:XmlDataSource> |
| </div> |