+1 for this one, storechange should be very helpful to understand whether real store has been already bound or not. Can we rely on it?
Type: Posts; User: valgussev
+1 for this one, storechange should be very helpful to understand whether real store has been already bound or not. Can we rely on it?
Thank you, but this is just one of the possible workarounds of the issue, please see the link of the main thread above. I just want to make a bug report about the issue itself.
To continue the following thread I would like to rise a bug about tagfield select event issue. In the local mode if to start to type the end of the corresponding value from the store, than select...
Thank you, the override is working as well as the option with select as suggested above. I just wanted to point out the issue is still exists even in the 6.5 version.
Here is the fiddle . You can start to type with foo, than select the corresponding value, foo will be left in the field.
You need to go deeper until the underlying input element, for me the following works:
var el = this.getEl().dom.querySelector('textarea');
el.focus();
el.setSelectionRange(pos, pos);
If to call removeAll method on the segmentedbutton while one item is pressed and then add a new item using add method then toggle the new item, the following error occurs:
Cannot read property...
Right now I came up with an ajax request where on response the linkTo method is used where data is passing through the model to set a defaults in case no data is loaded:
Ext.Ajax.request({
...
I have a corresponding to the topic question, is it possible to set a dynamic url using links as it is done for stores? i.e.
links: {
foo: {
type: 'MyApp.model.TestModel',
proxy: {...
Yes they are, please see the https://fiddle.sencha.com/#fiddle/20sh
As I can see from the following GET request reply
https://www.sencha.com/forum/topics-browse-remote.php?page=1&start=0&limit=2
threadid is unique and immutable.
I've been able to reproduce the issue on 6.2.1 version, see the https://fiddle.sencha.com/#fiddle/2104
It is possible by setting renderTo window parameter to Ext.getBody(). However, the problem is all the stores bound to that window will be instantiated before the window is shown.
Hello, community,
I have an issue with a source map proper loading in the browser.
I've implemented the following steps:
1. built sencha app in the testing environment:
sencha app build...
bump, is it a bug?
removing viewmodel seems to fix the behaviour, but how to implement such using viewmodel?
I'm trying to store my grid state using the Ext.state.CookieProvider. The problem is I can't restore sorters parameters while state itself (width, order) is restoring properly.
First I've created...
thank you for your answer, but this is not the case,
in addition, if to click F5 to refresh the page, files are loading from server, but if to highlight the url and click Enter, everything will be...
any other suggestions? Could the server side be a cause?
Thank you for your answer, yes, I've set disableCaching parameter to false. Setting this parameter removed _dc from all .js-files allowing to cache. Unfortunately, after every page reload files are...
.js-files are downloading from server side but not from browser cache every time I reload a page with the following headers:
Response headers: Cache-Control:max-age=31556926
Request headers:...
Gary, that's why I get basic form out of it with .getForm()
panelToAddName.getForm().setValues(ob);
bump
Having form panel with combo box in it
Ext.define('MyApp.admin.view.UserAddView', {
extend: 'Ext.form.Panel',
requires: [
'MyApp.admin.controller.UserAddViewController'
...
ah, ok, that's was the question, thank you
There is actually another possibility:
1. define a main view class with firstTypeOfValidation() in it
2. inherit this class with all views I have
3....