﻿<?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 - the checkboxes keep refresh</title><link>http://www.intersoftsolutions.com/Community/WebGrid/the-checkboxes-keep-refresh/</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>the checkboxes keep refresh</title><link>http://www.intersoftsolutions.com/Community/WebGrid/the-checkboxes-keep-refresh/</link><pubDate>Mon, 28 Mar 2011 00:42:30 GMT</pubDate><dc:creator>MarTin</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Have you tried our WebGrid samples that come with the suite when you install the package?&lt;/p&gt;
&lt;p&gt;In the sample, we have &lt;strong&gt;RowCheckerColumn.aspx&lt;/strong&gt; which is located in &lt;strong&gt;[Installation Folder]\Intersoft Solutions\Intersoft WebUI Studio 2011 R1\Samples\For ASP.NET\ISNet.WebUI.Samples\cs\WebGrid&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;This sample is using IsRowChecker property and you can learn how to retrieve the checkbox from Server-side.&lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;</description></item><item><title>the checkboxes keep refresh</title><link>http://www.intersoftsolutions.com/Community/WebGrid/the-checkboxes-keep-refresh/</link><pubDate>Fri, 25 Mar 2011 21:34:15 GMT</pubDate><dc:creator>cahaya</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;Thank you Martin.&lt;/p&gt;
&lt;p&gt;I actually already found many post about the IsRowChecker and I also already try that.&lt;/p&gt;
&lt;p&gt;But I don't know why it doesn't work for me. When use IsRowChecker,the checkbox will appear at the design but when I debug, the checkbox not appear.&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;</description></item><item><title>the checkboxes keep refresh</title><link>http://www.intersoftsolutions.com/Community/WebGrid/the-checkboxes-keep-refresh/</link><pubDate>Fri, 25 Mar 2011 13:04:04 GMT</pubDate><dc:creator>MarTin</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;You might want to use ISRowChecker property in order to create a checkbox column. By using this property, you won't get the page refreshed when you click other checkbox.&lt;/p&gt;
&lt;p&gt;It is a built-in feature in WebGrid that you can configure, such as following:&lt;/p&gt;&lt;pre&gt;&amp;lt;ISWebGrid:WebGridColumn AllowGrouping="No" AllowSizing="No" AllowSorting="No" Bound="False"
        Caption="CustomerID" ColumnType="CheckBox" DataMember="CustomerID" EditType="NoEdit"
        IsRowChecker="True" Name="CustomerID" ShowInSelectColumns="No" Width="25px"&amp;gt;
&amp;lt;/ISWebGrid:WebGridColumn&amp;gt;&lt;/pre&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;</description></item><item><title>the checkboxes keep refresh</title><link>http://www.intersoftsolutions.com/Community/WebGrid/the-checkboxes-keep-refresh/</link><pubDate>Thu, 24 Mar 2011 20:32:20 GMT</pubDate><dc:creator>MarTin</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I’m currently still investigating this issue and need more time to provide you with solution, suggestion, or sample. I’ll get back to you as soon as possible.&lt;/p&gt;
&lt;p&gt;I notice that you have created a double posting with same topic, &lt;a href="http://www.intersoftpt.com/Community/WebGrid/multiple-selection-for-checkbox/"&gt;http://www.intersoftpt.com/Community/WebGrid/multiple-selection-for-checkbox/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We will work closely on this posting.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;</description></item><item><title>the checkboxes keep refresh</title><link>http://www.intersoftsolutions.com/Community/WebGrid/the-checkboxes-keep-refresh/</link><pubDate>Wed, 23 Mar 2011 22:36:15 GMT</pubDate><dc:creator>cahaya</dc:creator><description>&lt;p&gt;im using webgrid 7. I create checkbox at the server side:&lt;/p&gt;
&lt;p /&gt;
&lt;p&gt; Private Sub WebGrid1_InitializeRow(ByVal sender As Object, ByVal e As ISNet.WebUI.WebGrid.RowEventArgs) Handles WebGrid1.InitializeRow&lt;/p&gt;
&lt;p&gt;    &lt;/p&gt;
&lt;p&gt;        e.Row.Cells.GetNamedItem("ChkBox").ForceNoEdit = True&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;        If Session("UserID") = "LEE" Then&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;            e.Row.Cells.GetNamedItem("ChkBox").Text = "&amp;lt;INPUT type=""checkbox"" name=""ChkBox""&amp;gt; "&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;        End If&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p /&gt;
&lt;p&gt; Private Sub WebGrid1_PrepareDataBinding(ByVal sender As Object, ByVal e As ISNet.WebUI.WebGrid.DataSourceEventArgs) Handles WebGrid1.PrepareDataBinding&lt;/p&gt;
&lt;p&gt;        If IsPostBack = False Then&lt;/p&gt;
&lt;p&gt;            WebGrid1.RetrieveStructure()&lt;/p&gt;
&lt;p&gt;        End If&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;        Call FormatSetting("WebGrid1")&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;        WebGrid1.RootTable.Columns.GetNamedItem("ChkBox").ColumnType = ColumnType.Custom&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;The checkboxes appear well but when i can not do the multiple selection with the checkboxes. When i click other checkbox,it will refresh and just check the new selected checkbox.&lt;/p&gt;
&lt;p /&gt;
&lt;p /&gt;</description></item></channel></rss>