Max,
With window.history.go(-1); I return to the browse screen of my form. I need to return to the row of my subform I selected before.
Actualy I have te errase the value in the row of the subform
Thanks for helping me out.
Johan
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
-
- Posts: 503
- Joined: Thu May 24, 2012 2:08 am
- Location: Milan, Italy
- Contact:
Re: Browse screen
Johan, to erase values in the subform row you may try something like this:
1 - add this function in Custom Code > Javascript of the main form:
2 - in Lookup tab > Javascript field you can call that function:
This should works.
Max
1 - add this function in Custom Code > Javascript of the main form:
Code: Select all
/**
* Disallow lookup in a subform if one subform field matches a value.
*
* This function perform a check in a given text field of a subform:
* if the value entered in the field equals a given parameter,
* text and lookup fields are emptied.
*
* @param {string} pLookup Lookup field name
* @param {string} pFieldName Name of the field to inspect
* @param {string} pValue Value to check
*/
function stopLookupOnValue(pLookup, pFieldName, pValue) {
var fieldID = nuGetRow() + pFieldName;
if ($('#'+fieldID).val() == pValue) {
alert('Dit boek is niet beschikbaar in deze periode');
// Erase subform fields
$('#'+fieldID).val('');
$('#code'+nuGetRow() + pLookup).val('');
$('#description'+nuGetRow() + pLookup).val('');
}
}
Code: Select all
stopLookupOnValue('your_lookup_field_name', 'res_actief', '2');
Max
-
- Posts: 503
- Joined: Thu May 24, 2012 2:08 am
- Location: Milan, Italy
- Contact: