Looks like it is not supported in Ext.list.Tree class.
You can use Ext.grid.Tree for this feature.
plugins: 'gridmultiselection',
selectable: {
mode: 'multi'
}
Type: Posts; User: yeghikyan
Looks like it is not supported in Ext.list.Tree class.
You can use Ext.grid.Tree for this feature.
plugins: 'gridmultiselection',
selectable: {
mode: 'multi'
}
What about fiddle sample?
Use "Ext.panel.Panel.removeAll()" instead of "mapheader.items.items = []"
Use "Ext.panel.Panel.add({instance of NewMaplogo})" instead of "mapheader.items.items = [{instance of NewMaplogo}]"
Forget...
If you mean the properties of the viewmodel then you can use formulas (I have updated the fiddle):
Ext.define('Fiddle.view.PanelModel', {
extend: 'Ext.app.ViewModel',
alias:...
Why don't you define the store in ViewModel and bind it to tree?
Something like that:
2mot
AFAIK the autocomplete is cached on form submit. Your form is not submitted.
Use underscore '_' instead of points.
What about fiddle sample with your custom field?
stores: {
people: {
model: 'Fiddle.model.User',
autoLoad: true,
proxy: {
type: 'ajax',
url: 'People.json',
reader: {
...
Have you searched the missing files in bootstrap in editor or in browser? Sometimes the bootstrap.json is cached by browser.
Do you see a correct path in newly generated bootstrap.json?
How do you build the development version?
Have you tried the 'sencha app build -dev -uses' command.
Yes, there are different ways to shoot yourself in the foot ;)
Anyway most of such problems arrives when ppl try to put the business logic in the controllers.
You will not duplicate the code if you will not put the ajax request for creating the link between two selected entities.
"Fat Stupid Ugly Controller" means you put the business logic in the...
It is hard to say without seeing the code. What you are speaking about is called Fat Stupid Ugly Controllers.
It happens when view components are not separated by small class, for example the...
What I have also noticed, your GUI is a little bit overnested. You do not need to put a container in the tab panel and inside the container put the grid panel etc.
2in2
Ok, I have no idea why have you located a panel in toolbar. I have fixed your your sample.
2in1
Add the following css fix to your theme file:
.x-docked-top .x-has-badge .x-badge-el {
top: 0px;
}
You can create fiddle sample for us.
Now you can buy your timefield from sencha :D
can you reproduce the issue in http://fiddle.sencha.com/ ?
If you mean metric one, two, three... text then so.
...
...
{
type: 'category',
position: 'bottom',
fields: ['name'],
title: {
The download section of the sencha.support.com does not work also. I get the following js error:
---
Uncaught RangeError: Maximum call stack size exceeded
at ctor.findRelease...
There are several ways to achieve this goal:
First: You can use this override to register stores in some global variable. Here you will have to manage the remove of store from this variable after...
https://fiddle.sencha.com/#home