jquery - Simpledialog2 Open partial view inside it -


i working on asp.net mvc3 application. want render site on mobile .

function openpopup() {     $('#registerform').simpledialog2({         mode: 'blank',     headertext: 'some stuff',     headerclose: true,     blankcontent :    "<ul data-role='listview'><li>some</li><li>list</li><li>items</li></ul>"+    "<a rel='close' data-role='button' href='#'>close</a>"     })     } 

now want open partial view inside simpledialog2 . how can open it? partial view is

@html.partial("_loginpopup", model) 

any help?


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -