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

More than 3 years have passed since last update.

Kintoneアプリレコードのフィールド情報をさっと取得する

Posted at

はじめに

Kintoneアプリ開発をしていて、管理者権限のないアプリのフィールドタイプや、フィールドコードをさくっと確認したいとき用の備忘録です
権限の与えられていないフィールドの情報は取得できないので、必要に応じてアプリ管理者に確認する必要はあります

レコード情報の確認方法

1. レコードの詳細画面でブラウザのデベロッパーツールのConsole画面に以下を貼り付けてEnter

    kintone.events.on([
        'app.record.detail.show',
    ], function (event) {
        var record = event.record;
        console.log(event);
        return event;
    });

2. 前後どちらかにレコードを移動すると・・

image.png
 レコードを移動する

3. Console画面でレコード情報が表示される

スクリーンショット 2021-06-07 153727.png
※権限のないフィールドの情報は取得できません

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