Expose autocomplete attribute for Kendo TextBox
Upon initializing the Kendo UI TextBox, the autocomplete attribute is initially set to off.
While this is suggested on MDN in most scenarios, there are use-cases where it is necessary to set autocomplete to new-password to avoid auto-filling.
Extend the API to allow setting the autocomplete attribute. This could be done in a similar way as the inputMode configuration.
Use jQuery attr method to set the item in the Ready event
$(function(){
$('#textBox').attr('autocomplete', 'new-password');
});
It would be very useful and much appreciated to have more events for the TextBox widget.
Simple standard events to could be:
Thank you so much for a great product!
The NumericTextBox has a property called selectOnFocus which allows you to select the entire value when you click inside the input.
My request is to have this feature in other inputs as well.
Hi Team,
I'd like to request the Change event to have the relatedTarget by default within its event arguments to help with finding what the next item in focus.
Thank you!