Hi
Like a "good" infragistics user I am trying to uset he new controlset since Infraqistics is abandoning us loyal users who have invested a tremendous amount of money in the "classic" control set that works.
I am jusst trying to add or remove items on the client side (we use a javascript wcf service to get data)
this works fine in the "classic" controls. How do I do this in the new improved webdropdown?
Gary
Hello GaryPlease check our sample browser where there are lots of samples with our controls describing different situations. For your question I would recommend you to view the following sample (code and design are free to customers):http://samples.infragistics.com/aspnet/Samples/WebDropDown/EditingAndSelection/ClientEvents/Default.aspx?cn=drop-down&sid=4a840952-2e28-4251-91a7-ea31cb23256bPlease also have a look at this forum post where s similar question is asked:http://forums.infragistics.com/forums/p/27710/172611.aspx#172611
Please let me know if you have more questions about this issue.
Ok. I created a small test program using the webdropdown and an html button.
using the 2 methods below. The result is the 4 items get added - somewhat- I cannot select items B or C. Onlhy A and B are highlighted as i move the mouse over. So I would say that no YOUR WEBDROPDOWN just like your WEBDATAGRID are not yet ready to replace yoru classic controls.
Unless there is something I am missing please respond!
Button1_onclick() {
addItem(
"AAA", "1");
addItem("BBB", "2");
"CCC", "3");
"DDD", "4");
}
addItem(sText, sValue) {
item.set_text(sText);
item.set_value(sValue);
combo.get_items().add(item);
Hello,Please take a look at our lifecycle page - http://ko.infragistics.com/support/product-lifecycle.aspx#ProductLifecycle . Latest service release for 10.2 had been release June 2011. We provide service updates only one year after a product has been released. This issue is fixed in 11.1.20111.2064 and 10.3.20103.2187 - the only two versions which are released within the last 12 months.
Was this bug#85506 fixed. I am still getting issues while adding more than one items on client-side. The below error message is coming:
Microsoft JScript runtime error: 'this._control._callbackManager' is null or not an object
Hi,Yes it was fixed and resolved in the latest service release of 10.3 and in 11.1.20111.2064 service release for 11.1. This issue should be resolved in the newest versions of NetAdvantage. If you are still facing it please point your build and if possible attach a sample reproducing it.
Hi,
I am using build 12.1. Getting the above mentioned error while trying to add second item.
Any updates?