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
5
votes
2 answers

casper.js: press key "enter" in an ExtJs input field

I have an ExtJs text field on a page. I am filling it with some value in casper.js, which works fine. Then I want to focus this field and press the Enter key, as there is no
around it to submit. What I tried was: casper.then(function() { //…
dan-lee
  • 14,365
  • 5
  • 52
  • 77
5
votes
1 answer

Programmatically tab to next control in Ext JS

I've written a wrapper UX control in Ext JS 2.x around Ext.Form.DateField to handle keypresses slightly differently. In particular, when the calendar is on display, I want the Tab key to select the highlighted date and move to the next form…
Matthew Strawbridge
  • 19,940
  • 10
  • 72
  • 93
4
votes
4 answers

Use ExtJs and JQuery together in one application?

we have a big ExtJS (still ExtJs 2) application, which provides windows explorer like functionality on a Java EE server. We now evaluate implementing a new functionality; we could base this functionality on a jQuery plug in. Is it recommended to use…
Windwalker
  • 1,915
  • 5
  • 23
  • 44
2
votes
0 answers

editor grid head and body move separately

I am using Editor grid which have 15 columns due to which horizontal scroll bar exist. In normal mode it works fine, but if I select any of editable grid items and move horizontal scroll bar to extreme right grid header and body moves independently.…
2
votes
1 answer

Upload File Ext Js 2.2

I have the following code to upload the file but I cannot get the file at the php someone knows explain why ? EXT JS items: [{ xtype: 'textfield', fieldLabel: "Anexo", id: 'anexohelp', name: 'anexohelp', inputType:'file', …
MANIAMAX
  • 146
  • 9
2
votes
1 answer

ExtJs datefield converts invalid date to valid date

I am using ExtJS 2.1 and I have the following problem, I hate a 'datefield'. Now the date has to be entered in the format 'MM/DD/YYYY'. The problem is if the user enters something like '21/17' or '16/05' it gets converted to a valid date. (21/17…
Art F
  • 3,992
  • 10
  • 49
  • 81
2
votes
0 answers

Extjs 3 - Grid grouping with a checkbox

I have a grid configured with a GroupingStore, GroupingView and a CheckColumn that displays grouping data using extjs 3.The data that I display in grid is list of students as rows and subjects as headers. I will group all students that fall into…
Srikanth
  • 471
  • 2
  • 14
1
vote
1 answer

display specific value from combobox as default in ExtJs 2.3

i have a combo box with few data but i want to display it's specific value as default value in drop down. I am using ext 2.3
1
vote
2 answers

How to get values of multiple textfields with same name in extjs2

I am adding a textfield dynamically when i click add button, after that i need to get the values what i added dynamically while i click save button. its in extjs2.0 itself. This is the code what i am working on var settingsEmailPanel = new…
Bhaskara Arani
  • 1,556
  • 1
  • 26
  • 44
1
vote
0 answers

Extjs EditorGrid Cell calculation dependency

Im working on writing a calculation functionality to add dependencies on one or more cells with different formula's (dynamically supplied formula's) on edit of a cell's value. Eg: if there are 4 cells a,b,c,d with formula's a=(editable), b=(a+d),…
Venkat Pathy
  • 151
  • 2
  • 3
  • 8
1
vote
2 answers

Ext Js 2.1 Combobox Anymatch filter not working

This is my store. var studentStore = new Ext.data.SimpleStore ({ fields :['value','name'], data :studentArray }) This is my ext js combobox. ddlStudentCombo = new Ext.form.ComboBox({ …
Veer
  • 1,575
  • 3
  • 16
  • 40
1
vote
1 answer

IE10 extjs compatibility app view issue

i have some application write in extjs2.3, and when i test it with IE10 i can see several issue, node don't expand, form don't rendering well etc...With IE9 or in other Browser Mode compatibile view all is rendering well.. I use all the solution i…
AfanfeFana
  • 159
  • 4
  • 15
1
vote
1 answer

Cannot read property 'isTree' of undefined Extjs 4

I trying to update code from extjs2 to extjs4, but I have an error and something wrong with grid. My Google Chrome browser return error Cannot read property 'isTree' of undefined Ext.define('App.grid.GridPanel', { extend:…
1
vote
1 answer

How to catch event of hyperlink in controller in extjs4?

I am working in extjs4 MVC.I am getting stuck at a point where I have to catch event click of hyperlink in extjs4.I want to catch that event in controllers 'control' method.I tried a lot but not get solved please some one give some suggestion to how…
Pravin Mane
  • 529
  • 4
  • 13
  • 25
1
vote
1 answer

Highlight part of a text in an extjs textarea

I need to highlight part of a text in a textarea. I have seen it done with jquery but I can't use jquery because the app I'm working on already uses extjs(the textarea is just a small part of the app). This is a link to the jquery sample:…
euniceadu
  • 868
  • 16
  • 34
1
2 3 4