Documentation

setValue

sets a new value for the component

void setValue(string value);

Parameters

valuestringa new value for the control

See also

Example

{ view:"tabbar", id:"tabs", type:"bottom",  options:[
                { id:"one", value:"One" },
                { id:"two", value:"Two"},
                { id:"three", value:"Three"}
            ]}
...
 
$$("tabs").setValue("two"); 
        //the second option will be selected

Back to top