[[email protected] app]$ sencha upgrade
Sencha Cmd v7.2.0.56
[INF] Determining the latest version of Sencha Cmd
[INF] Downloading : ....................
[INF] The latest version of Sencha Cmd is...
Type: Posts; User: dajester2008
[[email protected] app]$ sencha upgrade
Sencha Cmd v7.2.0.56
[INF] Determining the latest version of Sencha Cmd
[INF] Downloading : ....................
[INF] The latest version of Sencha Cmd is...
What in the world is going on here??? I pointed my browser over to https://npm.sencha.com/, go to enter my credentials, to which Firefox alerts me that my credentials are about to be sent plain...
Several problems:
Installing @extjs/ext-gen globally results in a deprecation warning - says to use @sencha. Great - tried to install that package - no luck, doesn't exist. Apparently, that...
So, at SenchaCon 2016, it was unveiled that Sencha was working on replacement build tools for ExtJS, as well as support for modern syntax (to include classes and decorators). I was super excited to...
Yes - I had to manually add the folders and update the relevant class paths in package.json to match what was in app.json. I've attached an example.
57166
Currently on NPM, @extjs/sencha-cmd sits at version 6.5.3 (which is actually CMD 6.5.1). Is CMD 6.5.2 going to be pushed up to NPM anytime soon? I cannot use ExtJS 6.5.2 with CMD from NPM without...
So, I see that @extjs/sencha-cmd is available to install from NPM - nice. Except while the latest npm package version is 6.5.2, it actually installs cmd 6.5.0. Not cool. I (and I'm pretty sure the...
According to the "Anatomy of a Package" documentation, sencha app generate should create the classic/modern source folders. However, using cmd 6.5, it does not. I only get an src folder (and a sass...
This is EXACTLY what I needed, thank you!
This fixed it for me, we're using ExtJS 5.1.0:
filterNodes: function(root, node, filterFn) {
var match = false,
childNodes = node.childNodes,
...
For what it's worth, you can extend the Ext.tree.Column class and provide it a custom cellTpl that writes out a glyph instead of an img tag...
I had it set to run after application launch, in a controller's init method.
app/controller/Core.js
Ext.define(...
init: function(app) {
{ turn on legacy focusmanager }
...
...
Using the "legacy" focus manager works for me as a workaround:
var extV = Ext.getVersion();
if (extV.gt("5.0") && extV.lt("5.1")) {
Ext.FocusManager.enable();
}
my mistake, meant to post this to Q&A. not sure how to move it...
I need access to the response object in the event of an error in the response while saving a model.
I've been digging in the source code, but I cannot find any way to get the response object in...
I want to setup the project URL prefix to http://localhost/app/?mod=something&action=, so that I can in turn set my model's proxy url to GetMyData. I expect the URL to be executed to look like...
I appologize for my previous post, I didn't read this post as thoroughly as I had thought. This is good news, thank you.
The big issue here in my mind is not which is a better technology - that is an endless (and pointless) war.
The API's keep magically changing, and breaking backwards compatibility. Ext2 -> Ext3...
The 'ref' config in Ext3 is not recognized in Ext4. In the API docs for Ext.AbstractComponent, under 'itemId', it gives a reference to see 'ref' and 'id'. I know this is nit-picking, but I only...
The 'ref' config in Ext3 is not recognized in Ext4. In the API docs for Ext.AbstractComponent, under 'itemId', it gives a reference to see 'ref' and 'id'. I know this is nit-picking, but I only...
I hope it is ok to post this here, seeing as it is not truly a plugin to Ext, however, I really would like to post this and start getting some feedback.
After trying to use the PHP-Ext library, I...
I wanted an easier way to set up a rowcontextmenu on my grids, so I came up with the following:
/**
* Ext.ux.RowContextActions
*
* This plugin can be instantiated once, and applied to...
If you want a quick fix, include this after you include ext-base.js (should work for either Ext 3.0 or 2.n, although I have not tried it with 2.n)
BTW: I pulled the basic code for the synchronous...
I found this worked also as a possible solution to the problem:
Ext.override(Ext.form.BasicForm,{
reset:function(){
this.el.dom.reset(); // Added this line
...
Ok thanks!