﻿<?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 - clientside</title><link>http://www.intersoftsolutions.com/Community/Tags/clientside/</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>Webcombo clientside Row collection manipulation</title><link>http://www.intersoftsolutions.com/Community/Tags/clientside/</link><pubDate>Wed, 06 Mar 2013 14:17:28 GMT</pubDate><dc:creator>sinan.biondic@gmail.com</dc:creator><category>WebCombo</category><category>SetSelectedIndex</category><category>clientside</category><category>row</category><category>slient-side</category><category>collection</category><category>manipulation</category><category>selectedindex</category><category>getrows</category><description>&lt;p&gt;I'm having problems retrieving row colection from webcombo. My combo is serverside binded, and in clientside pageload event I'm trying to get rows from combo. However i get nothing from method GetRows(). Applying filters is working fine but variable rows is null, and setselectedindex(1) does nothing.&lt;/p&gt;&lt;pre&gt;function setComboFilter(idMenu) {
    var combo = ISGetObject('cmbGodina');
    var rows = combo.getRows();
    combo.ClearAdditionalFilters();
    combo.SetAdditionalFilters("[IdRedaMenu] = " &amp;#43; idMenu);
    combo.SetSelectedRowByValue(String(idMenu));
    combo.SetSelectedIndex(1);
}&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Set filter from client result in duplicated fields</title><link>http://www.intersoftsolutions.com/Community/Tags/clientside/</link><pubDate>Tue, 03 Jul 2012 16:04:38 GMT</pubDate><dc:creator>lyduccuong</dc:creator><category>Filter</category><category>clientside</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am trying to set the filter programatically from client side as following :&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p /&gt;
&lt;p&gt;                    var filter = new WebGridFilter(); // create new Filter configuration&lt;/p&gt;
&lt;p&gt;                    filter.Name = "Accepted";&lt;/p&gt;
&lt;p&gt;                    filter.ColumnMember = "Accepted";&lt;/p&gt;
&lt;p&gt;                    filter.FilterType = "EqualTo";&lt;/p&gt;
&lt;p&gt;                    filter.FilterText = acceptedStatus;&lt;/p&gt;
&lt;p&gt;                    //filter.SetChanged();&lt;/p&gt;
&lt;p&gt;                    grid.RootTable.FilteredColumns.Add(filter);&lt;/p&gt;
&lt;p&gt;                    grid.RootTable.UpdateUI();&lt;/p&gt;
&lt;p&gt;                    grid.Refresh(); // apply changes&lt;/p&gt;
&lt;p&gt;However, when the filter applied, I got duplicates for all data fields (as shown in the .jpg file). Can you take a look at my sample project to see if I did anything wrong please?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Cuong&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p /&gt;</description></item><item><title>How to force redraw/ rerender a Webgrid/ Webgrid Layout (clientside, javascript)?</title><link>http://www.intersoftsolutions.com/Community/Tags/clientside/</link><pubDate>Thu, 09 Jun 2011 01:19:49 GMT</pubDate><dc:creator>interfung</dc:creator><category>WebGrid</category><category>javascript</category><category>layout</category><category>clientside</category><category>force redraw</category><category>redraw</category><category>rerender</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am having a WebGrid in the page which horizontal scrollbar is not drawn correctly occasionally (especially in slow PC), Is there any way to force the webgrid to redraw in clientside?&lt;/p&gt;
&lt;p&gt;Thanks and Regards,&lt;/p&gt;
&lt;p&gt;Fung&lt;/p&gt;</description></item><item><title>Truncate grid from clientside</title><link>http://www.intersoftsolutions.com/Community/Tags/clientside/</link><pubDate>Thu, 11 Mar 2010 10:31:21 GMT</pubDate><dc:creator>hermancordes@gmail.com</dc:creator><category>grid</category><category>rows</category><category>clientside</category><category>delete</category><description>&lt;p&gt;Currently I'm using the WebGrid in a modalbox as lookup. The Grid doesn't have a datasource assigned, because it's filled from clientside. The user can't interact with the grid in any way; only to select a row.&lt;/p&gt;
&lt;p&gt;Each search action will fill the grid from clientside. However, before each search action, I'd like to empty the grid. I tried this:&lt;/p&gt;&lt;pre&gt;var grid = ISGetObject("SearchResultsWebGrid");
for(var i = 0; i &amp;lt; grid.RootTable.GetRowsCount(); i&amp;#43;&amp;#43;)
{
    grid.RootTable.GetRow(i).Delete();
}
grid.RootTable.UpdateUI()&lt;/pre&gt;
&lt;p&gt;However, it's not giving me javascript warnings or other errors. And, it doesn't remove any rows... I searched this website for a solution, but couldn't find it so far.&lt;/p&gt;
&lt;p&gt;Anyone got a solution or an idea how to truncate (delete all rows) from a webgrid at clientside?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item></channel></rss>