iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Hi All,
I have one Web Grid with two of its column type as drop down type.
1. First drop down type:
This drop down has 3 values (Yes,No,What). these values are same for every row for that column.
so i have used following code:
WebValueList webvaluelist = wgPendingDetails.RootTable.Columns.GetNamedItem("mDec").ValueList;
2. Second drop down type:
This drop has different number of values and diffrent values for each drop down of that column.
the value list of that particular drop down type depends on the parameters of that row.
I appreciate if any one would help me out with second drop down type.
Thanks in advance
For your second scenario, you will need to use WebCombo.NET set additional filter function, as described in "How-to: Filter the data in WebCombo using SetAdditionalFilter method" WebCombo documentation. In WebGrid, the function should be invoked during OnEnterEditMode client side event handler. Here is the snippet:
function wgTest_OnEnterEditMode(controlId, tblName, editObject){ var wgTest = ISGetObject(controlId); if (editObject.type == "WebComboNET") { editObject.element.SetAdditionalFilters("[Type] = '" + editObject.ToCellObject().Value + "'"); } return true;}
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname