[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Shortcut key to open lookups in Selector fields

  • Thread starter Thread starter Janani Nayanathara
  • Start date Start date
Status
Not open for further replies.
J

Janani Nayanathara

Guest
Thanks Santosh, This works perfectly. Since I wanted to open the search lookup, I changed the code as follows and it works fine for the lookup button. And instead of page load, I put it on custom sidebar section so that it applies to all pages in the system. $('.rbs-rel-selector input').on('keypress', function(e) { if (e.ctrlKey && e.charCode === 0) { var createButton = $(e.target).closest('.rbs-editField-valueContainer').find('button > span.k-icon.k-i-search'); if (createButton) { createButton.click(); } } });

Continue reading...
 
Status
Not open for further replies.
Back
Top