Monday 12 January 2015

MVC How to Create A jQuery Modal Popup

Please visit the youtube site below,
https://www.youtube.com/watch?v=jpg_2vLAJxc

And how to open a jQuery UI Dialog without a title bar?
I figured out a fix for dynamically removing the title bar.
$("#example").dialog(dialogOpts);
// remove the title bar
$(".ui-dialog-titlebar").hide();
This will remove all elements with the class 'ui-dialog-titlebar' after the dialog box is rendered.

No comments:

Post a Comment