Need to configure attached multiple selection WDD as following:
Thanks.
igWDD.zip
Hello Michael,
After investigating this further, I determined that the WebDropDown could stay opened after selecting an item by setting the property “EnableClosingDropDownOnSelect” to false. Regarding your second requirement what I could suggest is binding a method to the blur event, getting the current value and if the value is not correct, the focus would be set back to the input of the dropdown:
function blur(sender, evt) {
var wdd = $find('<%=wddUno.ClientID%>');
if (wdd.get_currentValue().includes("2014")) {
wdd._elements["Input"].focus();
}
Below I am attaching a sample, demonstrating the described behavior. Please test it on your side and let me know if you need any further information regarding this matter.
Regards,
Monika Kirkova,
Infragistics
WebDropDownValidate.zip
Hi Monica,
EnableClosingDropDownOnSelect = false has resolved stay open issue,, but the second issue
- validation on losing focus did not work, I were not able to see that blur function hit...
- what is the nature of the Client-blur property...
- do I need to load jQuery library
- Do I need modernizr - this link seems like not working
- can you send designer file too , so I will try to run without converting..