Hi,
I have a Browse Screen where I just need to list the records from a table.
I don't want the user to open the edit screen.
If the user tries to copy data from the Browse screen, it opens the Edit screen.
How can I avoid the Edit screen to open?
Thank you.
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Browse screen: don't allow to open the edit screen
-
- Posts: 177
- Joined: Tue Nov 15, 2011 2:24 pm
-
- Posts: 177
- Joined: Tue Nov 15, 2011 2:24 pm
Re: Browse screen: don't allow to open the edit screen
Hi,
Is there a way to use nuLoadBrowse() / nuGridClass( ) to achieve this?
Thank you.
Is there a way to use nuLoadBrowse() / nuGridClass( ) to achieve this?
Thank you.
BR
Rui
Rui
-
- Posts: 503
- Joined: Thu May 24, 2012 2:08 am
- Location: Milan, Italy
- Contact:
Re: Browse screen: don't allow to open the edit screen
Rui,
try this in Custom Code -> Javascript:
Max
try this in Custom Code -> Javascript:
Code: Select all
function nuLoadBrowse() {
$( "#nuBrowseTabAreaHolder" )
.find( "div[id^='row_']" )
.off("click");
}
-
- Posts: 177
- Joined: Tue Nov 15, 2011 2:24 pm
Re: Browse screen: don't allow to open the edit screen
Hi Max,
It works fine. Fantastic!!!
Thank you for your help!
It works fine. Fantastic!!!
Thank you for your help!
BR
Rui
Rui
-
- Posts: 503
- Joined: Thu May 24, 2012 2:08 am
- Location: Milan, Italy
- Contact: