Hi, in my ViewController I have many routes that uses a before function:
routes: {
'*': {
before: "checkDocEditorDirty"
},
"login": "showLogin",
...
Type: Posts; User: d.zucconi
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...
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
*...
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:
headerCt is a working attribute of Ext.panel.Table, initialized by its initComponent method.
Unfortunately is not a documented private/protected variabile (so it could change or disappear with...
Correct.
The prototype of method getGridColumns of Ext.grid.header.Container seems to be changed from ExtJS 4.1 to ExtJS 4.2:...
?http://www.sencha.com/forum/showthread.php?150918
+ 1 !
Still present in 4.1.0 final release... Why ?
I've tested the plugin with ExtJS 4.1.0 and simple remote JSON store linked to my grids for now and it seems to work properly.
Trying to use local store, filters are applied but grid data is not...
Hi Sbrega,
You can work with the scroll event on the grid view Ext.dom.Element:
{
xtype: 'gridpanel',
...
listeners: {
scope: this,
Grid re-configuration is not currently supported.
Thanks to puya and Jad for their fixes and suggestions. I'm going to update the source code on the first page ASAP.
Hello everyone,
I'm looking for a solution to the problems of localization in ExtJS 4.0.7.
I downloaded ExtJS 4.1.0 RC to see if the locale files were correct, but I found the same problems(eg:...
Any news for this bug ?
This is my fix:
Ext.override(Ext.data.GroupingStore,{
clearGrouping : function()
{
this.groupField = false;
Thanks for your suggestion, code updated on the first post of this thread.