| 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 01, 2008
nyroModal is a modal plugin, as it's name indicates. I don't think I'll create dialog options as it's mean many changes as the ability to move the dialog for example. Maybe somebody could work on it and use callbacks to create it.
Labels: Type-Enhancement
|
|
,
Dec 01, 2008
I think, that dialog windows will make nyroModal to "rule them all" :) It is, propably last thing I miss here :) |
|
,
Dec 02, 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>
|
|
|
|