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
Steps to follow
1.Click on the dropdown button of "cbProject"
2.This will open dialogbox
3.select one row in dialog box and click on ok button
4.debug the js function "btnPPOkClick" I have written only few code lines in it ...
WHAT should be done next in the function
1.to Hide dialogbox "PopUpProjectPick"
2.to set values of focused row of "gvProjectPick" in webcombo "cbProject".
3.to make a callback of webgrid "gvRequisition" based on these values.(show data in "gvRequisition" based on these values)
In order to hide the “PopUpProjectPick” dialogbox, first you need to obtain the object of the dialogbox then invoke the CloseDialog() method as shown in the following snippet code.
var dialog = ISGetObject("PopUpProjectPick"); dialog.CloseDialog();
2.to set values of focused row of "gvProjectPick" in webcombo "cbproject".
I suggest you to use the SetText() method of WebCombo in order to set the WebCombo value based on the selected row of “gvProjectPick”. Please obtain the object of “cbProject” WebCombo and then call the SetText() method as shown in the following.
var cbProject = ISGetObject("cbProject"); cbProject.SetText(ContactName.Value);
3.to make a callback of webgrid "gvRequisition" based on these values. (show data in "gvRequisition" based on these values)
I'm not quite sure how to help you with this requirement but you may try to use the "adding filter programmatically in WebGrid" approach.
Example:
function AddFilter() { var grid = ISGetObject("WebGrid1"); var newFilter = new WebGridFilter(); newFilter.ColumnMember = "ContactName"; newFilter.FilterType = "Like"; newFilter.FilterText = "Ana"; grid.RootTable.FilteredColumns.Add(newFilter); grid.RootTable.UpdateUI(); grid.Refresh(); }
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