open jQuery Dialog from codebehind

后端 未结 1 828
旧时难觅i
旧时难觅i 2021-01-03 07:22

So i have to show a jquery UI Dialog from codebehind.
I\'ve tried everything: this, this, this, and also changed those answers to test if it works with me but is not wor

相关标签:
1条回答
  • 2021-01-03 07:54

    First make a call to dialog to create it.

    .dialog({ autoOpen: false }) //{} = settings
    

    and then open it..

    .dialog('open')
    
    0 讨论(0)
提交回复
热议问题