Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Clicking text in Browsing

Post Reply
CreationX
Posts: 8
Joined: Mon Sep 14, 2015 3:40 pm

Clicking text in Browsing

Unread post 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.
admin
Site Admin
Posts: 2814
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 25 times

Re: Clicking text in Browsing

Unread post 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
Post Reply