tags:

views:

23

answers:

2

hi,

is there an equivalent jquery ui for modalpopup like the one in asp.net?

thx

+2  A: 

I'm not sure about ASP.net's implementation, but jQuery DEFINITELY has these types of popups.

here's your basic popup: http://jqueryui.com/demos/dialog/
here's a list of plugins that are specifically modal popups: http://plugins.jquery.com/search/node/modal

0x90
I need a popup modal that blocking the page and showing a progress icon while some process occuring.. is there a built-in plugin?
+2  A: 

http://jqueryui.com/demos/dialog/#modal

$( ".selector" ).dialog({ modal: true });

IMO, the jQuery UI popups behave much better than their ASP.Net equivalents (including when used with ASP.Net).

Tim
I need a popup modal that blocking the page and showing a progress icon while some process occuring.. is there a built-in plugin?
The jQuery UI toolkit also includes a progress bar: http://jqueryui.com/demos/progressbar/#default. However, it will require connection with a server-side component (such as a web service returning JSON) if you are trying to report progress on a long-running action.
Tim