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
Hello there, i saved some data from active directory in a list. how can i load a list or array in webcombo. is that possible?
Hello,
Yes, that is possible.I made a simple WebCombo sample that load data from list.Please kindly have on my sample and let me know your reponse.
Regards,Hans.
thank you it works!!
is it possible to show multiple rows in one webcombo? like this:
ID Name Email
5 Max max@google.com
6 Peter peter@aol.com
Thank you for your reply.Yes, it is.Please try to modify code in Button1_Click server side event to this code below:
protected void Button1_Click(object sender, EventArgs e) { WebCombo1.DataSource = allUsers; WebCombo1.DataTextField = "name"; WebCombo1.DataValueField = "id"; WebCombo1.LayoutSettings.ComboMode = ISNet.WebUI.WebCombo.Mode.MultipleColumns; WebCombo1.DataBind(); WebCombo1.Columns[0].BaseFieldName = "id"; WebCombo1.Columns[0].Name = "id"; WebCombo1.Columns[0].Width = 100; WebCombo1.Columns[1].BaseFieldName = "name"; WebCombo1.Columns[1].Name = "name"; WebCombo1.Columns[1].Width = 100; WebCombo1.Columns[2].BaseFieldName = "email"; WebCombo1.Columns[2].Name = "email"; WebCombo1.Columns[2].Width = 100; }
Hope this helps.Regards,Hans.
i activated the multiplecolums and it worked. thanks anyway
Hi Hans,
I downloaded your sample and am unable to get the code to work. When I click the down arrow on the WebCombo, I just get an empty box with the "loading..." text at the bottom. Any ideas?
I run Hans’s sample on my local end (view the sample in IE 10 browser) and find that everything worked smoothly. The result box (which shows the list) was accessed without any issues.
I enclosed the sample for reference. Please have the attached sample evaluated on your end and let us know if you have different result.
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