JQuery UI Dialog Problem
JQuery UI Dialog Problem
I am having a strange issue with jquery ui dialog. I am using asp.net
with ajax.net. I know that the dialog gets put outside of the main
form. I am able to fix that very easily with $("#dialog").parent
().appendTo($("form:first"));.
The problem I am having is that when I call dialog("open") a script
somewhere is setting the action of my main server side form from:
action="TicketDetail.aspx?TicketID=tQF8AA00000L"
to
action="javascript:void(0);"
This causes all future postbacks to fail. Anyone ever encounter
this? Any help would be appreciated.