/** * Called by picker buttons to insert text and close the picker again * * @author Gabriel Birke */ function indexnumberPickerInsert(text, edid) { var rx = new RegExp('', '', ''); pickerClose(); } /** * Creates a picker window for inserting * * @author Gabriel Birke */ function createIndexnumberPicker(id, list, edid) { function getInsertHandler(idxname) { return function () { indexnumberPickerInsert(idxname, edid); }; } var $picker, $btn, i; $picker = jQuery('
') .attr('id', id); for (i = 0; i < list.length; i++) { $btn = jQuery('