Hi ,
1)
When I set the Width of AutoSelect in below demo for State filed; it does also changing auto search filter on column. Can you guys please suggest a solution.
And Autoselect for State field width not looking same in all browsers. In IE9 Autoselect width looks similar to all other fields in the form. But when we take it on Chrome "State" field looks much bigger.
2) And also can you help in validating Autoselect for State field.I am trying to clear the Autoselect field when non existing datavalue is typed in the State field but that is not working. Can you please help.
Note: Demo doesn't have Scripts (Kendo/Js) included.
Thanks,
Chatrapathi Chennam
1)
When I set the Width of AutoSelect in below demo for State filed; it does also changing auto search filter on column. Can you guys please suggest a solution.
And Autoselect for State field width not looking same in all browsers. In IE9 Autoselect width looks similar to all other fields in the form. But when we take it on Chrome "State" field looks much bigger.
2) And also can you help in validating Autoselect for State field.I am trying to clear the Autoselect field when non existing datavalue is typed in the State field but that is not working. Can you please help.
//create AutoComplete UI component
$("#State").kendoAutoComplete({
dataTextField: "text",
dataValueField: "value",
open: function (e) {
valid = false;
},
select: function (e) {
valid = true;
},
close: function (e) {
// if no valid selection - clear input
if (!valid) this.value('');
},
dataSource: autoCompleteStates,
placeholder: "Select States..."
});
Thanks,
Chatrapathi Chennam