Wow, bringing out an article from 2017! The fact that we continue to upgrade major versions since then is enough, but... So much in that article is just not true. For example, it states that with...
Type: Posts; User: schmoboy
Wow, bringing out an article from 2017! The fact that we continue to upgrade major versions since then is enough, but... So much in that article is just not true. For example, it states that with...
On the contrary dear troll. We are looking for an ExtJS dev also and are interested in any help. It is alive and well.
I thought there used to be a forum specific to that here but can't locate...
Is there a way to configure the parameters for the plugin's "Run sencha app watch" task? I need to pass the --j2ee flag as I've setup a proxy for an api service in WEB-INF/web.xml.
Trying to do a sencha app watch without starting web server. According to the help that is done with the -w switch.
Options
* --debug-fashion, -deb - Enables / disables node dev tools when...
It's unusable for us due to the grid columns defaulting to right align. There are also locking grid column rendering issues which affect us. Both of these issues are reported/fixed in nightlies,...
Ok, figured it out. Just have to create your own proxy and override the encodeFilters function.
Migrating app from 4.2.x to 6.0.x.
Have the grid filters converted to the new gridfilters plugin from the old grid filters feature. However, I'm trying to find a way to alter the encoding of the...
Yes, got it working. The following code was placed in ./overrides/form/action/Submit.js of the sencha cmd generated app as such...
Ext.define('Ext.overrides.form.action.Submit',{
override:...
Looks like I may be able to just override Ext.form.action.Submit's onSuccess method to ignore the result.success check?
Original Code:
onSuccess: function(response) {
var form...
Interacting with an existing REST server which does not include the success: property in JSON responses. It uses the HTTP status code to indicate success or failure. Obviously work fine using...
I just ran into the issue with the load event being removed from loadRawData also when upgrading.
I believe the load event should be fired. If the store was loaded, regardless of how it was...
That's what we started doing, but after a while the git clone starts taking forever on the build server. Maybe we aren't doing something right there, but after a few ExtJS version updates doing as...
We are trying to figure out the best way to bring a new version in.
If in the new branch we remove the old ExtJS version and checkin the new under a different directory, that just makes the...
Yes, that is the simplest, but the git repo gets larger and larger every time we update the ExtJS source in the repo. The changset when updating the ExtJS code in the repo is not small. After a few...
I am looking for best practices for an ExtJS project when using Git for source control. After some searching there seems to be a couple options, but I am struggling with the best option to make it...
Thanks for the suspendLayouts suggestion, but our main pain point seems to be with showing grid header menus and their associated filters. Don't think I can utilize that in this case. I looked at...
I sure hope this eventually gets addressed. After spending months upgrading our app from 3.x to 4.x our customers (95% are stuck on IE8) have nothing but bad things to say about the degradation of...
Mitchell, you say "after the menu was created I quickly did this to update the list"
What grid event are you listening to to arrive at "after the menu was created"?
See this thread for a 4.x update to InactivityMonitor.
Updated the very nice InactivityMonitor from harley.333 as seen in this thread for ExtJS 4.x.
Ext.define('Ext.ux.InactivityMonitor', {
mixins: {
observable: 'Ext.util.Observable'
...
UPDATE: Sorry this seems to be a duplicate of [OPEN-461]
If a floating panel contains a FormPanel which has a selectfield, when the option list is displayed for the tapped selectfield, trying to...