Questions tagged [extjs4.2]

Warning: only use this tag along with the generic extjs tag. Otherwise your question will not be seen by the many thousands following extjs

See for more information.

1554 questions
0
votes
1 answer

ExtJS - Stripe rows does not work with PreviewPlugin after upgrading to 4.2

I'm upgrading a grid that uses the PreviewPlugin extension from ExtJS 4.1 to 4.2. After upgrading, the stripeRows config option no longer works correctly. Is this just a bug or am I doing something wrong? PreviewPlugin + stripeRows, ExtJS 4.1.1…
zeke
  • 3,603
  • 2
  • 26
  • 41
0
votes
1 answer

Toggle an item when another item is opened (border layout) ExtJS4

My aim is clear and (seems) simple ! If you look at this example : http://docs.sencha.com/extjs/4.2.1/extjs-build/examples/layout/complex.html and click in the "Center Panel" tab, you'll see a button which aim to toggle on/off the west region…
user2474622
0
votes
1 answer

Ext js summaryRenderer function not calling

This is my view Ext.define('view.OrdersGrid', { extend: 'Ext.grid.Panel', alias: 'widget.ordersgrid', store: 'TicketOrders', features:[ { ftype: 'groupingsummary', groupHeaderTpl: [ …
Noor
  • 39
  • 2
  • 7
0
votes
1 answer

how do I change the mask color of a specific EXT JS Window (popup) (Not across the application, rather just in one window)

I want to change the mast color when a modal window is displayed. I haven't been able to get it working. I have tried editing .ext-el-mask within the ext-all.css file. I'm able to change the opacity, so I know I'm in the right spot, but as soon as I…
crystal_test
  • 661
  • 1
  • 6
  • 20
0
votes
1 answer

changing row in extjs RowEditing plugin

I use ExtJS 4.2.2 version. I create RowEditing rowEditing = Ext.create('Ext.grid.plugin.RowEditing', { clicksToEdit : 2, clicksToMoveEditor : 1, autoCancel : false, errorSummary : false, listeners : { …
vdshb
  • 1,949
  • 2
  • 28
  • 40
0
votes
1 answer

Custom Control Component failed to use up('target') navigation

We have written a custom control component (basically a Ext.form.FieldContainer which supply navigation buttons based on components he is a subchild of.) As a example let us say it is a tabpanel and we want to add navigation buttons to jump to the…
JJR
  • 773
  • 2
  • 13
  • 32
0
votes
1 answer

Extjs - How to use ComponentQuery to find several similar components

In my application, I have several views that have the same buttons on the toolbar. In the contraoller, I would like to use one ComponentQuery only to listen to the click event on all similar buttons. My view 1 is as follows: alias:…
Lorenz Meyer
  • 19,166
  • 22
  • 75
  • 121
0
votes
1 answer

ExtJS 4.2.1 Model - field defaultValue: undefined is not a function

In my application i got e.g. two Models like this: Ext.define('App.model.Translation', { extend: 'App.model.MRModel', requires: 'App.model.TranslationItem', fields: [ ... …
JuHwon
  • 2,033
  • 2
  • 34
  • 54
0
votes
1 answer

Model.load: Cannot call method 'hasId' of undefined

I have an application where my model data has the idProperty set to '_id' as per server mongodb data. If I try to load a model instance by given id I get this strange error: Cannot call method 'hasId' of undefined My model is defined as…
Romeo Mihalcea
  • 9,714
  • 12
  • 50
  • 102
0
votes
1 answer

ExtJS4 - Extending different components from a single base class

I have a web app for which I am using ExtJS 4.2. This application has a bunch of different components - a panel that displays some data, another panel that displays some other data, a grid, a chart, etc, etc. It's required that each component has…
zeke
  • 3,603
  • 2
  • 26
  • 41
0
votes
2 answers

EXTJS 4.2 implementing multiple Editor xtypes for RowEditing a grid?

I'm using Extjs 4.2 and am currently using the RowEditing plugin on a gridpanel so the user can edit records in the grid. The editor xtype for a given column needs to be 'textfield' for all but one record. It has to be a combobox editor for the…
wintermute
  • 21
  • 3
0
votes
1 answer

Why doesn't my datastore send the changes back to the server, if I change only 1 row?

I have a problem, which I cannot solve alone. So your help is very appreciated. Here we go: Always if I edit more than one row in my grid, I get a list of beans in my controller for further proceedings...e.g. save the changes, but if I edit only 1…
F4k3d
  • 653
  • 1
  • 10
  • 29
0
votes
1 answer

How to add associations in Model dynamically in extjs

I want to add the associations on model based on the value of a field. For example: I want to add associations like Parent Model: Ext.define('App.model.parentModel', { extend: 'Ext.data.Model', requires: [ 'App.model.ChildModel1', …
0
votes
1 answer

ExtJs Message box sliding of message

I came across this example in extJs. i find that they are using Ext.example.msg for the sliding to happen. So, I have decided to store the file example.js in app/ext/example/example.js Ext.example = function(){ var msgCt; function…
MBK
  • 307
  • 6
  • 23
0
votes
2 answers

How can i get the ExtJs item from the panel if i have its name

I have the Form Panel and then i have 10 form fields in it like textbox etc. Now i have those stored in javascript array of objects like this Fieldarray = [] Now is there any way from that array i can get the each field by its name. I want to…
user191542
  • 275
  • 1
  • 7
  • 17