Application architecture that follows an MVC-like pattern, with Models and Controllers being introduced for the first time in ExtJS.

learn more… | top users | synonyms

0
votes
0answers
11 views

Lazyload ExtJS TreeStore for given API

I try to display a tree in ExtJS by accessing following JSON REST API.. The request has to look like this: serverpath/songtree?nodeID=... a nodeID of -1 will return the childs of root Node. The ...
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 ...
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
46 views

How to set combox value on form from grid with nested data? Extjs 4.2 Mvc

I have a grid that pops up an edit form with combobox. Before I show the view I load the combobox store. Then I set the values of the form using form.loadRecord(record);. This loads the primary ...
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 ...
0
votes
1answer
27 views

How to make a chart dynamic using click event

I have a barChart whose value i am sending to the Servlet,and on the basis of each value i have to populate some data on the radarChart.The data is going to the Servlet and the radarChart is also ...
0
votes
0answers
30 views

How to get combobox in edit view from list view using associated data working in Extjs 4.2 mvc

Using Extjs 4.2 MVC pattern I think this is a fairly common scenario but having really hard time getting it working. App -- user is displayed a grid view, user clicks on row edit view pops up, ...
1
vote
0answers
57 views

Understanding how stores models are referenced/loade/instantiated in Extjs 4.2 MVC pattern

Using Extjs 4.2 I have read many docs,google,forums trying to understand how components load and where to place them such as stores, models, ect but still confused. This is an example I am trying to ...
1
vote
1answer
42 views

how to change a chart with a click event using ExtJs mvc

I create 2 charts(bar column and radar) in one page using ExtJs mvc. I want that when I will click on the column of a chart the radar will show the change.. I wrote the function for click in ...
0
votes
1answer
18 views

XML nested nodes to array in Extjs 4

I have the following structure for a blog: <channel> <item> <title>title of post</title> (...) <gallery folder="path_to_gallery"> ...
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 ...
1
vote
1answer
25 views

How to send parameter to a servlet using Ajax Call

i have a controller in my ExtJs application ,from where i have to make an Ajax call to a servlet and also have to send some parameters to that servlet also.i am able to call the servlet properly but i ...
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 : ...
2
votes
0answers
53 views

Cant call a servlet from ExtJs controller

i have a controller in extjs application, from where i have to call a servlet. But i am unable to call that servlet from controller here is my controller code ..... when i am running the application ...
1
vote
1answer
25 views

Save grid move and resize value into state and session

I want to save state values into database not in cookies. Whenever particular page load again, i wanted it to load data from state into grid. For example, If user drag and drop column, position and ...
2
votes
2answers
102 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
1answer
31 views

How to call a java servlet using ajax from controller

I create a bar column chart.. in my controller I want to call a servlet.. In my function i take a variable which holds the instacne of store using getStore('StoreName').. now how can I call the ...
0
votes
0answers
42 views

Simultaneous selection of similar records from two grids in two tab panels?

*I want to select similar records from grid1 and grid2 at the same time record is selected in grid1. * For example say that if emp_id 1 has dept_id A and B and emp_id 2 has dept_id C,D and E. A ...
2
votes
1answer
33 views

How to call a method from controller in extjs

I have a bar column chart.. I want when I click on the column then the value of it will be shown and call another function where i will call the database thru ajax. When I click on the column the ...
1
vote
1answer
32 views

How to to call a function from a function in ExtJs

i have a controller in my application in extjs. i have a method in that controller ,that is doing some action .Now i have to call another method from that method.But when i am doing that the previous ...
2
votes
0answers
33 views

How to get previous page reference/alias in extjs4

I am working in extjs4 MVC.And here I am get a stuck at point where I want to display page , on that page suppose there is link.And after clicking on link of first view I am going to redirected to ...
2
votes
1answer
52 views

how to a call listener of view from controller in extjs

I made a bar column chart using ExtJs mvc. Now in the controller I want to add a function for click event to catch the selected value of the column. Here is my controller code: ...
2
votes
4answers
95 views

how to call a listener of view from controller in Extjs

i have a bar chart in my view where i have a listener which is retrieving the bar column items ,now i have to call that listener from controller here is my code ... This is the listener in my view.. ...
2
votes
1answer
29 views

How to add a click event in a Bar Chart

I have a bar chart in my View.I want to add a click event in that bar chart i.e when i click on any of the bar of that bar column the corresponding information that showing on the bar should be in an ...
0
votes
0answers
47 views

Retrieve value of each bar in bar column chart from controller in extjs

I have a bar column chart in my application,i want to retrieve value of each bar from my controller using an alert when i click on each column.here is my bar column code .. var baseColor = ...
2
votes
1answer
40 views

Interaction between two or more charts in ExtJS

I have 2 charts in one container, one is a Bar column chart and another is a radar chart. Now I want to make interaction between the charts, like when I click on one of the column of the barcolumn ...
1
vote
0answers
27 views

how to recognize view elements from controller in Extjs

I have a view file in my MVC of Extjs where i have a radarChart so now i want to call two fields i.e xaxis and yaxis of radarChart in the controller.here is my code ...
0
votes
3answers
93 views

Extjs4 MVC best Ide [closed]

