sets the label of an item
name | string | the name of an item |
value | string | the value of an item (for a radio button) |
label | string | a new label (an empty string if you want to remove the label) |
myForm.setItemLabel(name, "New Text");
myForm.setItemLabel(name, value, "New Text"); // for radio button
Back to top