-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Open
Labels
C: TextBoxEnhancementFP: UnplannedSync status with associated Feedback ItemSync status with associated Feedback Item
Description
Enhancement
Expose autocomplete attribute for Kendo TextBox
Overview
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.
Desired Behavior
Extend the API to allow setting the autocomplete attribute. This could be done in a similar way as the inputMode configuration.
Workaround
Use jQuery attr method to set the item in the Ready event
$(function(){
$('#textBox').attr('autocomplete', 'new-password');
});Metadata
Metadata
Assignees
Labels
C: TextBoxEnhancementFP: UnplannedSync status with associated Feedback ItemSync status with associated Feedback Item
