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 関連テーブルプラグイン テーブル表示

Last updated at Posted at 2025-05-19

関連テーブルプラグインで、テーブルを表示してみます。

概要

関連テーブルプラグインには、もともとテーブル表示の機能がありませんが、
HTMLを組み立てて表示することが出来ます。

2025-05-19_19h14_43.png

関連テーブルプラグイン設定

対象アプリのテーブル内項目(オプションT, オプション費用T)をTAGS_HTML関数で、HTML 形式に変換して表示します。

2025-05-19_19h18_46.png

2025-05-19_19h19_27.png

// オプション詳細の計算式
LET(
  table, TARRAY(オプションT),
  IF(ARRAY_COUNT(table) = 0, "",
    TAGS_HTML(
      TAG("style", JOIN(ARRAY(
        ".custom-table { width: auto; table-layout: auto; border-collapse: collapse; }",
        ".custom-table th { background-color: #c0eefe; }",
        ".custom-table th, .custom-table td { white-space: nowrap; border: 1px solid darkgray; padding: 4px 6px; }",
        ".custom-table td:last-child {  white-space: initial; }",
        ".value-right { text-align: right; }"
      ), NEWLINE(), 1)),
      TABLE_HTML(table, OPT("pref", "custom-"),
        オプションT, オプション費用T
      )
    )
  )
)
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?