i start to create a new very big application using extjs4.2 and Java. For the project where i work i use eclipse juno SR2. I want to know if there is a plugin or another ide that is helpful for the ...
1
vote
1answer
42 views

override initComponent() method

I want to override initComponent( ) method of Ext.grid.column.Column class. But some how it executes all those lines. Basically I want to remove listeners from element and wants to assign it to other ...
0
votes
1answer
51 views

How to show Image response to view in EXTJS 4?

I have web service in my controller that returns me a image in following format. I want to know that how i load this image response in my view. I use EXTJS 4 MVC architecture.I dont know this image is ...
0
votes
1answer
43 views

How to handle dom events in controller in extjs4?

I am working in Extjs4 I am getting stuck at a point how to catch event on hyperlink in extjs4.I worked on it but not get solved. Here is my code 1) Here is my view code :-- ...
1
vote
1answer
43 views

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 ...
0
votes
0answers
180 views

How to set items dynamically within menu in extjs?

by clicking of button showing menu. once we select the menu need to change items dynamically in other menu. I have not defined id's to any component of this view, because if i given id's to component ...
0
votes
1answer
39 views

Enable and disable a textfield so that user has one textfield to input the data in extjs

To enable or disable a textfield so that user can have only one textfield enabled to input data. Explanation : If their are two textfields : textfield1, textfield2. If user wishes to ...
0
votes
0answers
27 views

Explaination of automatically generated Getters of extJS MSVC

Stores, Models, Controllers and Views configurations automatically creates 'getters'. These getter have a specific behavior, In case of Views & Models, these getter return reference While in ...
1
vote
2answers
187 views

EXT JS 4 use an model association to render a grid display value

Details I have a grid used to display invoice information. The grid is populated using the Invoice store, the Invoice store uses the Invoice model, the Invoice model has a "has one" association with ...
1
vote
1answer
157 views

How to display associated json data in grid in extjs4?

I am working in extjs4 mvc where I am getting stuck at a point. Actually I want to display associated json data in grid in extjs4. I tried and searched a lot but not yet get problem solved. Here is ...
1
vote
1answer
57 views

Need to allow single entry in extjs textfield

I am developing a form in extjs 4.0.7 I need to change the format of money like comma and dot as thousand separator and decimal fraction. For that I need to insert only one symbol in a textfield, In ...
0
votes
1answer
113 views

Extjs 4.1 tree loading

I have created a extjs tree with the json response i.e created from the php function. I am fetching the complete data at once and convert to json and then send the response to extjs . But fetching ...
0
votes
1answer
176 views

Flow of control between ExtJs MVC and Spring MVC

I had gone through a lot of docs and blogs but still not clear of how flow happens in ExtJs MVC (with JSON data). Below are the doubts which I have. What is the use of Extjs Model. I know that it ...
0
votes
2answers
134 views

Extjs 4 dateField getValue

I feel should be easy but still does not work, "toDate.getValue();" does not return Ext.date object. I cannot format date. Error: format is undefined. Below is my form field. var toDate = new ...
1
vote
1answer
245 views

How to achieve Live Search/Filtering on Multiple Fields in the Grid using Ext.Js?

I have done live search on grid. it is searching based on which column i mentioned filter code. But i need to filter grid records based on multiple column search. In below code only searches name ...
2
votes
2answers
353 views

Call Controller method from view in EXTJS 4 MVC

I am new to EXTJS 4 MVC architecture . I have one function in controller which i want to call from my view. How can i call that function?
1
vote
1answer
288 views

How to change header template in extjs 4 grid panel

I want to change default header template of grid. I do not know what config or property to set. I tried "renderTpl" , "tpl" , "metaRowTpl" but these property related to row in grid, where i want to ...
0
votes
0answers
53 views

how to extend Ext.grid.header.container class

I have 10 grids in my project where I want to define one extra header, and that header will open menu on double click, single click will return null. This functionality works fine in my 3.4 version. ...
0
votes
2answers
64 views

How to get unique/Distinct data from store?

i am using the extjs. i need to retrieve distinct data from store as per requirement. In my store contains single list not nested list in that have regions like AMERICAS , North Sea and SE Asia. these ...
4
votes
1answer
207 views

How to load controller dynamically on particular event call in extjs4?

I am working in extjs4.I am getting stuck at a point where I want to load controller dynamically in extjs4.I am using controllers this.getController() method to load controller dynamically. *When I am ...
0
votes
1answer
152 views

How to reload original store to grid in live-searc once my search text field is empty

I have done app using Extjs. I am showing grid records to user, here added feature of livesearch. by entering some text in the field of search field, filtering is happening very nicely based on ...
2
votes
1answer
225 views

Change the store api from controller in extjs

The below is my MyStore.js: Ext.define('MyApp.store.MyStore', { extend: 'Ext.data.Store', model: 'MyApp.model.Note', autoLoad: true, proxy: { type: 'ajax', api: { ...
0
votes
1answer
43 views

What is the syntax for assigning the plugins property in Extjs 4.1

What is the syntax for the plugin property in Ext.grid.Panel? If I comment out the plugins property in the code below, it works fine, but it produces an error if left in. this.grid = new ...

1 2 3 4 5 9