LoginSignup
1
1

More than 5 years have passed since last update.

Ext.Listで矢印アイコン付きのリストを表示する。

Posted at

Ext.Listで矢印アイコン付きのリストを表示したい場合は、"onItemDisclosure"プロパティで矢印をタップした際のイベントハンドラを設定すると、自動で表示される。

Ext.create('Ext.List', {

    onItemDisclosure: function(record, item, index, e) {
        console.log('disclosure');
});
1
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
1
1