0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

rex0220 計算式プラグイン レコード再利用時テーブル行を選択して設定

Posted at

計算式プラグインで、レコード再利用時テーブル行を選択して設定する例です。

概要

レコード再利用時に、先頭に行追加し、ドロップダウンが "sample2" の行をコピーする例です。
TABLE_DATA 関数で、テーブル行の初期設定やテーブル行の再利用を行います。
※ABLE_DATA 関数は、 Ver.85 以降で利用できます。

2025-01-17_11h09_19.png

操作例

2025-01-17_11h16_52.gif

アプリ設定

「テーブル初期設定制御用」文字列を追加

2025-01-17_11h20_20.png

計算式プラグイン設定

「テーブル初期設定制御用」に、レコード再利用時の計算式を設定

2025-01-17_11h18_44.png

.js
// テーブル初期設定制御用 SINGLE_LINE_TEXT (hide)
IF(IN(EV_INFO("type"),"app.record.create.show","mobile.app.record.create.show"),
  FSET(テーブル,TABLE_DATA(
    ARRAY(
      DIC(
        "日付",	TODAY(),
        "文字列", "先頭行"
      )
    ),
    TABLE_MAP(テーブル,
      TPFILTER(ドロップダウン="sample2"),
      TPDIC(
        "日付",	日付,
        "ドロップダウン", ドロップダウン,
        "文字列", 文字列
      )
    )
  ))
)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?