Add new group to other user's group select forms

This commit is contained in:
Michael Gapczynski 2012-06-29 16:29:58 -04:00
parent 719c7f7f6e
commit 05cb94801a
2 changed files with 9 additions and 2 deletions

View File

@ -35,6 +35,7 @@
}
button.click(function(event){
var button=$(this);
if(button.parent().children('ul').length>0){
button.parent().children('ul').slideUp(400,function(){
@ -136,11 +137,11 @@
var option=$('<option selected="selected"/>');
option.attr('value',$(this).val());
option.text($(this).val());
select.append(options);
select.append(option);
li.prev().children('input').trigger('click');
button.parent().data('preventHide',false);
if(settings.createCallback){
settings.createCallback();
settings.createCallback($(this).val());
}
}
});

View File

@ -40,7 +40,13 @@ $(document).ready(function(){
}else{
checkHandeler=false;
}
var addGroup = function(group) {
$('select[multiple]').each(function(index, element) {
$(element).append('<option value="'+group+'">'+group+'</option>');
})
};
element.multiSelect({
createCallback:addGroup,
createText:'add group',
checked:checked,
oncheck:checkHandeler,