Page 1 of 1

Clicking text in Browsing

Posted: Fri Sep 18, 2015 2:13 am
by CreationX
Right now, when clicking any text when browsing records, it goes to the edit page. Is there a way to prevent this? I do not want it to go to the edit page when clicking a row in browse. I want to be able to highlight, sort, etc the records.

Re: Clicking text in Browsing

Posted: Fri Sep 18, 2015 7:20 am
by admin
CreationX,

Put this in the Javascript on the Custome Code tab of your Form..

Code: Select all


function nuLoadBrowse(){

   $("[id^='row_']").unbind('click');

}


Steven