You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is specific to SlideNavigation. I have no problem on screens that are based on Panel. Using Sencha Touch 2.2.0.
PullRefresh is working (iOS, Chrome), but the arrow, text, and animation appear only if I do NOT include this in my SCSS:
[CODE]@import 'sencha-touch/default/src/dataview/List';[/CODE]
but of course that leaves me with a List that is not styled.
In all of the following cases, the list moves down and leaves blank space, and the arrow, text, and animation do not appear:
Using [CODE]touch/resources/css-debug/sencha-touch.css[/CODE]
Including [CODE]@import 'sencha-touch/default/all';[/CODE]
Including [CODE]@import 'sencha-touch/default/src/dataview/List';[/CODE]
My code:
Ext.define("ftapp.view.SlideMain",{extend: 'Ext.ux.slidenavigation.View',
....Ext.define('ftapp.view.comp.MsgList',{extend: 'Ext.dataview.List',requires: 'ftapp.model.Msg',xtype: 'msglist',config: {ui: 'round',singleSelect: false,// no selectiondisableSelection: true,onItemDisclosure: true,deferEmptyText: true,// defer until first loaditemTpl :'<div class="msgsrc">{fname}</div>',emptyText: '<div class="x-html">There are no news items.</div>',store: 'RemoteMsg',scrollToTopOnRefresh: false,plugins: [{xclass: 'Ext.plugin.PullRefresh',pullRefreshText: 'Pull down to refresh.',}],},});
This issue is specific to SlideNavigation. I have no problem on screens that are based on Panel. Using Sencha Touch 2.2.0.
PullRefresh is working (iOS, Chrome), but the arrow, text, and animation appear only if I do NOT include this in my SCSS:
[CODE]@import 'sencha-touch/default/src/dataview/List';[/CODE]
but of course that leaves me with a List that is not styled.
In all of the following cases, the list moves down and leaves blank space, and the arrow, text, and animation do not appear:
My code:
And my SCSS:
@import 'sencha-touch/base';
@import 'sencha-touch/default';
@import 'sencha-touch/default/src/Panel';
@import 'sencha-touch/default/src/Button';
@import 'sencha-touch/default/src/picker/Picker';
@import 'sencha-touch/default/src/Toolbar';
@import 'sencha-touch/default/src/carousel/Carousel';
@import 'sencha-touch/default/src/form/Panel';
@import 'sencha-touch/default/src/MessageBox';
@import 'sencha-touch/default/src/dataview/List'; // *** breaks PullRefresh
@import 'sencha-touch/default/src/plugin/PullRefresh';
@import 'sencha-touch/default/src/field/Checkbox';
@import 'sencha-touch/default/src/field/Field';
@import 'sencha-touch/default/src/field/Search';
@import 'sencha-touch/default/src/field/Select';
@import 'sencha-touch/default/src/field/TextArea';
@import 'sencha-touch/default/src/form/FieldSet';
The text was updated successfully, but these errors were encountered: