Questions tagged [extjs2]

The December 2007 release of ExtJs, the object oriented JavaScript framework for creating desktop-like applications.

The December 2007 release of ExtJs, the object oriented JavaScript framework for creating desktop-like applications.

See for more information.

50 questions
0
votes
2 answers

Add click event to the summary row of grid in extjs

Asked this question yesterday but not getting any response to posting it again in diffrent words- I have two columns with summary row- var cols = [ { id: 'myCol1', header: 'Price1', dataIndex: 'PRICE1', type: 'float', width: 50, summaryType:…
Microsoft DN
  • 9,706
  • 10
  • 51
  • 71
0
votes
3 answers

ext js - el.ownerDocument.createRange() errors in IE 8

HI, I am trying to dynamically add a form to a tab in Ext-js. (the tab has already been rendered). fyi, i am using I am using Ext 2.2. the error occurs when during the tab.add function: ie: function tabactivate(tab) { var newItem=…
29er
  • 8,595
  • 12
  • 48
  • 65
0
votes
1 answer

How to get grid in onContextMenu function

I have following code grid.on('contextmenu', this.onContextMenu, this); onContextMenu: function (e) { // I want the grid here }, there is only one argument 'e'. I cannot use 'this' as the grid is inside panel and 'this' returns panel not…
Microsoft DN
  • 9,706
  • 10
  • 51
  • 71
0
votes
1 answer

Cannot set property 'view' of undefined Extjs4

I trying to update code from extjs2 to extjs4, but I have an error and something wrong with grid. var grid = new App.grid.GridPanel({ store: store, columns: gridColumns, frame: false, //autoExpandColumn: 'name', autoHeight: true, …
0
votes
1 answer

ListView gwt how to organise images

Unfortunately I can't post images yet, but I'll try to explain. I have images and I'd like to use them like buttons like in blank page in chrome browser or opera. But as a result I have line with the image and the next image is on the next line and…
Nikitin Mikhail
  • 2,983
  • 9
  • 42
  • 67
0
votes
1 answer

Ext 2 prevent ComboBox from Store loading

According to the most recent Ext JS documentation I have to set queryMode: 'local' in ComboBox configuration to prevent it from autoloading its Store (I want to load the content of this Store manually, after selecting the value in another ComboBox,…
aga
  • 27,954
  • 13
  • 86
  • 121
0
votes
2 answers

Collapse TabPanel in Window

I have an Ext.Window with border layout. This window contain a grid and a TabPanel. This is my TabPanel: tabMsg = new Ext.TabPanel( id:'TabPanel', region : 'south', plain : true, collapsible: true, titleCollapse:'Modify?', …
AfanfeFana
  • 159
  • 4
  • 15
0
votes
2 answers

Clearing Search Box on the click of X button which is inside it using extjs

Clearing Search Box on the click of X button which is inside it using extjs . It should also have mouse over states. Can anyone please help with the code or how to proceed. Any help would be appreciated. Below is the code in which i want to add the…
0
votes
0 answers

ExtJS JsonStore Add/Remove/Sort

I've created a list view that relies on a JsonStore. This list is updated in real-time. What this means is that I receive records to be updated and I remove the existing ones from the store. I then place back in the updated ones and perform a sort.…
aaron-bond
  • 3,101
  • 3
  • 24
  • 41
0
votes
3 answers

Displaying Am Charts in an extjs window

I have been trying to build a sample web app that integrates amChart with extjs 2.3. All I have to do is display the chart on a pop up window. I did this by creating a page that loads the chart, then I used autoLoad on a form panel to load the page.…
euniceadu
  • 868
  • 16
  • 34
0
votes
2 answers

ExtJS 2.x Grid Cell Validation for Duplicate Data

I have ExtJS Grid In which I have Columns called "Mobile Number". I have made simple thing here When I edit more than 2 rows and If I Modify the Column "Mobile Number" It will be checked whether is it Exist in Grid or Not. If Duplicate Number found,…
Ashwin Parmar
  • 3,025
  • 3
  • 26
  • 42
0
votes
1 answer

ExtJS 2.3/3.x Grid store

I have a grid that uses a Json Store, on the grid I use a checkselectionmodel. I would like to populate another grid with the records selected from the first grid. What is the best way to go about it? I was thinking of cloning the store, doing a…
user979051
  • 1,257
  • 2
  • 19
  • 35
0
votes
1 answer

ExtJS2.2 expand() Combo but dont focus it

I'm working on an "old" application in ExtJS 2.2 and the method expand of Ext.form.ComboBox doesn't work in my case. I just do Ext.getCmp('adresse_field_ville').expand(); But nothing happends, even not a trace in console. I'm sure to use the good…
troc
  • 379
  • 2
  • 4
  • 16
0
votes
1 answer

extjs sortable does not sort on case and dates

I have a extjs grid which has an email field, that has emails beginning with upper case and lower case. This field does not sort as it should. Also, I have a date field of the format June 14, 2012 11:00 am. I am not sure how to sort the date column…
Micheal
  • 2,272
  • 10
  • 49
  • 93
0
votes
2 answers

Adding a non data bound row to a grid

This is a bit of a blast from the past, but anyway... I have a grid, that loads from a store, with a rowselection model, and some buttons etc... MyGrid = function(config){ var config = Ext.apply({},config,{ cm:'rowselection', store:new…
Alex
  • 5,674
  • 7
  • 42
  • 65