Skip to content

Commit

Permalink
Fieldflow - Add "query" action on form submission
Browse files Browse the repository at this point in the history
To be used when the defaultIfNone action require to execute a query action. For example, when fieldflow render a combo box, the name defined by the query action would be set as the input text field name.
  • Loading branch information
duboisp committed Jun 7, 2018
1 parent 2eff1a3 commit 17d13b3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/plugins/fieldflow/fieldflow.js
Expand Up @@ -1280,6 +1280,9 @@ $document.on( fieldflowActionsEvents, selector, function( event, data ) {
case "removeClass":
$( data.source ).removeClass( data.class );
break;
case "query":
actQuery( event, data );
break;
}
break;
}
Expand Down

0 comments on commit 17d13b3

Please sign in to comment.