In your example below of having an input text box in the tool bar, how do I get the value of the text in the input box?
case 6:
tool.jqxInput({ width: 200, placeHolder: “Type here to search…” });
break;
I can get it like this in an event:
tool.jqxInput({ width: 75, placeHolder: “Type here to search…” });
tool.on(“keyup”, function (event) {
if (event.keyCode === 13) {
// value is here
//event.currentTarget.value
}
});
But how do I get the input value text when somewhere else? e.g. in another button click on the toolbar
Thanks