mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
Alpha 2.3.0 fixes :
- Multiple request templates on portal - SelectField interface stabilization - UI fixes on portal - Forms updates on lifecycle SVN:trunk[3970]
This commit is contained in:
@@ -84,10 +84,17 @@ $(function()
|
||||
}
|
||||
else if($(oElem).is('select'))
|
||||
{
|
||||
value = [];
|
||||
$(oElem).find('option:selected').each(function(){
|
||||
value.push($(this).val());
|
||||
});
|
||||
if($(oElem).is('select[multiple]'))
|
||||
{
|
||||
value = [];
|
||||
$(oElem).find('option:selected').each(function(){
|
||||
value.push($(this).val());
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
value = $(oElem).val();
|
||||
}
|
||||
}
|
||||
else if($(oElem).is(':checkbox') || $(oElem).is(':radio'))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user