Documentation

getValue

returns the current value of the control

string getValue();

Returns

stringthe current value of the control

See also

Example

{ view:"tabbar", type:"bottom", value:"one", options:[
                { id:"one", value:"One" },
                { id:"two", value:"Two"},
                { id:"three", value:"Three"}
            ]}
...
$$("tabbar1").getValue(); // returns "one"

Details

Value of the control may be:

Back to top