mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 12:33:26 +00:00
Fix #1460 : Select all value is included in the form, trigging an server side error
This commit is contained in:
@@ -28,6 +28,7 @@ define([
|
|||||||
buttonClass: 'btn btn-inverse',
|
buttonClass: 'btn btn-inverse',
|
||||||
maxHeight: 185,
|
maxHeight: 185,
|
||||||
includeSelectAllOption: true,
|
includeSelectAllOption: true,
|
||||||
|
selectAllValue: 'all',
|
||||||
selectAllText: i18n.t("all_collections"),
|
selectAllText: i18n.t("all_collections"),
|
||||||
buttonText: function(options, select) {
|
buttonText: function(options, select) {
|
||||||
if (options.length === 0) {
|
if (options.length === 0) {
|
||||||
@@ -41,6 +42,10 @@ define([
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
$('form[name="registerForm"]').on('submit', function () {
|
||||||
|
// must deselect the "select all" checkbox for server side validation.
|
||||||
|
$("select[multiple='multiple']").multiselect('deselect', 'all');
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Reference in New Issue
Block a user