User Manual

08.14.2024

MANUAL

Developer Function: Script: $p.events.after_send

## Overview This explains how to specify the method to be executed after sending data to the server. ## How To Use ##### JavaScript ``` $p.events.after_send = function (args) { //Processing content } or $p.events.after_send_{Value of the data-action attribute} = function (args) { //Processing content } ``` *Get this if you want to explicitly write the value of the data-action attribute of the button that will cause the event. ## Sample Code After setting the following sample code to the Pleasanter script and setting the output destination to "Edit", the data will only be updated when you enter 100 in the number A field and press the "Update" button on the edit screen (in this example, the value of the data-action attribute, Update, is explicitly stated). ##### JavaScript ``` $p.events.after_send_Update = function (args) { if($p.getControl('NumA').val() != 100){ return false; //When it is false, the process stops and the update does not occur. }else { $p.setMessage('#Message', JSON.stringify({ Css: 'alert-success', Text: 'The data for number A has been sent to the server.' }) ); return true; //If true, it will be updated. } } ``` ## Related Information [FAQ:$p.events.on_editor_loadを複数設定できるようにしたい](faq-multiple-on-editor-load)
TOP
このページをシェアする
記載された商品名、各製品名は各社の登録商標または商標です。 © Implem Inc.