Please use this tag in relation to ExtJS 4.0 - 4.2; Ext JS 4 is the fourth major version of the JavaScript library for building Rich Internet Applications (RIA), and now includes an MVC architecture without the need to use plugins. Sencha has already released ExtJS 4.1 which has some significant ...
1
vote
0answers
7 views
Overriding default parameter names in ExtJS 4 Store
I'm trying to override the default parameter name for limitParam in proxy for the Store. I want to make a JSONP call to http://search.twitter.com/search.json?q=kathmandu&rpp=2 but instead of ...
1
vote
2answers
22 views
Passing parameters to function before this.control() in Ext-JS 4
I have this:
{
listeners['combobox[name="counterparty_id"]'] = {
afterrender: {
fn: this.onComboboxCounterpartyAfterrender,
scope: this
}
};
...
1
vote
1answer
20 views
Extjs4 disable “Delete” button by default but when select any row enable the button
I have two "delete" button on top of a grid, one is red another is gray.
When no row selected, the button is the gray one. Otherwise, it shows the red one.
How to do that using Extjs4?
1
vote
0answers
23 views
How to add layout dynamically in Exjs4?
I am working in Extjs4.And I am getting stuck at a point which is how to add accordion layout dynamically in Exjs4? I am using layout vbox and hbox but I als want to add accordion to east region.I ...
1
vote
2answers
21 views
ExtJs: Wait till store loads and then execute next statements
I have a store which I need to load and perform operations on the records inside the code after the store gets loaded.
But since the execution is asynchronous, the statements after store load gets ...
0
votes
0answers
12 views
Add change event handler for custom Container of ExtJS
I have created a View by extending Ext.container.Container and have given it an alias widget.myCustomView. Since I'm using it in different places.
The view as usual Ext form components like ...
0
votes
0answers
18 views
How to do pagination of grid by loading a store with local data with totalCount
This is my encoded result :
{"items":[{"sourceId":"EPH1303270001004","ccy":"EUR","amount":"50.00000"}],"totalCount":1}
I am trying to do load the store2 of grid2 using above result as:
var D = ...
1
vote
1answer
16 views
How to export grid data to excel along group headers/ summary records with expand and collapse action in Excel?
I have done application using Extjs 4. I have requirement need to export grid data to excel. I have grid it contains many records, showing records by group headers/summary(collapse/Expand actions ). ...
1
vote
0answers
14 views
On mouseover the icon is not changing in firefox
I have designed a tool bar where buttons are there,. My requirement is initially it should display one icon and on mouse over the icon should change. For this i have given a class to the button and ...
1
vote
1answer
18 views
why confirmation message box is not coming only in IE and safari, on static pdf pages(Extjs4.1)?
I have done application using Extjs 4, In app some places showcasing statis pdf pages. in this app given option to user, he can logout from any pages. If i am in static pdf screen, once i click here ...
1
vote
0answers
16 views
Halt the processing of DragDrop events on displaying a window while performing drag & drop between grids
I have started working on it since past couple of months.
I have an issue handling drag & drop events.
I have two grids placed side by side and I am performing drag & drop operation from left ...
0
votes
1answer
19 views
How to dynamically change the themes in extjs 4.2 project?
I have created new project in Extjs 4.2. I would like to provide an option in the UI to dynamically change the theme. I have a created a combo box with theme names like "Classic" and "Gray". Whenever ...
0
votes
1answer
13 views
Ext Data Model listener
I'm new in ExtJS 4, and I make an extended Data Model. I want to listen model's set function. How can I make a custom listener on set, or override set with original set functions + extensions?
0
votes
1answer
22 views
sencha cmd: Failed to find any files for
I'm getting following error when i execute sencha app build
[ERR] BUILD FAILED
[ERR] com.sencha.exceptions.ExBuild: com.sencha.exceptions.ExBuild: Failed to find any files for ...
0
votes
1answer
26 views
In grid summary renderer is not displaying in extjs
can anybody tell what is problem In grid view summary renderer is not displaying
this is my app.js
Ext.application({
requires : ['Ext.container.Viewport', 'TestGrid.view.GlobalTeamTable1'],
...
1
vote
1answer
21 views
How to auto populate email address in text field using extjs 4.1?
I have done application using Extjs4.1, it contains feature login page. for email address and password field using text box field. Here i need to add feature, auto populating of email address who ...
1
vote
1answer
32 views
Extjs4 itemselector, issue in configuration
I try to use itemSelector in extjs4.2 but i don't know i can configure two store. The first multiselect panel is populate by a store, and the second had another too.
I need to save the variation in a ...
2
votes
1answer
17 views
keyup event not getting fired on setValue() of the textfield
I am using two tabpanels (for e.g T1 and T2). Their are two textfields and submit button in T2 as shown:
xtype: 'form',
title: 'Search',
id:'searchref',
items: [
{
...
0
votes
0answers
16 views
Itemclick event listener not getting fired in dataview
I am trying to provide a link to item(Reference 2 here) in table of dataview.Here is my dataview:
xtype:'dataview',
loadMask: false,
store: 'TabStore',
itemSelector: 'table.someClass',
tpl: ...
2
votes
0answers
44 views
ExtJS and Complex Save Operations
ExtJS 4.1
Given the overall disappointing functionality of saving association-heavy models, I have all but ditched model associations in my application and rely retrieving associated data myself. ...
0
votes
1answer
29 views
Why Menu items are not coming in IE10 using Extjs 4.1?
I have done application using ExtJs 4, contains feature menu. Menu items are showing nicely in all browser like IE9, Firefox, Chrome and Safari. But issue is coming when launch the same app in IE10 ...
3
votes
1answer
22 views
Extjs rowediting change time format after save
this is my code
text : "Entrance Time",
dataIndex : "entrance_time",
id : "cl_absence_entrance_time",
editor : {
xtype : "timefield",
...
0
votes
1answer
36 views
Move an element to next line using CSS, if it doesn't fit in the available area width
I have a View created using ExtJS, composed of a Autocompleting Textbox (bound to a store) and a custom templated DataView (again, bound to another store). And the view looks like below.
Here's how ...
1
vote
1answer
58 views
Extjs - Combo with autocomplete: two types of values
I'm trying to add new criteria to an Extjs combo autocomplete. When user enters a term in the text field, he should get a suggestions, either a student's name, or a subject. I did successfully ...
2
votes
1answer
41 views
Extjs - Combo with Templates to Display Multiple Values
I am working on Extjs 4.1. I did implement an autocomplete feature for the text box. I'm now able to search for student's first or last name by entering a term, for example: Mat, and the result in ...
2
votes
1answer
51 views
ExtJS Application Event Woes
EXTJS 4.1
I have run into a bit of a conundrum and would love to hear some other developers input on this scenario regarding ExtJS events and controller methods. I understand this topic has been ...
1
vote
1answer
14 views
Ext.data.DataProxy load event extjs4
I trying to update code from extjs2 to extjs4. But I have a some problem with load event in Ext.data.DataProxy.
Ext.define('App.data.DwrProxy', {
extend: 'Ext.data.DataProxy',
...
0
votes
1answer
46 views
How to change the web URL for each page in ExtJs?
I have done application using EXtjs 4. Application contains many view screens like Login page, Dashboard. home etc, for to access project local URL is file:///E:/MyWeb/Web/index.html . once i visited ...
3
votes
1answer
47 views
Query to search in multiple tables + Specify the returned value
My original query is taking a term from text field and start searching for it in two columns of one table [in order in create an autocomplete]
$query = $_GET['query'];
$sql ="SELECT f_name, ...
1
vote
1answer
27 views
I want to type <enter> in expanded combo box, and it should set empty value
Repro steps:
Go to http://docs.sencha.com/extjs/4.2.0/extjs-build/examples/form/xml-form.html
Click on trigger on State combo box field.
Type enter key.
Expected result: Value should remain empty.
...
0
votes
1answer
23 views
window does not close with close() method
Very strange problem but still do not understand why.
I have a grid and on ColumnDblClick i open a window.
Window works fine, submit data but when try to close window, it does not close.
saveRefresh ...
-2
votes
0answers
23 views
EXTJS change chart color on select of color picker [closed]
Ext.create('Ext.form.field.Picker', {
renderTo: Ext.getBody(),
id :'colorpicker',
createPicker: function() {
return Ext.create('Ext.picker.Color', {
resizable :true,
...
0
votes
0answers
18 views
ExtJS4 pagetoolbar doesn't display columns
I have an extjs view that I used to shows data that I get it from store
every thing work correctly date are recuperated successfully from store, but I have a problem to display it when I use
extend: ...
1
vote
2answers
60 views
extend messagebox in extjs 4
i created a new view class that extends ext.window.messagebox
but when i try to show it, it gives me an error :
Uncaught TypeError: Cannot call method 'setVisible' of null
my code :
...
1
vote
0answers
22 views
How to make a svg element (e.g. rectangle) scrollIntoView?
I have a svg in graph panel. All nodes in the svg are listed in another panel. I hope that by clicking the node in node list, svg can scroll to that node. Each node is a rectangle. But I found that ...
1
vote
2answers
51 views
slide a panel over the content
I have a menu(panel) and when I expand a collapsible menu within a layout it compresses the content of the panel next to it. How to expand it over the content? Here my menu code.
...
2
votes
1answer
31 views
sending http request don't work correctly
i have an extjs 4 form and i'm sending information to save it on data base i'm using spring security and spring mvc
so in my extjs form in submit function i use this url
method:'POST',
url: ...
1
vote
1answer
63 views
Sencha touch 2 Event listeners in Ext.Define
I was reading the sencha docs about Event handling and the listeners config.
In the documentation of the listener config I found this note :
Note: It is bad practice to specify a listener's ...
1
vote
0answers
43 views
extjs 4 association has many nested json
I have a form where there are several textfield and a grid. I would like to load all together at once. but I can not.
In my controller i have this method for receive data from server:
...
1
vote
0answers
112 views
How to customise extjs remote extensible calendar example with MVC application?
I have downloaded 'extensible-1.6.0-b1', I'm trying to understand the remote example to customise it with my application. I'm coding with extjs 4.0.7.
I want to know how to intgrate the example in mvc ...
1
vote
2answers
26 views
To select similar records from grid1(account) and grid2(group) simultaneously
I want to select similar records from grid1(account) and grid2(group) simultaneously.
Scenario :
For example say that if group 1 has account A and B and group 2 has account C,D and E.
A user ...
1
vote
1answer
46 views
prevent window from overlapping other visible windows
I'm dealing with a panel that have several windows inside it.
Is there a way for the windows to not overlap each other when they are re-positioned by the user?
What class/es should I work on?
Here ...
1
vote
1answer
108 views
ExtJs exceptions immediately break all ExtJs components on a page
If you've ever worked with ExtJs, you've probably run into the nefarious "Cannot read property 'dom' of null" exception. For me, it usually happens inside doInsert (the last of 14 stacks in the outer ...
0
votes
2answers
62 views
ExtJs: Ext.grid.Panel: Grid refreshes automatically and becomes blank
I am using a Grid to display data on a modal window.
It has two columns, 1. Label 2. TextField
The problem I am facing is whenever I enter anything in the textfield and lose focus from that ...
0
votes
1answer
55 views
ExtJs: Store populated by Grid comes up as blank
I am using an ArrayStore and filling it up by adding model records.
This store is associated with a data grid.
Now the arraystore object is getting filled perfectly fine but the data is not coming ...
0
votes
0answers
28 views
extjs make panel just big enough for all it contains
Ext JS 4.2
I want to create a window so that it is just big enough for everything it contains.
I don't want to speify width and height, I want ExtJs to figure that out for me.
How can it be done?
0
votes
2answers
40 views
extjs scroll's grid stop working
I´ve spent a couple of days dealing with an issue about grids' vertical scroll. Scrolls just stop working under some unknown conditions, I mean, it is not deterministic I think.
My application has ...
2
votes
2answers
103 views
ExtJS4: TreePanel Store is loading the json File again and again by Itemclick
I have a json which has 3 main-menupoints. In the first menupoint, there is one submenu, so the menupoint 1 is no 'leaf'. When I click at the folder Symbol, the whole menu (the whole json file) is ...
1
vote
0answers
24 views
Ext.draw.Sprite listener not firing
Scenario: I have 2 circle sprites in a draw surface and I want to make them bigger when user hovers over them.
Problem: The 'mouseover' event doesn't fire! Any ideas why?
Example: ...
1
vote
0answers
24 views
Cakephp different classes for requests
I have an application in Cakephp. In my front-end, it only responses for one request and I have used usual CakeRequest() class, and in my back-end, as far as using extjs, I have defined another ...


