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
Dear Sir,
Developed System in My Organization:
I used the Intersoft web combo in User Control Page.
In main page, i'm passing dataset as datasource for the webcombo also datatextfield, datavaluefield, additionalsearchfields in same manner. This dataset is being bound as datasource of the web combo as well as datatextfield, datavaluefield, additionalsearchfields.
I'm binding the dataset in pageload event of usercontrol page.
Problematic Scenario:
Items are loading well to the combo.
While doing the search items in the combo, sometimes the data is not loading. But the text in the bottom of the combo box is showing the loading...
Even my dataset containing 10 to 15 items.
Can any one suggest me how to solve this issue?
Hi Mark,
Since you don't explain that you use the same scenario as Mr. Ramarajan, I assume that you just got the same problem (result). I'm sorry if I wrong.
If you want to bind the WebCombo to datasource, it is not recommended to bind in PageLoad event, it would be better if you bind it in InitializeDataSource event. Below is the sample code you could use:
protected void WebCombo1_InitializeDataSource(object sender, DataSourceEventArgs e) { dsNorthwindTableAdapters.ProductsTableAdapter da = new dsNorthwindTableAdapters.ProductsTableAdapter(); e.DataSource = da.GetData(); WebCombo1.DataTextField = "ProductName"; WebCombo1.DataValueField = "ProductID"; WebCombo1.AdditionalSearchFields = "ProductName"; }
But if you use the scenario similar with Mr. Ramarajan, could you please attach me a simple sample to investigate the issue? Because I could not replicate the issue.
Regards,
Julia
Hi Ramajan,
Unfortunately I can't replicate your issue. Your scenario works fine in my end the data is loading and the search result is showing up. If it possible, can you please send me your working sample that can reproduce your issue? I need it to investigate your issue further. Thank you.
Hello,
I am having the same problem except I always get just 'Loading' at the bottom.
ASP.NET 3.5, VS2008, Windows 7 32-bit.
My code is as below:
objl_COMBO = New ISNet.WebUI.WebCombo.WebCombo
objl_COMBO.ID = strl_SEARCH_ON
objl_COMBO.DataSource = <dataaset/sqldatasource/dataadaptor/datatable>
objl_COMBO.DataBind()
objl_COMBO.DataTextField = <a col>
objl_COMBO.DataValueField = <a col>
objl_COMBO.DataMember = "DefaultView"/table name
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