Issue 513: modal window that will return a value to a input form field
Status:  New
Owner: ----
Reported by natures...@gmail.com, Jul 30, 2010
The plugin would be great to use a a form where a user could click on a link next to a input field and the modal window opens showing values for this field (populated via Ajax) and then could select a single or multiple values which then get populated in the input field after the modal window closes.


I use a modified version of thickbox but its limiting and in situations where I have to use thickbox and nyromodal ...the css of these plugin tends to clobber each other.

It will be great to have a single plugin that can be used in all situations connected with modal windows.

Thanks in advance
Mat
Aug 2, 2010
#1 anotherhero
What in Nyromodal is limiting you to do this?
You could do
var selected;
$.nyroModalManual({url : "someurl to fetch", endShowContent : function(modal, settings){
$('#nyroModalContent select').bind('change', function(){});
selected = $(this).val();
}, endRemove : function(){
// do something with selected
}});