DHTMLX Combo inside Ajax Panel in ASP.NET
I'm trying the combination of DHTMLX Combo and ASP.NET AJAX, but since it's simply a javascript and not .NET native it will post back ignoring the update panel. I need it working with AJAX, so what could I do?
If I开发者_运维百科 could do that AJAX call manually it would help, but how?
Thank you.
Here is an article that describes how you can refresh an UpdatePanel using Javascript. Does that help you at all?
Update: Since the solution as described in the article is so concise, I'll add it to my answer to save future readers some time. In Javascript:
__doPostBack('updatePanelId', 'someArgument');
精彩评论