Button

クリックでコピー

ルック&フィールの設定

  • Label (必須ではありません)コンポーネントのラベルを表示するために使用します。
  • Icon (必須ではありません) - ボタンアイコン。
  • Size (必須) - 標準のボタンサイズ。
  • Type (必須) - 標準的なボタンレイアウト。
  • Name (必須) - この名前は、BPでこのコンポーネントを見つけるのに役立ちます。
  • Enabled (必須) - アプリケーションでボタンが使用可能かどうか。デフォルトでオンになっています。
  • Visible () - オンになっている場合、コンポーネントを表示します。デフォルトでは有効です。

ワークフロートリガー

  • onCreate - は、ページ上に要素が作成されたときに発生します。
  • onShow - コンポーネントの状態が visible (ページ上に表示される) に変更されたときに発生します。
  • onHide - コンポーネントが hidden に変化したとき (表示を停止したとき) に発生します。
  • onDestroy - コンポーネントが破棄されたときに発生します。
  • onClick - コンポーネントがクリックされたときに発生します。

コンポーネントアクション

Button Get Properties:

ボタンのプロパティを取得する

入力 パラメータ

  • Component Id [string]- button コンポーネントの識別子です。

出力 パラメータ。

  • Label [string]- ボタンのラベル。
  • Type [enum]- ボタンの種類を指定します。
  • Size [enum]- ボタンの種類を表します。
  • Icon [enum]- ボタンのアイコン
  • Color [string]- ボタンの色
  • Visible [boolean]- ボタンの可視性状態
  • Enabled [boolean]- ボタンの有効/無効の状態
  • Loading [boolean]- ボタンのロード状態

Button Get Properties

Button Set Properties

全てのボタンのプロパティを設定

入力 パラメータ

  • Component Id [string]- ボタンコンポーネントの識別子
  • Label [string]- ボタンのラベル
  • Type [enum]- ボタンのタイプ
  • Size [enum]- ボタンのタイプ
  • Icon [enum]- ボタンのアイコン
  • Color [string]- ボタンの色
  • Visible [boolean]- ボタンの可視性状態
  • Enabled [boolean]- ボタンの有効/無効の状態
  • Loading [boolean]- ボタンのロード状態

Button Set Properties

Button Update Properties

ボタンのプロパティを更新

入力 パラメータ

  • Component Id [string]- ボタンコンポーネントの識別子
  • Label [string]- ボタンのラベル
  • Type [enum]- ボタンのタイプ
  • Size [enum]- ボタンのタイプ
  • Icon [enum]- ボタンのアイコン
  • Color [string]- ボタンの色
  • Visible [boolean]- ボタンの可視性状態
  • Enabled [boolean]- ボタンの有効/無効の状態
  • Loading [boolean]- ボタンのロード状態

Button Update Properties

Button Click

ボタンのクリックを実行する

入力 パラメータ

  • Component Id [string]- ボタンコンポーネントの識別子

Button_onClick

Button Reset State

入力パラメータ: ボタンの状態をすべてデフォルトに戻す

入力 パラメーター

  • Component Id [string]- ボタンコンポーネントの識別子

Button Reset State

Button Set Loading

ロード状態をtrueに設定する

入力 パラメーター

  • Component Id [string]- ボタンコンポーネントの識別子

Button Set Loading

Button Remove Loading

入力パラメーター: ローディング状態を false に設定する 入力パラメーター: ローディング状態を false に設定する。

入力 パラメーター

  • Component Id [string]- ボタンコンポーネントの識別子

Button Remove Loading

Button Enable

有効状態をtrueに設定

入力 パラメーター

  • Component Id [string]- ボタンコンポーネントの識別子
    Button Enable

Button Disable

有効な状態を false に設定

入力 パラメーター

  • Component Id [string]- ボタンコンポーネントの識別子

    Button Disable

Button Show

可視状態をtrueに設定

入力 パラメーター

  • Component Id [string]- ボタンコンポーネントの識別子です。



Button Show

Button Hide

入力パラメータ:可視状態をfalseに設定

入力 パラメーター

  • Component Id [string]- ボタンコンポーネントの識別子です。

Button Hide


使用例

例えば、モーダルウィンドウを開くためのボタンを使用する場合

Example Button