I just have two problems:
1. I have added the following code to automatically populate the username field on my form, and it is working 100%.
Code: Select all
function getUserName(){
var u = nuUserName();
if ( u == null) {
u= "globeadmin";
}
return u;
}
$('#MYFIELDNAME').val(getUserName()).change();;
2. When the user saved the data for the 1st time, I would like them to return to the main page and not remain on the data they just submitted, I found the nuGetBreadcrumb(0) option, but it doesn't work correctly( more like I'm using it incorrectly probably).
Again, thanks in advanced.
P.S. As soon as the project goes into production, I will be making a donation to the project, as it has put me in a excellent position to help my clients with their specific requirements.