﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - How can I get which selection checkbox clicked in client side</title><link>http://www.intersoftsolutions.com/Community/WebGrid/How-can-I-get-which-selection-checkbox-clicked-in-client-side/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>How can I get which selection checkbox clicked in client side</title><link>http://www.intersoftsolutions.com/Community/WebGrid/How-can-I-get-which-selection-checkbox-clicked-in-client-side/</link><pubDate>Tue, 27 Oct 2009 22:16:18 GMT</pubDate><dc:creator>yudi</dc:creator><category>selection checkbox grid</category><description>&lt;blockquote&gt;&lt;p&gt;Hi Handy,&lt;/p&gt;&lt;p&gt;I understood you. It is good, but it is not solution of my problem.&lt;/p&gt;&lt;p&gt;I solved it different way.&lt;/p&gt;&lt;p&gt;Thanks again..&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Could you please kindly share your solution of this issue with us, so that it would help other developer that might have similar problem?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Thank you.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>How can I get which selection checkbox clicked in client side</title><link>http://www.intersoftsolutions.com/Community/WebGrid/How-can-I-get-which-selection-checkbox-clicked-in-client-side/</link><pubDate>Tue, 27 Oct 2009 07:03:11 GMT</pubDate><dc:creator>civansmail@gmail.com</dc:creator><category>selection checkbox grid</category><description>&lt;p&gt;Hi Handy,&lt;/p&gt;
&lt;p&gt;I understood you. It is good, but it is not solution of my problem.&lt;/p&gt;
&lt;p&gt;I solved it different way.&lt;/p&gt;
&lt;p&gt;Thanks again..&lt;/p&gt;</description></item><item><title>How can I get which selection checkbox clicked in client side</title><link>http://www.intersoftsolutions.com/Community/WebGrid/How-can-I-get-which-selection-checkbox-clicked-in-client-side/</link><pubDate>Tue, 27 Oct 2009 06:47:07 GMT</pubDate><dc:creator>civansmail@gmail.com</dc:creator><category>selection checkbox grid</category><description>&lt;p&gt;Thanks Yudi,&lt;/p&gt;
&lt;p&gt;this code is not a solution of my problem.&lt;/p&gt;
&lt;p&gt;I want to understand the user clicked "All" or individual row checkbox.&lt;/p&gt;
&lt;p&gt;first time I understand "All" with the selectedObject is null, but when user select a row and then click "All", I cant understand user clicked "All" or any row checkbox. Because selectedObject is not null, but user not clicked this selected objects row.&lt;/p&gt;
&lt;p&gt;Thanks again.&lt;/p&gt;</description></item><item><title>How can I get which selection checkbox clicked in client side</title><link>http://www.intersoftsolutions.com/Community/WebGrid/How-can-I-get-which-selection-checkbox-clicked-in-client-side/</link><pubDate>Thu, 22 Oct 2009 05:44:03 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>selection checkbox grid</category><description>&lt;p&gt;Hi Memo,&lt;/p&gt;&lt;p&gt;OnCheckBoxClick client side event would be invoked only when checkbox is clicked, NOT to handle which checkbox is clicked. &lt;br /&gt;I suggest to use a button to check which row checkbox is checked and you can also know what postion of the checked row. &lt;br /&gt;Attached is my simple sample to show you how to do it. Hope this helps.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>How can I get which selection checkbox clicked in client side</title><link>http://www.intersoftsolutions.com/Community/WebGrid/How-can-I-get-which-selection-checkbox-clicked-in-client-side/</link><pubDate>Thu, 22 Oct 2009 05:02:47 GMT</pubDate><dc:creator>yudi</dc:creator><category>selection checkbox grid</category><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;In order to access which row checkbox is clicked, we need to get the selected object first. This can be achieved by using “GetSelectedObject()” method. After get the selected object, we can use “ToRowObject()” method to converts supplied HTML row element to WebGridRow object.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;function WebGrid1_OnCheckBoxClick(controlId, tblName, colName, checkboxValue, originalCheckBoxValue) {
    var WebGrid1 = ISGetObject(controlId);
    var selectedObject = WebGrid1.GetSelectedObject();

    if (selectedObject != null) {
        var selectedRow = selectedObject.ToRowObject();
        alert("Row #" &amp;#43; selectedRow.Position &amp;#43; " is checked");
    }
    else
        alert("Please select a row first");

    return true;
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui', 'sans-serif'; color: #1f497d; font-size: 9pt"&gt;Unfortunately, this script only suitable if user clicks on the checkbox, and not the checkbox “All”. Could you please describe me your scenario so that we can provide another of possible solution of your scenario?&lt;/span&gt;&lt;/p&gt;</description></item><item><title>How can I get which selection checkbox clicked in client side</title><link>http://www.intersoftsolutions.com/Community/WebGrid/How-can-I-get-which-selection-checkbox-clicked-in-client-side/</link><pubDate>Wed, 21 Oct 2009 04:35:15 GMT</pubDate><dc:creator>civansmail@gmail.com</dc:creator><category>selection checkbox grid</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I use selection checkbox (RowChecker) in my grid.&lt;/p&gt;
&lt;p&gt;And I cant access which checkbox is clicked in this event :&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt"&gt;&lt;span style="text-decoration: underline"&gt;"WebGrid1.LayoutSettings.ClientSideEvents.OnCheckBoxClick"&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;How can I access which checkbox clicked, which rows checkbox clicked&lt;/p&gt;
&lt;p&gt;and How can understant that is checkbox "All" (that is top of grid and when checked all checkbox es selected) checkBox?&lt;/p&gt;
&lt;p&gt;checked checkbox and selected row can  not be same.&lt;/p&gt;
&lt;p&gt;Can you help me,&lt;/p&gt;
&lt;p&gt;Thanks..&lt;/p&gt;</description></item></channel></rss>