Do i need to add more information or what? How come nobody has an issue with this? Or is it because it's regarding a plugin?
Type: Posts; User: MonkeySleeve
Do i need to add more information or what? How come nobody has an issue with this? Or is it because it's regarding a plugin?
So I have a calendar in Compact mode since the app is meant for Mobile use, and I want to add a button to the following sheet:
58096
Since in Compact mode it will create a Sheet with the following...
It seems that a list that is grouped has trouble with the Pullrefresh plugin:
2vhd
Which causes an error here, the fetch function doesn't seem to exists on the store, which is a GroupStore....
Thanks, added an override for the splitbutton and now it's working. Made some changes where i compared the Button getTemplate with this override:
getTemplate:function () { return [{
...
See fiddle:
2vbq
If you uncomment the badgetext part, it will result in an error: 'Cannot read property 'setText' of undefined' where undefined is badgeElement = me.badgeElement, in the...
It seems that the Weeks component of the Calendar has an onTouchStart event:
onTouchStart:function(e, t) {
var me = this,
el = me.element,
cell;
...
So I've finally managed to create a calendar with some dummy data to display it. But when I check the app in Chrome with the Devtools Device toolbar set to Pixel 2 for example, none of the events...
Found it, turns out you can set it in package.json in the 'requires' property:
"requires": ["calendar", "ux"]
I'm trying to figure out how the new calendar works in regards with the stores and events but first I want to be able to actually just see it without data. For our app we use packages in order to...
Kind of a follow up question regarding: https://www.sencha.com/forum/showthread.php?472286-Binding-a-ViewModel-data-to-fields-in-a-View
One way seems to be to have a single record bind to the...
Thanks, that actually kinda works for me. A colleague of mine also found another way to do this, using a link in the ViewModel, and in the UserInformation model just a proxy. But then you can only...
In this example; yes :)
But in the future if maybe we want to edit a certain record(Say for a CRM app where you edit a relation), we want the fields to be filled with the data of this record and...
Hi everyone,
So we've just started with Extjs 6.7 coming from Sencha Touch 2.4.1 and we wanted to use the View - ViewController - ViewModel method. With a bit of prototyping we managed to create...
Tbh, i'm not really sure how i can create a test case in Fiddle since it requires 2 plugins :/ What did was I extended the Ext.dataview.List and override the applyPlugins method with the following...
I have a custom list which overrides the applyPlugins methods from his parent. And within this method i apply either a Paging-plugin or a Refresh-plugin. But now i want these both to be enabled so i...
I'm not really sure how, for me this behavior only occurred in views that had 2 labels next to each other. Then i created production build en checked it on my iPhone with iOS 8.3
Touch version tested:
Touch 2.4.1
Browser versions or Packager version tested against:
Safari
Device and OS tested against:
iPhone 4s, iOS 8.3
What theme are you using for your...
Finally have a iPhone 4s with iOS 8.3 to test on, i've installed Telerik Appbuilder so i can connect the iPhone to my Windows pc and see what exactly is going wrong.What i've noticed is that when i...
Ok even weirder; on a iPhone 6 with iOS 8.3 it works now. However; on a iPhone 5 with iOS 8 it still doesn't work...
I managed to fix the issue. I noticed that when you login the app you are redirected to our 'Dashboard' app, from there you can go to other apps. But this dashboard app didn't work, it just kept...
One thing i noticed was that when the app is build using a production build it does not work on iOS 8 but if you build it using testing build it does work. So it seems that somehow the production...
After we updated our app to Sencha Touch 2.4.1 we are getting reports from users that the app no longer works on iPhones with iOS 8.x. It just gets stuck on the loading screen.
As far as i know we...
Thank you! That seems to do the trick! :D
I have a AgendaItem model that has some properties, it also has a hasMany association with a Employee model and ContactPerson model. As it turned out you can't use AgendaItem.Save() on a model that...
He figured out that it had to do with how we handle translations in our app. It was not sencha related after all