Questions tagged [extjs3]

Ext JS 3 is the third major version of JavaScript library for building Rich Internet Applications (RIA).

Ext JS 3 is the third major version of JavaScript library for building Rich Internet Applications (RIA).

Documentation for Ext JS 3.4 is available from Sencha, while documentation for Ext JS 3.0 can be difficult to find outside of personally hosted API docs. Here's one: http://www.vinylfox.com/docs/

See for more information.

1023 questions
5
votes
2 answers

Extjs 3.3.1 FieldSet with layout fit and grid in it does not resize the grid on window resize

var colModel = new Ext.grid.ColumnModel({ columns: [ columns here...] }) var grid = new Ext.Ext.grid.GridPanel({ store: store, loadMask: true, autoExpandColumn: 'itemDescription', stripeRows: true, colModel: colModel }) var…
AMember
  • 3,037
  • 2
  • 33
  • 64
4
votes
1 answer

Sorting by the rendered value in an ExtJS 3 EditorGridPanel

I am new to Ext so I apologize in advance if my question is not clear enough/too basic... I have an Ext.grid.EditorGridPanel with an Ext.data.Store and an Ext.data.JsonReader. I have the following problem: I would like to make the columns in my grid…
N.M
  • 685
  • 1
  • 9
  • 22
4
votes
2 answers

ExtJS decode method fails to decode """ After File Upload

I have a JSON format result sent back to the client that hold the $quot sign. for some unknown reason the code breaks. Here is the code that bricks from ext-all-debug: doDecode = function(json){ return eval("(" + json + ")"); FAILS…
AMember
  • 3,037
  • 2
  • 33
  • 64
4
votes
2 answers

Combo doesn't blur when manually shifting focus

I have a combo box that's rigged to do shift focus to another form element immediately after the user has selected a value, with this config: new Ext.form.ComboBox({ // ... listeners: { select: function( a, record ) { if…
Rijk
  • 11,032
  • 3
  • 30
  • 45
4
votes
2 answers

Autohide a viewport's region in Extjs

Lets suppose i have the following code snippet: Ext.create('Ext.container.Viewport', { layout: 'border', renderTo: Ext.getBody(), items: [{ region: 'north', html: '

Page Title

', autoHeight: true, …
Mehdi Fanai
  • 4,021
  • 13
  • 50
  • 75
4
votes
2 answers

In ExtJs 3.3.1, how can I show a ComboBox drop down without click in EditorGrid?

I am using ExtJs 3.3.1. Within an EditorGrid, my "editable" column has a ComboBox as its editor. How can I have the ComboBox always showing for each row? Meaning, the user would not have to click on a cell to know there is a ComboBox there. …
Justin
  • 1,310
  • 3
  • 18
  • 29
4
votes
4 answers

Switching from ExtJS3 to ExtJS4: Worth the hassle?

We are in the middle of a relatively large project which uses ExtJS3 and have already invested ~4 man-years, using several plugins and we have written some plugins ourselfs. After a quick glance at ExtJS4, it seems that we would have a lot of work…
Erich Kitzmueller
  • 36,381
  • 5
  • 80
  • 102
4
votes
2 answers

How can I make a window in 100% height and width with ExtJs?

This one didn't work: new Ext.Window({ width:'100%', height: '100%' }).show(); I has do be fluid, so that when the window is resized it has to change its diemensions.
ilhan
  • 8,700
  • 35
  • 117
  • 201
4
votes
1 answer

grid focus issue in ExtJS4

We are using ExtJS4 in our application. We have a problem with grid focus.We are using grid.getView().focusEl.focus() in ExtJS3. Now it seems that this is not working.What is the replacement for this one in ExtJS4.
Kiran
  • 20,167
  • 11
  • 67
  • 99
4
votes
2 answers

autoHeight issue in ExtJS4

We are using autoHeight to window in ExtJS3. But now in ExtJS4 it is not working. Is there any alternative to this one? If yes,please let me know.
Kiran
  • 20,167
  • 11
  • 67
  • 99
4
votes
3 answers

how to group header grid in extjs?

How to group header like grid below in extjs: |-------------- A1 header------------|--------------B1 Header---------------| |----A2Header---|---A3Header---|----B2Header---|---B3Header------| |-----A2Data------|----A3 Data------|-----B2…
user715045
  • 155
  • 1
  • 5
  • 15
4
votes
2 answers

extjs 3 - add progressbar and image in property grid

Is it possible to implement progressbar in property grid in extjs 3? How do I add an image in property grid? I have a value in percentage and I want to represent that in progressbar (its uneditable). Thanks a lot for help.
user427969
  • 3,836
  • 6
  • 50
  • 75
4
votes
2 answers

How to get height of Ext.Panel to fill parent area

I have the following Ext.TabPanel: var modules_info_panel = new Ext.TabPanel({ activeTab: 0, defaults:{autoScroll:true}, //layout: 'fit', // makes component disappear viewConfig: { forceFit: true //has no effect }, …
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047
4
votes
1 answer

Checkbox for group header of extjs grouping grid

I am having a ExtJs EditorGridPanel configured with a GroupingStore, GroupingView and a CheckboxSelectionModel. The Checkbox appears in the grid's header and in all the rows. I want to bring the checkbox on the group header also. My intention is to…
Saravanan M
  • 4,697
  • 5
  • 35
  • 37
4
votes
2 answers

EXTJS:Filter store not occur first click of combo

i want to filter a store on selecting value from combo. when i select first value it does not filter it but on selecting anyother value 2nd time it works well my store has autoLoad=true here is my code xtype: 'combo' ,fieldLabel: 'Online…
Saima
  • 41
  • 1
  • 6