Class FormIdentifier
java.lang.Object
ch.tocco.nice2.netui.api.bind.form.FormIdentifier
Deprecated.
Transfer object to identify a form.
How to use in the client (JS)
Using the scope
Using the main part of the form name
Using the full form name
How to use in the client (JS) 
Using the scope 
var formIdentifier = new FormIdentifier();
formIdentifier.scope = "search";
Using the main part of the form name 
var formIdentifier = new FormIdentifier();
formIdentifier.scope = "search";
formIdentifier.formName = "User";
Using the full form name 
var formIdentifier = new FormIdentifier();
formIdentifier.scope = "search";
formIdentifier.formName = "User_search";
-
Constructor Details
-
Method Details
-
getScope
Deprecated.- Returns:
- eg 'list', 'search' etc. in lower case.
-
getFormName
Deprecated.- Returns:
- can be the main part of the form name (eg 'User') or the full form name (eg 'User_search').
-
setScope
Deprecated. -
setFormName
Deprecated. -
equals
Deprecated. -
hashCode
public int hashCode()Deprecated.
-