﻿<?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 - Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</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>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Mon, 23 Nov 2015 02:04:21 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Glad to know that OnExitEditMode/OnAfterItemSelected helps.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Fri, 20 Nov 2015 14:49:21 GMT</pubDate><dc:creator>sjain</dc:creator><description>Thanks Yudi ! It works perfectally ! Sorry for delay in replying.&lt;br&gt;&lt;br&gt;regards&lt;br&gt;SJain&lt;br&gt;</description></item><item><title>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Wed, 11 Nov 2015 04:08:29 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;blockquote&gt;On Selection of ProductName need to autofeel 10 and some custom Text in QuantityPerUnit new row's cell.&lt;/blockquote&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;You can try to use these approaches for such scenario.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;First option: to use OnExitEditMode of WebGrid.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;OnExitEditMode client-side event of WebGrid specifies the client side (JavaScript) function that will be invoked when edit mode is being ended. Add following snippet code in OnExitEditMode will auto fill string to QuantityPerUnit cell.&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;function WebGrid1_OnExitEditMode(controlId, tblName, editObject)
{
    var WebGrid1 = ISGetObject(controlId);
    var editObjValue = editObject.element.Value;
            
    if (editObject.element.Name == "WebComboProducts" &amp;amp;&amp;amp; editObjValue == "1")
    {
        var selObj = WebGrid1.GetSelectedObject();
        var cell = selObj.ToRowObject().GetCells();
                
        cell.GetNamedItem("QuantityPerUnit").SetText("10 and some custom text", true);
        cell.GetNamedItem("QuantityPerUnit").SetValue("10 and some custom text");
    }

    return true;
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Another option is to use OnAfterItemSelected client-side event of WebCombo, in this case is the WebComboProducts.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;OnAfterItemSelected client-side event of WebCombo specifies the client side (JavaScript) function that will be invoked after an item is selected. The following is the example on how to set text and value of QuantityPerUnit cell in WebGrid after an item of ProductsCombo is selected.&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;function WebComboProducts_OnAfterItemSelected(controlId)
{
    var combo = ISGetObject(controlId);
    var grid = ISGetObject("WebGrid1");
    var row = grid.GetSelectedObject().GetRowObject();

    if (combo.Text == "Chai")
    {
        var cells = row.GetCells();
        var cellQuantityPerUnit = cells.GetNamedItem("QuantityPerUnit");

        cellQuantityPerUnit.SetText("10 and some custom text", true);
        cellQuantityPerUnit.SetText("10 and some custom text");
    }

    return true;
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this help.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Mon, 09 Nov 2015 08:44:15 GMT</pubDate><dc:creator>sjain</dc:creator><description>Hi Yudi,&lt;br&gt; Sorry for delay reply. Thanks for detail explanation behind reasons of reported issues. The solution and explantions worked as expected. &lt;br&gt;      There was a pending request for suggestion for using webrid event for autofill a textBox column on selection of webcombo's option during new row addition. Requested on &lt;span style="text-decoration:underline;"&gt;28th Oct&lt;/span&gt;'s post as &lt;br&gt;&lt;br&gt;&lt;blockquote style="padding-left: 10px; margin: 0px 0px 0px 5px; border-left: 1px solid rgb(204, 204, 204);"&gt;&lt;span style="font-weight: bold;"&gt;&lt;em&gt;On Selection of ProductName need to autofeel 10 and some custom Text in QuantityPerUnit new row's cell.&lt;/em&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;br&gt;Is it possible to remove an product name from webcombo temporary once it added to new row. If row addition is cancelled then it should be put back in optionlist. &lt;br&gt;&lt;br&gt;&lt;p&gt;thanks and regards&lt;/p&gt;Sjain&lt;br&gt;</description></item><item><title>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Mon, 02 Nov 2015 03:44:32 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Thank you for the sent sample.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I’m currently investigating the sample and will get back to you as soon as possible.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Edited on November 2, 2015 6:35 AM&lt;br&gt;Reason: Update solution&lt;/span&gt;&lt;/p&gt;&lt;blockquote&gt;If I try to select SupplierId first then ProductName shows empty rows.&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;The ProductName combo shows empty rows because it was filtered by a white space. Please allow me to show where the "white space" is.&lt;/span&gt;&lt;/p&gt;
&lt;ol style="color: #1f497d;"&gt;&lt;li&gt;View Webcomboexpbasic.aspx sample file in IE 11 browser.&lt;/li&gt;&lt;li&gt;After the page rendered, move the cursor to the textbox of WebComboSuppliers.&lt;/li&gt;&lt;li&gt;A white-space is appearing in the textbox of WebComboSuppliers.&lt;/li&gt;&lt;li&gt;Within the textbox, you should be able to move the cursor to the left/right. It indicates that there is a white-space in the textbox.&lt;/li&gt;&lt;li&gt;Try to delete the white-space and WebCombo should shows their items without problems.&lt;/li&gt;&lt;li&gt;Select "SupplierID" equals to 1.&lt;/li&gt;&lt;li&gt;Move the cursor to the textbox of WebComboProducts.&lt;/li&gt;&lt;li&gt;White-space also appear in the textbox of WebComboProducts. Try to repeat step #3 to #5.&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;By default, WebCombo will filter its items based on the character typed or entered in the texbox. The result will be shown in the ResultBoxWindow of WebCombo.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;It shows empty rows because there is a white-space in the textbox. "Starts with" empty-space is applied to the WebCombo items. It shows empty rows because the filter results is null. No rows match after the filter applied, in this case is "Starts with" empty-space.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Please follow the steps below in order to resolve this white-space problem:&lt;/span&gt;&lt;/p&gt;
&lt;ol style="color: #1f497d;"&gt;&lt;li&gt;Open Webcomboexpbasic.aspx.cs in Visual Studio or text editor.&lt;/li&gt;&lt;li&gt;Find/go to the WebGrid1_PrepareDataBinding event declaration.&lt;/li&gt;&lt;li&gt;Removes the line which assigns SupplierID and ProductName column with Custom ColumnType.&lt;/li&gt;&lt;li&gt;Save the changes and the white-space problem should be resolves now.&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;After the changes, the code will look like following snippet code:&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;protected void WebGrid1_PrepareDataBinding(object sender, ISNet.WebUI.WebGrid.DataSourceEventArgs e)
{
    //WebGrid grid = (WebGrid)sender;
    if (!IsPostBack)
    {
        //WebGrid1.ClearCachedDataSource();
        WebGrid1.RetrieveStructure();
        if (WebGrid1.RootTable.Columns.Exists("SupplierID"))
        {
            WebGrid1.RootTable.Columns.GetNamedItem("SupplierID").EditType = EditType.WebComboNET;
            WebGrid1.RootTable.Columns.GetNamedItem("SupplierID").WebComboID = "WebComboSuppliers";
            WebGrid1.RootTable.Columns.GetNamedItem("SupplierID").FilterEditType = FilterEditType.TextBox;
            WebGrid1.RootTable.Columns.GetNamedItem("SupplierID").DefaultText = string.Empty;
            WebGrid1.RootTable.Columns.GetNamedItem("SupplierID").DefaultValue = string.Empty;
            //WebComboSuppliers.Visible = true;
        }
        if (WebGrid1.RootTable.Columns.Exists("ProductName"))
        {
            WebGrid1.RootTable.Columns.GetNamedItem("ProductName").EditType = EditType.WebComboNET;
            WebGrid1.RootTable.Columns.GetNamedItem("ProductName").WebComboID = "WebComboProducts";
            WebGrid1.RootTable.Columns.GetNamedItem("ProductName").FilterEditType = FilterEditType.TextBox;
            WebGrid1.RootTable.Columns.GetNamedItem("ProductName").DefaultText = string.Empty;
            WebGrid1.RootTable.Columns.GetNamedItem("ProductName").DefaultValue = string.Empty;
            //WebComboSuppliers.Visible = true;
        }
        WebGrid1.RootTable.Columns.GetNamedItem("ProductID").Visible = false;
    }
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Please feel free to let me know if you have different result.&lt;/span&gt;&lt;/p&gt;
&lt;br&gt;
&lt;blockquote&gt;Once the selection from both combo is done then I can only change data after deleting the text inside otherwise in list  only selected text is shown.&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;This is not bug. By default, WebCombo will show only one value after you input a text such as Maria. However, you can show all rows on dropdown by enabling &lt;strong&gt;AlwaysShowAllRowsOnDropdown&lt;/strong&gt; property of WebCombo. This property Determines whether or not to display all rows when dropdown arrow is clicked.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;To always show all rows on dropdown combo&lt;/span&gt;&lt;/p&gt;
&lt;ol style="color: #1f497d;"&gt;&lt;li&gt;Open &lt;strong&gt;WebCombo Designer - Advanced Settings - LayoutSettings&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;Set &lt;strong&gt;AlwaysShowAllRowsOnDropdown&lt;/strong&gt; to &lt;strong&gt;True&lt;/strong&gt;.&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Wed, 28 Oct 2015 09:27:55 GMT</pubDate><dc:creator>sjain</dc:creator><description>Hi Yudi,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I create a sample. Please look on it.&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I created 3 datatable to bind webgrid and 2 webcombos. &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProductName combo is bind on basis of SupplierId combo. &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Problems in sample are&lt;br&gt;&lt;ol&gt;&lt;li&gt;First I have to click on ProductName new row column and then select SupplieId from webcombo then onlyProductName combo shows filter data. If I try to select SupplierId first then ProductName shows empty rows.&lt;br&gt;&lt;/li&gt;&lt;li&gt;Once the selection from both combo is done then I can only change data after deleting the text inside otherwise in list&amp;nbsp; only selected text is shown.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Requests are&amp;nbsp; &lt;br&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;On Selection of ProductName need to autofeel 10 and some custom Text in QuantityPerUnit new row's cell.&lt;/li&gt;&lt;li&gt;On selection of SupplierId ProductName combo must be empty. Currently It is showing earlier selected value.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;Please modiy the sample such a way that all data-bound features would be available. Hope the sample would be able to explain the problem we are facing.&lt;br&gt;&lt;/p&gt;&lt;p&gt;thanks and regards&lt;/p&gt;&lt;p&gt;Sjain&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description></item><item><title>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Tue, 27 Oct 2015 09:39:45 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;blockquote&gt;I was using "OnInitializeDataSource" and "OnPrepareDataBinding" events for declartive columns in aspx page. Once I removed both events and bind grid on page load , it starts working. I believe that I can bind grid on "OnInitializeDataSource" event by using columns setting in event also. &lt;/blockquote&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Before we go further with the link WebCombo as WebGrid's editor questions, I'd like to straighten out few things first. Yes, you are correct. You can bind grid on OnInitializeDataSource event. Removing data source assignment from OnInitializeDataSource to Page_Load event similar to manually populate WebGrid row (instead of binding it to a data source) means that the Grid is operating in unbound mode. Please note that when WebGrid is operating in unbound mode, all data-bound features – such as sorting, grouping, exporting, etc – should not be enabled.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;&lt;a href="http://live.intersoftsolutions.com/cs/WebGrid/BindtoTraditionalDataSource.aspx?noframe=1" target="_blank"&gt;BindtoTraditionalDataSource&lt;/a&gt; sample of WebGrid shows the usage of OnInitializeDataSource and OnPrepareDataBinding server-side event. Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Mon, 26 Oct 2015 15:26:25 GMT</pubDate><dc:creator>sjain</dc:creator><description>Hi Yudi,&lt;br&gt;I got success to bind using your given sample. (LinkWebComboIntegratedIntoWebGridSample.zip)
	&lt;br&gt;
	&lt;br&gt;
	I was using "OnInitializeDataSource" and "OnPrepareDataBinding" events for declartive columns in aspx page. Once I removed both events and bind grid on page load , it starts working. I believe that I can bind grid on "OnInitializeDataSource" event by using columns setting in event also. Thanks for your help.&lt;br&gt;
	&lt;br&gt;
	&lt;span style="font-weight: bold;"&gt;1) &lt;/span&gt;One thing I noticed that once I select any Product (taking example of your sample Product-supplier case) then I can not change it."
	&lt;br&gt;
	&lt;br&gt;
	&lt;span style="font-weight: bold;"&gt;2) &lt;/span&gt;I also want to add some data in another textBox column on basis of selected Product for example if Product "Chai" is selected then in column of description "Chai From China" would be add. Which event is available for this purpose and how !&lt;br&gt;
	&lt;br&gt;
	&lt;span style="font-weight: bold;"&gt;3) &lt;/span&gt;Is any way that I could clear Product TextBox when user select different Supplier so that he/she can be force to select new Product. Currently old added product is displaying in row.  Also, If I change supplierId which do not have any Products then already selected Product does not remove from textBox although it shows 
"No records found.&lt;br&gt;
	&lt;br&gt;
	&lt;span style="font-weight: bold;"&gt;4)&lt;/span&gt; Currently I am referring Webgrid 8 documentation available as CHM file. Is any new version available and if so then from where I can download it ?&lt;br&gt;
	&lt;br&gt;
	&lt;br&gt;
	All mentioned request are for during adding new row and before storing those data temporary in webgrid before batch update.&lt;br&gt;
	&lt;br&gt;
	&lt;br&gt;
	thanks and regards&lt;br&gt;
	Sjain&lt;br&gt;</description></item><item><title>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Mon, 26 Oct 2015 03:05:17 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I modified the WebCombo part of Supplier-Product WebCombo (from my previous sample) based on the following information:&lt;/span&gt;&lt;/p&gt;&lt;ul style="color: #1f497d;"&gt;&lt;li&gt;not using ISDataSource&lt;/li&gt;&lt;li&gt;an XML file (App_Data/Suppliers.xml) exist which have all distinct SupplierID and CompanyName (of Supplier)&lt;/li&gt;&lt;li&gt;SuppliersCombo is binded using Suppliers.xml file reading from code-behind by utilizing OnInitializeDataSource&lt;/li&gt;&lt;li&gt;On selection of particular Supplier, products information related with the Supplier are shown in ProductsCombo&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Please have the modified WebCombo sample evaluated on your end and let me know whether it helps or not.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Fri, 23 Oct 2015 15:42:52 GMT</pubDate><dc:creator>sjain</dc:creator><description>Hi Yudi,&lt;br&gt; This sample does not work in our scenario. We are not using ISDataSource . &lt;br&gt;Allow me to explain scenario. &lt;br&gt;&amp;nbsp;Suppose Grid is binded by&amp;nbsp; Products table .&amp;nbsp; &lt;br&gt;A XML file exists which have all distinct Supplier Id and Supplier Name . Supplier Combo of grid is binded using this xml file reading from codebehind.&amp;nbsp; &lt;br&gt;&lt;br&gt;On selection of particular Supplier; some data will fetch from different database which have all information of Products realted with supplier.&lt;br&gt;&lt;br&gt;In my case filtering is not working. It shows all the Products.&lt;br&gt;&lt;br&gt;thanks and regards&lt;br&gt;&lt;br&gt;</description></item><item><title>Suggestion on binding WebValueList during adding a new row</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Suggestion-on-binding-WebValueList-during-adding-a-new-row/</link><pubDate>Wed, 21 Oct 2015 11:05:17 GMT</pubDate><dc:creator>sjain</dc:creator><description>&lt;p&gt;&lt;span originaltext="Hi," iserror="false" type="sp"&gt;Hi,&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span originaltext="We" iserror="false" type="sp"&gt;We &lt;/span&gt;&lt;span originaltext="have" iserror="false" type="sp"&gt;have &lt;/span&gt;&lt;span originaltext="to" iserror="false" type="sp"&gt;to &lt;/span&gt;&lt;span originaltext="bind" iserror="false" type="sp"&gt;bind &lt;/span&gt;&lt;span originaltext="a" iserror="false" type="sp"&gt;a &lt;/span&gt;&lt;span originaltext="WebValueList" iserror="false" type="sp"&gt;WebValueList &lt;/span&gt;&lt;span originaltext="(say" iserror="false" type="sp"&gt;(say &lt;/span&gt;&lt;span originaltext="B)" iserror="false" type="sp"&gt;B) &lt;/span&gt;&lt;span originaltext="from" iserror="false" type="sp"&gt;from &lt;/span&gt;&lt;span originaltext="different" iserror="false" type="sp"&gt;different &lt;/span&gt;&lt;span originaltext="list" iserror="false" type="sp"&gt;list &lt;/span&gt;&lt;span originaltext="during" iserror="false" type="sp"&gt;during &lt;/span&gt;&lt;span originaltext="adding" iserror="false" type="sp"&gt;adding &lt;/span&gt;&lt;span originaltext="a" iserror="false" type="sp"&gt;a &lt;/span&gt;&lt;span originaltext="new" iserror="false" type="sp"&gt;new &lt;/span&gt;&lt;span originaltext="row" iserror="false" type="sp"&gt;row &lt;/span&gt;&lt;span originaltext="on" iserror="false" type="sp"&gt;on &lt;/span&gt;&lt;span originaltext="change" iserror="false" type="sp"&gt;change &lt;/span&gt;&lt;span originaltext="of" iserror="false" type="sp"&gt;of &lt;/span&gt;&lt;span originaltext="another" iserror="false" type="sp"&gt;another &lt;/span&gt;&lt;span originaltext="WebValueList" iserror="false" type="sp"&gt;WebValueList &lt;/span&gt;&lt;span originaltext="(say" iserror="false" type="sp"&gt;(say &lt;/span&gt;&lt;span originaltext="A)." iserror="false" type="sp"&gt;A). &lt;/span&gt;&lt;span originaltext="Which" iserror="false" type="sp"&gt;Which &lt;/span&gt;&lt;span originaltext="clientSide" iserror="false" type="sp"&gt;clientSide &lt;/span&gt;&lt;span originaltext="event" iserror="false" type="sp"&gt;event &lt;/span&gt;&lt;span originaltext="should" iserror="false" type="sp"&gt;should &lt;/span&gt;&lt;span originaltext="be" iserror="false" type="sp"&gt;be &lt;/span&gt;&lt;span originaltext="used" iserror="false" type="sp"&gt;used &lt;/span&gt;&lt;span originaltext="for" iserror="false" type="sp"&gt;for &lt;/span&gt;&lt;span originaltext="this" iserror="false" type="sp"&gt;this &lt;/span&gt;&lt;span originaltext="and" iserror="false" type="sp"&gt;and &lt;/span&gt;&lt;span originaltext="if" iserror="false" type="sp"&gt;if &lt;/span&gt;&lt;span originaltext="possible" iserror="false" type="sp"&gt;possible &lt;/span&gt;&lt;span originaltext="please" iserror="false" type="sp"&gt;please &lt;/span&gt;&lt;span originaltext="provide" iserror="false" type="sp"&gt;provide &lt;/span&gt;&lt;span originaltext="some" iserror="false" type="sp"&gt;some &lt;/span&gt;&lt;span originaltext="sample" iserror="false" type="sp"&gt;sample &lt;/span&gt;&lt;span originaltext="." iserror="false" type="sp"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span originaltext="For" iserror="false" type="sp"&gt;For &lt;/span&gt;&lt;span originaltext="Example" iserror="false" type="sp"&gt;Example &lt;/span&gt;&lt;span originaltext=":-" iserror="false" type="sp"&gt;:-&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span originaltext="WebValueList" iserror="false" type="sp"&gt;WebValueList &lt;/span&gt;&lt;span originaltext="A" iserror="false" type="sp"&gt;A &lt;/span&gt;&lt;span originaltext="has" iserror="false" type="sp"&gt;has &lt;/span&gt;&lt;span originaltext="three" iserror="false" type="sp"&gt;three &lt;/span&gt;&lt;span originaltext="values" iserror="false" type="sp"&gt;values &lt;/span&gt;&lt;span originaltext="ABC," iserror="false" type="sp"&gt;ABC, &lt;/span&gt;&lt;span originaltext="DEF" iserror="false" type="sp"&gt;DEF &lt;/span&gt;&lt;span originaltext="and" iserror="false" type="sp"&gt;and &lt;/span&gt;&lt;span originaltext="GHI" iserror="false" type="sp"&gt;GHI&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span originaltext="If" iserror="false" type="sp"&gt;If &lt;/span&gt;&lt;span originaltext="WebValueList" iserror="false" type="sp"&gt;WebValueList &lt;/span&gt;&lt;span originaltext="A's" iserror="false" type="sp"&gt;A's &lt;/span&gt;&lt;span originaltext="selected" iserror="false" type="sp"&gt;selected &lt;/span&gt;&lt;span originaltext="value" iserror="false" type="sp"&gt;value &lt;/span&gt;&lt;span originaltext="is" iserror="false" type="sp"&gt;is &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span originaltext="ABC" iserror="false" type="sp"&gt;ABC &lt;/span&gt;&lt;/span&gt;&lt;span originaltext="then" iserror="false" type="sp"&gt;then &lt;/span&gt;&lt;span originaltext="Fruit" iserror="false" type="sp"&gt;Fruit &lt;/span&gt;&lt;span originaltext="should" iserror="false" type="sp"&gt;should &lt;/span&gt;&lt;span originaltext="populated" iserror="false" type="sp"&gt;populated &lt;/span&gt;&lt;span originaltext="," iserror="false" type="sp"&gt;, &lt;/span&gt;&lt;span originaltext="for" iserror="false" type="sp"&gt;for &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span originaltext="DEF" iserror="false" type="sp"&gt;DEF &lt;/span&gt;&lt;/span&gt;&lt;span originaltext="the" iserror="false" type="sp"&gt;the &lt;/span&gt;&lt;span originaltext="list" iserror="false" type="sp"&gt;list &lt;/span&gt;&lt;span originaltext="of" iserror="false" type="sp"&gt;of &lt;/span&gt;&lt;span originaltext="Vegitables" iserror="false" type="sp"&gt;Vegitables &lt;/span&gt;&lt;span originaltext="etc" iserror="false" type="sp"&gt;etc &lt;/span&gt;&lt;span originaltext="and" iserror="false" type="sp"&gt;and &lt;/span&gt;&lt;span originaltext="for" iserror="false" type="sp"&gt;for &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span originaltext="GHI" iserror="false" type="sp"&gt;GHI &lt;/span&gt;&lt;/span&gt;&lt;span originaltext="the" iserror="false" type="sp"&gt;the &lt;/span&gt;&lt;span originaltext="list" iserror="false" type="sp"&gt;list &lt;/span&gt;&lt;span originaltext="of" iserror="false" type="sp"&gt;of &lt;/span&gt;&lt;span originaltext="grain." iserror="false" type="sp"&gt;grain. &lt;/span&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;span originaltext="thanks" iserror="false" type="sp"&gt;thanks&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>