Click here to Skip to main content
15,894,539 members
Posted
Comments
Er. Tushar Srivastava 23-Dec-13 5:04am    
The whole tutorial actually explains how to create these dialogs. What do you want? If you are finding it difficult to understand then you probably should learn some basic ASP.Net first.

1 solution

Create your own dialogs and add properties to them. Take a div where you will show your data, add a class and id to it. Use the class for css styling and id for writing the script code. Jquery has dialog property $('#id-name'),# is used for accessing id and $('.class-name'),. is used for accessing classes. autoOpen: false,
resizable: false,
height: 170,
width: 350,
show: { effect: 'drop', direction: "up" },
modal: true,
draggable: true,
open: function (event, ui) {
$(".ui-dialog-titlebar-close").hide();
these are the properties used with dialogs. These are self explanatory. Just use the '.hide' and '.show' functionality correctly as per your requirement.

Accept if this helps
thank you
Happy coding
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900