Hello,
I want to colour the mandatory fields with JavaScript or css. I analyzed the attributes and classes of the mandatory objects but found no clue. How do I know which objects have a "no blank "-validation?
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.
Identify no blank fields
Re: Identify no blank fields
Timo,
The Label of the Object holds the answer...
You could try this...
Steven
The Label of the Object holds the answer...
You could try this...
Code: Select all
$('.nuDuplicate').each(function( index ) {
var i = $(this)[0].id.substr(6);
$('#' + i).addClass('nuDuplicateField')
$('#' + i + 'code').addClass('nuDuplicateField') //-- for Lookups
});
You do not have the required permissions to view the files attached to this post.
-
- Posts: 73
- Joined: Mon Feb 24, 2014 2:58 pm
Re: Identify no blank fields
Would that be the same for nuBuilder 3? I can't find the label .nuDuplicate for objects with No blanks.
You do not have the required permissions to view the files attached to this post.