sets the value of an item or clears the list in uploader (if the 2nd param is omitted)
name | string | the name of an item |
value | mixed | the value of an input, optional |
myForm.setItemValue(name, value);
// for multiselect
myForm.setItemValue(name, [value1, value2, ... valueN]);
Back to top