You most likely didn't require the validation types you're using. Try adding the following to your model:
requires: [
'Ext.data.validator.Presence',
'Ext.data.validator.Length'
],
Type: Posts; User: M165437
You most likely didn't require the validation types you're using. Try adding the following to your model:
requires: [
'Ext.data.validator.Presence',
'Ext.data.validator.Length'
],
Ok, so this seems to be fixed in Ext 6.6.0.
Same here. :/
$ npm login --registry=https://npm.sencha.com [email protected]
Logged in as name..domain.tld to scope @sencha on http://npm.sencha.com/.
$ npm install -g @sencha/ext-gen
npm...
In Ext JS 6.5.3 the Ext.Button renders an actual html button element. When run in the iOS UIWebView component (e.g. with Cordova/Phonegap) it suffers the known 300ms delay and feels very sluggish...
@Spenna: Do you mind sharing your file app/override/env/Browser.js? I don't get how to override this kind of core file that is not an Ext JS class but a normal function. Thanks!
I'm using Ext JS 6.2 and to me it doesn't seem like the bug has been fixed. The navigation view still does not animate popping items as seen in their documentation fiddle:...
Are you referring to Ext.Promise? It's marked private. Am I missing something non-private? Are there any example on how to use this?
Thanks!
Sencha Cmd version(s) tested:
Sencha Cmd 5.0.2.250
Operating System:
Mac OS X 10.9.4
Framework used:
Sencha Touch 2.3.1
Hi! I'd like to know if this is still true for Sencha Cmd 5.0.1
The Cordova section of the Sencha Cmd Docs states Where can I find additional information on this? How do I set up a multi-build...
Is there a fix or patch for this bug? Thanks!
Edit: Yes, manually add the "apple-mobile-web-app-status-bar-style"-meta tag to index.html. That solves the problem.
<meta...
I noticed that when I give the label a width smaller than the view's width, the label gets cut off correctly (without having any other effect on the label for whatever reason).
<style...
Touch version tested:
Touch 2.3.1
Browser versions or Packager version tested against:
Chrome
Safari
Device and OS tested against:
MacBook Pro / OS X Mavericks
It's not Sencha Touch that changed, it's Cordova. Since version 3.0 it ships with a very limited API surface and you add the plugins you need.
"With the release of Cordova 3 you start with a very...
If you are using Cordova 3.0 or higher you need add the cordova device plugin to cordova
$ cd cordova
$ cordova plugin add org.apache.cordova.device
and the feature to config.xml:
<feature...
I had the same question and found an answer elsewhere. For documentation purposes:
The cluster functionality is part of the google maps utility library, see their examples on how to use it. You...
Good day,
just saying: we found that onReady and launch are being fired at different times in development (without any build) and after a build. In development onReady is being fired first, after...