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.
Background Color of Selected Row on Subform
-
- Posts: 28
- Joined: Sat Apr 30, 2016 2:51 am
Background Color of Selected Row on Subform
How do you change the background color of selected subform row?
Re: Background Color of Selected Row on Subform
hanstel,
The background color of a row only changes when the cursor hovers over it.
Steven
The background color of a row only changes when the cursor hovers over it.
Steven
-
- Posts: 28
- Joined: Sat Apr 30, 2016 2:51 am
Re: Background Color of Selected Row on Subform
Ok got it, but how do you change the background hover color, currently its almost unnoticeable light gray color.
Re: Background Color of Selected Row on Subform
hanstel,
Its been hard coded, I felt any other color would get a bit ugly eg..
If you really want to you can change certain forms by putting this in the Form's Javascript..
Steven
Its been hard coded, I felt any other color would get a bit ugly eg..
If you really want to you can change certain forms by putting this in the Form's Javascript..
Code: Select all
$("[id$='_nuRow'").hover(
function (){
$('#' + this.id).css('background-color', 'grey');
},
function (){
$('#' + this.id).css('background-color', '');
}
);
Steven
You do not have the required permissions to view the files attached to this post.
-
- Posts: 28
- Joined: Sat Apr 30, 2016 2:51 am