Anyone know where to find support info on buttons?
What can I use them for? Can they call up views or subtables or fields as popups? What sort of script makes them work? Sorry, can't find anything in the manual.
4 replies
-
Buttons in Ninox accepts Functions as any other Formula field.
Look in the manual https://ninoxdb.de/en/manual/calculations/reference-of-functions-and-language in User Interface Automation section.
An example is to copy Customer Bill fields to Shipping fields (if they are the same):
if 'Ship Street' or 'Ship City' or 'Ship Postal' = null then
'Ship Street' := 'Βill Street';
'Ship City' := 'Βill City';
'Ship Postal' := 'Βill Postal';
'Ship State' := 'Βill State'
endNick
-
Thanks, Nick. I think what I really need is a primer in Ninox script! How did you learn it?
-
From Ninox Templates, reading the manual, a litle SQL, a litle Filemaker and ofcourse in here, Ninox Forum.
Read about Operators, too.
Nick
-
OK, back to the library then. Thanks for the steer!
Content aside
- 6 yrs agoLast active
- 4Replies
- 1975Views