Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »


» Custom Wizard Functions

These functions are defined in the 'apq-c3-custom\js\custom-wizard.service.js’ file

  • wizard.stepChanged: With the advanced option stepChanged you can trigger any JavaScript function when a step is changed. (e.g myStepChangedFunction)

  • wizard.backCallback: With the advanced option backCallback you can trigger any JavaScript function (e.g myBackFunction)

  • wizard.nextCallback: with the advanced option nextCallback you can trigger any JavaScript function (e.g myNextFunction)

  • wizard.onCancel: With the advanced option onCancel you can trigger any Java Script function upon cancel. (e.g myCancelFunction)

  • wizard.onFinish: With the advanced option onFinish you can trigger any JavaScript function upon finish. (e.g myFinishFunction)

  • wizard.formDataChanged: With the advanced option formDataChanged you can trigger any JavaScript function when form’s dta ais changed (e.g myFormDataChangedFunction )


» Card Config Custom Functions

Define function in the following 'apq-c3-custom\js\custom-functions.service.js' file

  • cardConfig.footer.callBackFn: With the advanced option cardConfig.footer.callBackFn you can trigger JavaScript function when footer is selected.


» Table Custom Functions

Define function in the following 'apq-c3-custom\js\custom-functions.service.js' file

  • table.columnHeaderUpdate: With the advanced option columnHeaderUpdate you can trigger a JavaScript function when a column header is updated. ( e.g customColumnHeaderUpdate_3 )


» Table Custom Hook Functions

Define function in the following 'apq-c3-custom\js\custom-hook-functions.service.js' file

  • table.functions.beforeCellUpdate:With the advanced option beforeCellUpdate you can trigger any JavaScript function before any cell update (e.g beforeCellUpdate)

  • table.functions.afterCellUpdate: With the advanced option afterCellUpdate you can trigger any JavaScript function after the cell is updated. ( e.g afterCellUpdate )

  • table.functions.beforeTableUpdate: With the advanced option beforeTableUpdate you can trigger any JavaScript function before the table is updated. ( e.g beforeTableUpdate )

  • table.functions.afterTableUpdate: With the advanced option afterTableUpdate you can trigger any JavaScript function after the table is updated. ( e.g afterTableUpdate )


» TI Process Custom Functions

Define function in the following 'apq-c3-custom\js\custom-functions.service.js' file

  • process.initCallback: With the advanced option initCallback you can trigger any JavaScript function before the process modal is opened. (e.g demoProcessInitCallback)

  • process.cancelCallback: With the advanced option cancelCallback you can trigger any JavaScript function when the user clicks the cancel button. (e.g demoProcessCancelCallback)

  • process.statusNotifications.failed.callback: With the advanced option statusNotifications.failed.callback you can trigger a JavaScript function after the process has failed. (e.g demoProcessFailedCallback)

  • process.statusNotifications.success.callback: With the advanced option statusNotifications.success.callback you can trigger a JavaScript function after the process has run succesfully. (e.g demoProcessSuccessCallback)

  • No labels