Hi,
Can any one tell me how I can handle multiple Key press in DynamicForm.
Actually I have a functionality that If user press 'Enter' key then I need to perform a action and if user press 'Shift' + 'Enter' then I should ignore that.
I think there should be any method which take Array of KeyName can any one please help me to get this requirement.
Thanks in Advance!!
Can any one tell me how I can handle multiple Key press in DynamicForm.
Actually I have a functionality that If user press 'Enter' key then I need to perform a action and if user press 'Shift' + 'Enter' then I should ignore that.
Code:
,itemKeyPress:function(item, keyName, characterValue){ if(keyName =="Enter" && characterValue==13){ alert("Hi Enter "+ keyName); } }
Thanks in Advance!!
Comment