In my ViewController I have many routes that uses a before function:
routes: {
'*': {
before: "checkDocEditorDirty"
},
"login": "showLogin",
...
Type: Posts; User: d.zucconi
In my ViewController I have many routes that uses a before function:
routes: {
'*': {
before: "checkDocEditorDirty"
},
"login": "showLogin",
...
Hi, in my ViewController I have many routes that uses a before function:
routes: {
'*': {
before: "checkDocEditorDirty"
},
"login": "showLogin",
...
The renderer function can only produce the content of cell as text. You cannot simply return a component or widget.
To achieve this goal you can use Ext.grid.cell.Widget and rows ViewModel.
I've...
Actually my was a configuration problem: using constrainHeader the window is correctly constrained to parent container.
I must set also
constrainTo
with another region (viewport region) to get a...
Hi all,
When I want to use a Ext.window.Window inheriting view model and controller from another container, I usually create it using "add" method on the parent container. This works and the...
This override is what I needed. Thanks
scss (and also simple css) could be a solution but I would like to select the style when the message is shown up. Example: show toast message with red background for errors or normal toast with gray...
Hi,
I'm using ExtJS Modern 6.2.1 and I would like to create a Ext.Toast message with custom ui (to apply custom CSS).
So I've tryed with something like:
Ext.toast({message: "Message",...
Hi,
This is my latest version of Ext.ux.form.MultiSelectField (for ExtJS 3.x)
Ext.namespace("Ext.ux.form");
/**
* @class Ext.ux.form.MultiSelectField
* @extends Ext.form.TriggerField
*...
In my case triggers are an optimal solution.
Many thanks for the suggestion.
Ok, I put label on selectfield and I've set the same fixed labelWith (in pixel) for every form field. If I keep default labelWidth in percentage (30%) on fields I've a misalignment for my composite...
Using a container I can use 2 components as form field but (on ExtJS Modern toolkit) the resulting component has no label:
{
xtype: "container",
label:...
Hi,
Since the configuration clearIcon or useClearIcon has no effect on Ext.field.Select (using ExtJS 6.2.0), I need to put a "clear" button near to my selectfield.
Is there a way to use a...
Hi,
In my modern view I've a Ext.field.Select with both value and store bound from ViewModel:
items: [
{
xtype: 'selectfield',
name: 'causeId',
autoSelect: false,
Hi all,
I have an HTML page that includes ExtJS 6 modern directly referencing those files from the <head>:
build/modern/theme-triton/resources/theme-triton-all-debug.css
build/ext-all-debug.js...
With nightly build 5.1.4.276 this is resolved.
Thanks
Ext version tested:
5.1.3.228
Browser versions tested against:
Hi,
I've my panel Test.LockedGrid that extends Ext.grid.Panel, initializing the store and some predefined and locked columns using an overridden initComponent method. It works normally.
If I try to...
Thanks, the override works fine.
Ext version tested:
Ext 5.1.3.228 Gray - 11 may 2016
Browser versions tested against:
Chrome 51.0.2704.79 m
DOCTYPE tested against:
HTML5
Description:
Hi,
Using Ext.form.field.ComboBox, is there a way to control store load params used when combo loads the store for the first time with compiled value or when store needs to be loaded after...
+ 1
If I use a buttongroup as widget instead of a container with hbox layout the row height seems to be mantained correctly between locked and normal grids.
Ext version tested:
Ext 5.1.1
Ext 5.1.2
Browser versions tested against:
FF 41.0.1 (firebug 2.0.12 installed)
Chrome
DOCTYPE tested against:
Thanks for your override.
Finally I'll probably use a "tl-tl?" alignment instead of "tl-bl?".
This configuration option could be added as standard feature. I think to use it to avoid this case:...