-
11 Oct 2012 4:05 AM #1
Unanswered: Change ListView onItemDisclosure Icon
Unanswered: Change ListView onItemDisclosure Icon
How can I change the icon, that is shown if I have a listview, and I set the disclosure on? As default it is an arrow but I want a filled triangle.
How can i do that?
Code:Ext.define('APP.view.new.MyList', { extend: 'Ext.List', requires: ['APP.store.Store'], config: { itemTpl: '{id} {name}', store: 'NewTradesStore', onItemDisclosure: true, } });
-
11 Oct 2012 10:24 PM #2
you can make your own css fior itemdisclosur................. like the below
Code:.x-list .x-list-disclosure { overflow: visible; -webkit-mask: 0 0 url(images/arrow.png) no-repeat; -webkit-mask-size: 1.7em; background: #fff!important; width: 1.7em; height: 1.7em; }
-
30 Oct 2012 10:45 AM #3
@shwetha.saxena09:-
can i make these changes directly in sencha-touch.css file??


Reply With Quote