views:

70

answers:

1

Hi, 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.

+1  A: 

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');
Anders Fjeldstad