Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Clicking text in Browsing
-
- Posts: 8
- Joined: Mon Sep 14, 2015 3:40 pm
Clicking text in Browsing
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
CreationX,
Put this in the Javascript on the Custome Code tab of your Form..
Steven
Put this in the Javascript on the Custome Code tab of your Form..
Code: Select all
function nuLoadBrowse(){
$("[id^='row_']").unbind('click');
}
Steven