Seeing this same issue for version 6+
Type: Posts; User: michaelbdavid
Seeing this same issue for version 6+
Hi aallord,
Thanks for the response. Yes I had a timeout set to 10mins. This is what I discovered. Apparently Chome has a default timeout for long running requests of 5mins which is not...
Hello All,
Running in to odd Ajax Failed issue for a call that could take up to 10mins to complete. Basically after this POST request is made after 2mins the network request in Chrome is marked...
use paging? http://docs.sencha.com/extjs/6.2.1/classic/Ext.toolbar.Paging.html
HTH,
MD
If you bind the store to your grid when you update the store the grid should reflect your changes.
HTH,
MD
Hey,
I'm looking into using a plugin to dynamically display a list of data and I'm wondering if its possible to bind a viewModel data attribute to a plugin that could be reusable across...
You could dynamically set ellipsis on the text using:
http://docs.sencha.com/extjs/6.2.1/classic/Ext.String.html#method-ellipsis
HTH,
MD
Ok so I found a solution that works. Within controller for Ext.NavigationView you can grab a hold of the NavigationBar component and gain access to the backbutton. Then you can call setDisabled()...
Hello,
I was wondering if there is a way to prevent pop from getting called on back. I attempted to use beforePop but that appears to be private. Basic scenario is I want to perform some...
I know this is an old post but I have just run into this same issue. Tab order seems to not work correctly with RadioGroups. When you tab to the first radio and hit tab again it continues on to the...
Thanks for the reply. Turns out we had an override that was changing behavior. Overrides for the fail.
Correct I just phat fingered, thanks for catching. Any ideas about why persist: false would be ignored on a Model?
Hello,
I have an issue where I have a field with persist: false and on model.save() field is still being passed to service layer. I'm seeing this issue in 6.2.
Field looks like: {name:...
Hi fordprefect,
I would suggest taking a look at using the rails asset pipeline to inject your extjs libraries into your app. I have done this in the past with success with older versions of ROR...
Hi Gary,
Thanks for the reply. I dont think this will work as I'd like to piggy back on the existing listeners under certain circumstances and then override under others. If I understand...
Hello All,
I'm currently looking into creating a plugin to add additional radio fields to a radioGroup. This all works fine but due to on change listeners on the radioGroup when I click my added...
Looks like you can also use Model Validations: http://docs.sencha.com/extjs/4.2.1/#!/api/Ext.data.Model-cfg-validations
Little bit of research and I found: http://json-schema.org/ Looks promising incase anyone else is looking for json validation tools.
Hello all,
I have an app that is used to track products. Each of these products has an associated product configuration that is used to define actions a product can take and thresholds for usage,...
I've seen the same behavior above, was a solution for this issue this ever found? Seems that if you change the date format as mentioned above to 'm/Y' for some reason date field converts to Feb to...
So the issue I ran into was I wasn't taking into account the conversion between standard and daily light time. I ended up doing manual conversion of timestamps based on offset.
Think you might be over thinking this. Really all you need to do is tie your tree node click to your tab panels display tab call. You can make this as advanced as you want associating ids and such...
Hey All,
Running into an issue with displaying Dates using Ext.Date.Format. The problem I'm running into is I grab the server time which comes as UTC string "Wed, 20 Mar 2013 15:16:21 UTC" I...
Hi All,
I was wondering if it is possible to use both remote and local sorting depending on the column selected within a grid. I have a situation where I would like to sort one column using...
Try setting height: '100%' should fix your issue.