Button click event taking ispostback=false on dialog close

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • spv2
    New Member
    • Jan 2013
    • 3

    Button click event taking ispostback=false on dialog close

    this is dialog open function and i am calling it from page behind.
    Code:
    function OpenDialog(url) {
               $('#searchDialog').dialog({
                    autoOpen: false,
                    width: 900,
                    height: 600,
                    modal: true,
                    open: function () {
                        $(this).load(url);
                    }
                });
               $('#searchDialog').dialog('open');
                return false;
            }
    Last edited by Meetee; Jan 16 '13, 06:55 AM. Reason: Use code tags <code/> around code
  • PsychoCoder
    Recognized Expert Contributor
    • Jul 2010
    • 465

    #2
    Ok, what issue(s) are you experiencing with the code you supplied?

    Comment

    • spv2
      New Member
      • Jan 2013
      • 3

      #3
      Hi,
      After closing this dialog and clicking submit button will set IsPostBack to false.But i want IsPostBack as true..

      Comment

      Working...