| Issue 122: | [request] dialog creation | |
| 3 people starred this issue and may be notified of changes. | Back to list |
is there a way to create dialogs with nyroModal, or could it be included in next versions?
Dec 1, 2008
Project Member
#1
nyro...@gmail.com
Labels:
Type-Enhancement
Dec 1, 2008
I think, that dialog windows will make nyroModal to "rule them all" :) It is, propably last thing I miss here :)
Dec 2, 2008
thanks for the reply Maybe a simple dialog, not necessarily to be draggable...just something to replace alert dialog
Aug 25, 2009
I've just created a modal box with "yes" and "no" buttons. onclick, they both close
the modal box, while the "Yes" button does some extra stuff. Is this what you're
thinking? This is a simple example of some code:
<div>
<p>a message</p>
<button type='submit' onclick="$.nyroModalRemove(); extraStuff(); return
false;">Yes</button>
<button type='submit' onclick='$.nyroModalRemove(); return false;'>No</button>
</div>
|