Details
-
Sub-task
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
None
-
None
-
None
-
It is a problem in getSubmitableData function.
I started to rewrite the submit part, I write the code bellow (use it if it is of any help, of write another one, which does the job :-) )
Description
var selects = $("#" + inputDivId + " select").each(function () {
if (!allowDisabled && this.disabled)
submitableData[this.name] = this.options[this.selectedIndex].value;
if (this.multiple) {
var all_values = [];
$(this).find('option:selected').each(function ()
);
submitableData[this.name] = all_values;
}
});