0

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

null
    • Nick
    • 5 yrs ago
    • Reported - view

    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'
    end

     

    Nick

    • David
    • 5 yrs ago
    • Reported - view

    Thanks, Nick. I think what I really need is a primer in Ninox script! How did you learn it?

    • Nick
    • 5 yrs ago
    • Reported - view

    From Ninox Templates, reading the manual, a litle SQL, a litle Filemaker and ofcourse in here, Ninox Forum.

    Read about Operators, too.

     

    Nick

    • David
    • 5 yrs ago
    • Reported - view

    OK, back to the library then. Thanks for the steer!

Content aside

  • 5 yrs agoLast active
  • 4Replies
  • 1974Views