Rank: Advanced Member Groups: Member
Joined: 8/11/2008 Posts: 37
|
If I use AutoCompleteExtender without CallbackPanel it runs. But with not. I think it is a problem with trigger. But how I had to define the trigger?
UweD
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, We have tested this and we do not see any problem with AutoCompleteExtender working together CallbackPanel. Please create a test page that can demonstrate the problem. Make sure your test page meet the conditions outlined here: http://www.essentialobjects.com/forum/postst3013_I-run-into-a-problem-can-I-send-over-my-code-so-that-you-can-take-a-look.aspxThanks!
|
Rank: Newbie Groups: Member
Joined: 12/4/2009 Posts: 7
|
I have built a solution which shows this problem. My AutocompleteExtender works perfectly if it's in a Microsoft UpdatePanel or just somewhere on the page. But if it's in the EO CallbackPanel it doesn't work after you've triggered a Callback to the server.
I think the best thing is if I could mail someone the whole solution showing the problem. And afterwards we could post a solution here.
Thanks
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
This is normal. Most controls in AJAX toolkit is "UpdatePanel" ready because it is from MS. Our CallbackPanel was introduced much earlier than UpdatePanel and supports our own controls better. For simple HTML only controls, it will work fine with both. However for complex controls, the control itself often needs to be aware of the AJAX panel in order to work perfectly. Thus for AJAX controls it's better for you to use UpdatePanel because they are aware of UpdatePanel.
Thanks
|