Page tree

Versions Compared

Key

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

...

  • Fixed issue with CSV export when used with default settings
  • Added new parameter to TableView/CardView to override the default behaviour of fields for "hide if empty" flag when views are used with default set of fields
  • Implemented a way to receive notifications from ConfiForms Form submission routine (by overriding the following JavaScript functions)

    Code Block
    function onCFSubmitStarted(formName){
    
    }
    
    function onCFSubmitFinished(formName){
    
    }
    
    function onCFSubmitError(formName){
    
    }

    You can override it for example like this

    Code Block
    onCFSubmitStarted = function(formName) {
       alert('The form is about to be submitted');
    }

Version 2.0.32 

  • Fixed content rendering issue with markup/markdown field when it is set to use Atlassian markup
  • Fixed issue with requesting "local resources" with "local request forward" via ConfiForms IFTTT actions (web connection request)
  • Fixed error reporting on web-service backed fields (when resource configured cannot be accessed or loaded)
  • Fixed issue in ConfiForms Filter Control with umlauts (non latin characters) used as IDs in multi-select fields
  • Fixed issue with ConfiForms dynamic filter macro when used with checkbox/radio group fields (also fixed the reset button bug with the same type of fields)
  • Fixed issue with using decimal numbers in filtering (for comparison, exact match)

...