Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
345
Backspace not working!!
posted

Hi Team,

I am using

EnableAutoFiltering="Client" EnableCustomValues="False" in the dropdown. When I type 2 letters and try to use backspace, it does not work and seem to be blocked. 
 I am using Infragistics Version=13.2.20132.2187.
Kindly give some resolution at the earliest.

Thanks,

Pushkar

Parents
  • 10685
    Suggested Answer
    Offline posted

    Hello Priya,

    As you are using EnableCustomValues="False", the input field for the WebDropDown will not allow any editing. This is the reason why it is not possible to edit/add/delete – as the input could only march one of the existing in the WDD items values. This is by design and the expected functionality.

    However, in order to make this more user friendly, I suggest adding the EnableAutoCompleteFirstMatch="true" property. Using it will ensure the input will be matched to the first available and it will ease the user selecting/inputting correct value. Please notice it is always possible to delete the current value like using some of the following approaches:

    1 – Select all of the current input using the mouse and delete using delete btn or cut
    2 – press ctr+a to select all input, while the focus is in the WDD input field and press delete or ctr+x (cut)

    I am attaching a runnable code sample illustrating the suggested approach. Please let me know if you require further details.

    WDD_AutoFilter_CustomValues_Backspace.zip
Reply Children