Controlling Keying Text in Combo
I created a Active Widget Combo, i wanna control the keying text.
For Eg : setting combo text length =2 or something
For Eg : setting combo text length =2 or something
Suresh
April 3,
var obj = new AW.UI.Combo;
obj.setItemText("text");
obj.setItemCount(5);
// limit input text length
obj.getContent("box/text").setAttribute("maxlength", 2);
// monitor text changes
obj.onControlTextChanged = function(text){
window.status = text;
}
document.write(obj);
This topic is archived.
ActiveWidgets is a javascript library for creating user interfaces. It offers excellent performance for complex screens while staying simple, compact and easy to learn. Deployed by thousands of commercial customers in more than 70 countries worldwide.
Copyright © ActiveWidgets 2021