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

  • Thread starter Thread starter Santosh Patel
  • Start date Start date
Status
Not open for further replies.
S

Santosh Patel

Guest
Unfortunately, the search icon button and create buttons do not have tab stops. You can put in an enhancement request to allow tabstops on supplementary buttons on fields. I suggest using the following javascript snippet to allow you to workaround this. $('.rbs-rel-selector.rbs-with-create 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-plus'); if (createButton) { createButton.click(); } } }); With this script running on page load, you can press "Ctrl+Space" to open up the related 'Quick Create' popup if create button is present on the field.

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