![]() |
how to call js function from my customAjaxEvent - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html) +--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html) +---- Forum: English (https://www.atozed.com/forums/forum-16.html) +----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html) +----- Thread: how to call js function from my customAjaxEvent (/thread-684.html) |
how to call js function from my customAjaxEvent - morhous - 09-21-2018 Code: // this is my custom ajax event RE: how to call js function from my customAjaxEvent - Jose Nilton Pace - 09-21-2018 Hi, something like this: Code: WebApplication.CallBackResponse.AddJavaScriptToExecute( '$("#EditModal").modal("hide");' ); RE: how to call js function from my customAjaxEvent - morhous - 09-26-2018 (09-21-2018, 11:22 AM)Jose Nilton Pace Wrote: Hi, something like this:thank you it works, also how to get customajaxevent response? |