As far as I understand it `splunkjs/mvc/simpleform/formutils` was introduced in version 6.1.1.
I'm currently stuck with 6.0.8. So how does the following code work in that version which doesn't have FormUtils:
var input1 = new TextInput({
"id": "input1",
"value": "$form.DatabaseName$",
"el": $('#input1')
}, {tokens: true}).render();
input1.on("change", function(newValue) {
FormUtils.handleValueChange(input1);
});
↧