returns the label of an item
name | string | the name of an item |
value | string | the value of a radio button |
string | an item's label |
// for a radio button
var text = myForm.getItemLabel(name, value);
// for other items
var text = myForm.getItemLabel(name);
Back to top