Issue 122: [request] dialog creation
Status:  New
Owner: ----
Reported by kurtu...@gmail.com, Nov 30, 2008
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
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 1, 2008
#2 hejda...@gmail.com
I think, that dialog windows will make nyroModal to "rule them all" :) It is,
propably last thing I miss here :)
Dec 2, 2008
#3 kurtu...@gmail.com
thanks for the reply
Maybe a simple dialog, not necessarily to be draggable...just something to replace
alert dialog
Aug 25, 2009
#4 cully.la...@gmail.com
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>