Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

CategoryUsed withRoutineReturn value
Single value fieldsTEXT, TEXT_AREA, SELECT_LIST, RADIO_GROUP, SINGLE_CHECKBOX(optional)BA_getSingleValue(argv, label)String representing the value entered or the selected option for the given label. For checkbox it will return "checked" if the checkbox was selected or an empty string otherwise.
Multi value fieldsMULTI_SELECT_LIST, CHECKBOX_GROUPBA_getMultiValues(argv, label)String array representing the selected options.
FILE_UPLOAD (since v. 2.5)String array containing pairs of original filename and uploaded path. Even indices will contain original filenames, while odd indices will contain uploaded path. See Examples for usage.
CheckboxSINGLE_CHECKBOXBA_isChecked(argv, label)Convenience method for checking whether a checkbox is selected or not. Returns a boolean: true if the box was checked, false otherwise.

...