4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

kintone カスタマイズビューを使用せずにレコード毎に個別に設定してボタンなどを表示する方法

Last updated at Posted at 2020-07-21

kintoneの一覧画面にボタンを設置したいけど・・・
チュートリアルにはヘッダーにボタンを表示する方法しか書いてない・・・

何とかカスタマイズビューを使用せずに、レコード毎にボタンかリンクを個別に設定を変えて設置できないだろうか・・・?

方法あります。
jQueryを使用すれば、レコード毎に設定することができます!

for(let i = 0; i<event.records.length >0; i++){
  $('tr').eq(i).append(`<a href="${link[i]}">hoge</a>`);
}

kintoneの画面では、一覧はテーブル要素で表示されている。
ため、上記の方法が有効です。
trの何番目か分からない場合は、F12でDOMを調べてください。

※前に「.value-{DOM上の番号}」で書いていましたが、不安定な書き方のため、オススメできません。

こうすることで、カスタマイズビューを使用せずとも、設定できます!

どなたかのお役に立てればと思います!

不明点があれば、ご質問も受け付けております。

4
1
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
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?