Lines 109-115
function Check(f) {
Link Here
|
109 |
// So we use disabled instead. But disabled prevent values from being passed through the form at submit. |
109 |
// So we use disabled instead. But disabled prevent values from being passed through the form at submit. |
110 |
// So we "un-disable" the elements just before submitting. |
110 |
// So we "un-disable" the elements just before submitting. |
111 |
// That's a bit clumsy, and if someone comes up with a better solution, feel free to improve that. |
111 |
// That's a bit clumsy, and if someone comes up with a better solution, feel free to improve that. |
112 |
$("select[name=field_value]").prop('disabled', false); |
112 |
$("select.input_marceditor").prop('disabled', false); |
113 |
} else { |
113 |
} else { |
114 |
alertString2 = MSG_FORM_NOT_SUBMITTED; |
114 |
alertString2 = MSG_FORM_NOT_SUBMITTED; |
115 |
alertString2 += "\n------------------------------------------------------------------------------------\n"; |
115 |
alertString2 += "\n------------------------------------------------------------------------------------\n"; |
116 |
- |
|
|