Depending on your version, you can bind to "store.loading" in a viewmodel. I can't remember when it was introduced, IIRC 6.5. The relevant code is in Ext.app.bind.Stub. If you see this in your...
Type: Posts; User: evant
Depending on your version, you can bind to "store.loading" in a viewmodel. I can't remember when it was introduced, IIRC 6.5. The relevant code is in Ext.app.bind.Stub. If you see this in your...
The config (and getter) is selectable: {} and getSelectable() respectively.
No: https://www.sencha.com/blog/sencha-on-stack-overflow/
See: https://examples.sencha.com/extjs/7.0.0/examples/kitchensink/?classic#column-grouped-3d
You should be able to do the same for a bar chart.
From the docs.
Yes.It's expecting a mock data file "data1.json". Have a look at the "data" section under "file system" in fiddle. You need to create a data file for it to load from the mock server.
Roughly related: https://stackoverflow.com/questions/5359224/parsererror-after-jquery-ajax-request-with-jsonp-content-type/5359239#5359239
It's because 6.7 turned on native JSON encoding, which will format the date including the timezone.
Compare:
const d = new Date();
console.log(JSON.stringify(d));
Ext.USE_NATIVE_JSON =...
https://www.sencha.com/forum/showthread.php?472305-Will-there-be-a-7-0-0-GPLv3-release
A paging toolbar should be a lot easier to implement. In fact you could probably take the classic implementation and port it across without much hassle.
No, none of the UI components were even...
The Dataview UI doesn't support virtual store. This is more to do with handling the UI than the store itself. For a list, we know we have a flat set of rows, so you can know when you're nearing the...
// No
items: [
Ext.create('SubSubpanel')
]
// Yes
items: [{
xclass: 'SubSubpanel'
}]
A store is a collection of records, so saying "userinformation.user_logname" doesn't really make sense. Are you intending to only load a single record?
I'm not really sure what the goal is. There doesn't seem to be much of a pattern to the examples.
The code itself doesn't follow best practices, the indenting and code style also seems a bit...
Why Word documents? Create subdirectories in the repo and have the files as js files.
this.onSwitch(true, false);
This issue posted is related to code, not documentation.
https://docs.sencha.com/extjs/6.7.0/classic/Ext.Component.html#static-method-from
What do you mean you found no issue?
The colours are clearly different between the label and boxLabel when disabled on material.
label: rgb(17, 17, 17, 0.38)
boxLabel: rgb(17, 17, 17, 0.38)
'{name:"John", age:30, city:"New York",}
Is not valid JSON. However, in 6.6, they changed the JSON parsing method to the native browser method, which is stricter in what it will parse. You're...
updateLayout has no impact in modern, because it doesn't "layout" in the same way classic does. Classic uses a JS layout engine, which is expensive to run. Modern uses a css layout engine, so all you...
This shows such a fundamental misunderstanding of how Modern works.
Ext.define("Fiddle.view.MainController", {
extend: "Ext.app.ViewController",
alias: "controller.fiddle-main",
config: {
collapsed: false
},
onCl: function() {
...
The controllers/viewmodels should be included by the views themselves, so you shouldn't need to include that at that level.
Because it's covered by the viewport, which is position: fixed and covers the entire document body.
Add you panel to the viewport:
Ext.Viewport.add({
xtype: '....'
});