﻿<?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 - Webgrid checkbox matrix</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-checkbox-matrix/</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>Webgrid checkbox matrix</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-checkbox-matrix/</link><pubDate>Thu, 15 Oct 2009 09:05:59 GMT</pubDate><dc:creator>daniel.barrett@ucs-software.co.za</dc:creator><description>&lt;p&gt;Thanks will try that, and will remember to do that next time&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Webgrid checkbox matrix</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-checkbox-matrix/</link><pubDate>Thu, 15 Oct 2009 05:30:29 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;As i can see in your screenshot, the grids layout is not fit the container. Did this happen on page load or when you resize the grid? If yes, please use these code at resize or onLoad event.&lt;/p&gt;&lt;p&gt;e.g&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt;function window::onresize()
{
      window.setTimeout(function(){wgDoResize(true,true);},100);
}&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Hope this helps. Please create a new thread regarding new question or issue next time. Thanks&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;
&lt;p /&gt;</description></item><item><title>Webgrid checkbox matrix</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-checkbox-matrix/</link><pubDate>Thu, 15 Oct 2009 05:06:59 GMT</pubDate><dc:creator>daniel.barrett@ucs-software.co.za</dc:creator><description>&lt;p&gt;Hi Handy&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I have solved my problem. I have used the edit type checkbox, but found my main issue was with the columns, and the layout settings that needed to be tweeked. Thanks for the help though.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;If you dont mind can I ask you another question on the webgrid, in that the grid is rendering as a control in the page, but the grid is coming up 'minimised' with data in it. Is there something I am missing.&lt;/p&gt;
&lt;p&gt;have included the two grid render and also the grids code &amp;#43; the skin for those grids&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Daniel&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Table Code and grid code:&lt;/strong&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;table border="0" cellpadding="0" cellspacing="0" style="width: 100%; height: 100%; table-layout: fixed;"&amp;gt;&lt;br /&gt;                                   &amp;lt;tr&amp;gt;&lt;br /&gt;                                        &amp;lt;td style="height: 50%"&amp;gt;&lt;br /&gt;                                            &amp;lt;ISWebGrid:WebGrid ID="grdMaint" runat="server" SkinID="MaintenanceGrid"&amp;gt;&lt;br /&gt;                                                &amp;lt;RootTable Caption="Maintenance" DataKeyField="RoleID" GridLineStyle="NotSet" AllowSorting="No"&lt;br /&gt;                                                    AllowEdit="Yes" DataMember="Roles"&amp;gt;&lt;br /&gt;                                                    &amp;lt;Columns&amp;gt;&lt;br /&gt;                                                        &amp;lt;ISWebGrid:WebGridColumn Caption="Role ID" DataMember="RoleID" EditType="NoEdit"&lt;br /&gt;                                                            Name="RoleID" Visible="False" Width="0px"&amp;gt;&lt;br /&gt;                                                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;&lt;br /&gt;                                                        &amp;lt;ISWebGrid:WebGridColumn AllowGrouping="No" AllowSizing="No" AllowSorting="No" Bound="True"&lt;br /&gt;                                                            Caption="Selected" ColumnType="CheckBox" DataMember="Active" DataType="System.Boolean"&lt;br /&gt;                                                            EditType="NoEdit" IsRowChecker="True" Name="IsSelected" ShowInSelectColumns="No"&lt;br /&gt;                                                            Width="50px"&amp;gt;&lt;br /&gt;                                                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;&lt;br /&gt;                                                        &amp;lt;ISWebGrid:WebGridColumn Caption="Role Name" DataMember="RoleDescr" Name="RoleDescr"&lt;br /&gt;                                                            Width="100%" EditType="NoEdit"&amp;gt;&lt;br /&gt;                                                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;&lt;br /&gt;                                                    &amp;lt;/Columns&amp;gt;&lt;br /&gt;                                                &amp;lt;/RootTable&amp;gt;&lt;br /&gt;                                            &amp;lt;/ISWebGrid:WebGrid&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                    &amp;lt;/tr&amp;gt;&lt;br /&gt;                                    &amp;lt;tr id="rowGrid2"&amp;gt;&lt;br /&gt;                                        &amp;lt;!-- this row containing the 2nd grid will be hidden i fnot required --&amp;gt;&lt;br /&gt;                                        &amp;lt;td style="height: 50%"&amp;gt;&lt;br /&gt;                                            &amp;lt;ISWebGrid:WebGrid ID="grdMaint2" runat="server" SkinID="MaintenanceGrid" Height="100%"&amp;gt;&lt;br /&gt;                                                &amp;lt;RootTable Caption="Maintenance" DataKeyField="StoreNumber" GridLineStyle="NotSet"&lt;br /&gt;                                                    AllowSorting="No" AllowEdit="Yes" DataMember="Stores"&amp;gt;&lt;br /&gt;                                                    &amp;lt;Columns&amp;gt;&lt;br /&gt;                                                        &amp;lt;ISWebGrid:WebGridColumn AllowGrouping="No" AllowSizing="No" AllowSorting="No" Bound="True"&lt;br /&gt;                                                            Caption="Selected" ColumnType="CheckBox" DataMember="Active" DataType="System.Boolean"&lt;br /&gt;                                                            EditType="NoEdit" IsRowChecker="True" Name="IsSelected" ShowInSelectColumns="No"&lt;br /&gt;                                                            Width="50px"&amp;gt;&lt;br /&gt;                                                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;&lt;br /&gt;                                                        &amp;lt;ISWebGrid:WebGridColumn Caption="Store Number" DataMember="StoreNumber" Name="StoreNumber"&lt;br /&gt;                                                            Width="100px" EditType="NoEdit"&amp;gt;&lt;br /&gt;                                                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;&lt;br /&gt;                                                        &amp;lt;ISWebGrid:WebGridColumn Caption="Store Name" DataMember="StoreName" Name="StoreName"&lt;br /&gt;                                                            Width="400px" EditType="NoEdit"&amp;gt;&lt;br /&gt;                                                        &amp;lt;/ISWebGrid:WebGridColumn&amp;gt;&lt;br /&gt;                                                    &amp;lt;/Columns&amp;gt;&lt;br /&gt;                                                &amp;lt;/RootTable&amp;gt;&lt;br /&gt;                                            &amp;lt;/ISWebGrid:WebGrid&amp;gt;&lt;br /&gt;                                        &amp;lt;/td&amp;gt;&lt;br /&gt;                                    &amp;lt;/tr&amp;gt;&lt;br /&gt;                                &amp;lt;/table&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;Skin Code:&lt;/strong&gt;&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;ISWebGrid:WebGrid SkinID="MaintenanceGrid" runat="server" HorizontalAlign="NotSet" DataCacheStorage="Session"&lt;br /&gt;    ViewStateStorage="None" Width="100%" Height="100%"&amp;gt;&lt;br /&gt;    &amp;lt;FlyPostBackSettings PostInputControls="True" /&amp;gt;&lt;br /&gt;    &amp;lt;LayoutSettings AllowEdit="Yes" AlternatingColors="True" AlwaysShowHelpButton="false" EditOnClick="true"&lt;br /&gt;        ShowRefreshButton="False" AutoFitColumns="True" CellPaddingDefault="2" GridLineColor="237, 237, 237"&lt;br /&gt;        GridLineStyle="Solid" HeaderClickAction="SortMulti" HideColumnsWhenGrouped="No"&lt;br /&gt;        NewRowLostFocusAction="AlwaysPrompt" RowHeightDefault="18px" RowLostFocusAction="AlwaysUpdate"&lt;br /&gt;        PagingMode="None" PersistRowChecker="false" InProgressUIBehavior="ChangeCursorToHourGlass"&lt;br /&gt;        HelpURL="/DolfinLiveHelp/DolfinLive.html?grid.htm"&amp;gt;&lt;br /&gt;        &amp;lt;HeaderStyle CssClass="Header" /&amp;gt;&lt;br /&gt;        &amp;lt;GroupRowInfoStyle CssClass="GroupRow" /&amp;gt;&lt;br /&gt;        &amp;lt;EditTextboxStyle CssClass="EditTextbox" /&amp;gt;&lt;br /&gt;        &amp;lt;FrameStyle CssClass="Frame" /&amp;gt;&lt;br /&gt;        &amp;lt;SelectedRowStyle CssClass="SelectedRow" /&amp;gt;&lt;br /&gt;        &amp;lt;AlternatingRowStyle CssClass="AltRow" /&amp;gt;&lt;br /&gt;        &amp;lt;EditFocusCellStyle CssClass="EditFocusCell" /&amp;gt;&lt;br /&gt;        &amp;lt;RowHeaderStyle CssClass="RowHeader" /&amp;gt;&lt;br /&gt;        &amp;lt;StatusBarStyle CssClass="StatusBar" /&amp;gt;&lt;br /&gt;        &amp;lt;RowStyle CssClass="Row" /&amp;gt;&lt;br /&gt;        &amp;lt;NewRowStyle CssClass="NewRow" /&amp;gt;&lt;br /&gt;    &amp;lt;/LayoutSettings&amp;gt;&lt;br /&gt;&amp;lt;/ISWebGrid:WebGrid&amp;gt;&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Webgrid checkbox matrix</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-checkbox-matrix/</link><pubDate>Wed, 14 Oct 2009 23:20:40 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hi Daniel,&lt;/p&gt;&lt;p&gt;Yes, you can have checkbox edit type for your boolean value. Attached sample will show you that. After you changed the value, it would automatically save into database. Please let me know if this is what you are looking for or not.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Webgrid checkbox matrix</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-checkbox-matrix/</link><pubDate>Wed, 14 Oct 2009 06:12:56 GMT</pubDate><dc:creator>daniel.barrett@ucs-software.co.za</dc:creator><description>&lt;p&gt;Hi Handy&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;I have used the row checker on many occasions and it is an awesome feature, but it is not the problem. &lt;/p&gt;
&lt;p&gt;I have a table that is populated with boolean values. Along the x axis I have lets say stores and on the y axis users. I wish to be able to load them into a grid and be able to manipulate the boolean values with checkboxes, after which I will save the userstore matrix back to the table.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Let me know if this helps&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Daniel&lt;/p&gt;</description></item><item><title>Webgrid checkbox matrix</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-checkbox-matrix/</link><pubDate>Mon, 12 Oct 2009 00:00:19 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hi Daniel,&lt;/p&gt;&lt;p&gt;Could you be more specific in your scenario? I already created a WebGrid unbound with using ISRowChecker column. Please let me know if this what you are looking for or not.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Webgrid checkbox matrix</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-checkbox-matrix/</link><pubDate>Tue, 06 Oct 2009 12:51:55 GMT</pubDate><dc:creator>daniel.barrett@ucs-software.co.za</dc:creator><description>&lt;p&gt;Hi All&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I would like to ask a question about creating a webgrid matrix in unbound mode that has dynamically allocated columns and rows, that will be displayed in checkbox form. I have been trying to get this right for some time now, but cannot find anything that shows me how to get a select all button to do just that within a grid. Any Ideas would be much appreciated.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Daniel&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>