The April 2012 release of the popular JavaScript framework Ext JS.

learn more… | top users | synonyms

1
vote
1answer
172 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 ...
0
votes
0answers
26 views

layout failed error in extjs4.1

I am trying to add view using alias name but am getting layout failed error .I will post the code below can anybody tell what is problem how to fix it This is my app.js Ext.application({ ...
0
votes
0answers
13 views

Render a template column in multiple columns

I have a grid panel with template column which is rendering the data of config name. Now my view is like below (ref screenshot) but i want to render it in multiple columns i.e, suppose if i have 6 ...
0
votes
1answer
118 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
0answers
172 views

Customizing ext.grid.panel header template

I want to set xtemplate for header of Ext.grid.panel. I tried: Ext.define('FrontEnd.view.viewer.controls.ContractPrintFormList', { extend: 'Ext.grid.Panel', alias: 'widget.contractprintformlist', ...
0
votes
0answers
245 views

Checking Ext.selection.CheckboxModel checkbox in grid panel is not appearing checked in extjs4?

I have set selModel to Ext.selection.CheckboxModel ({checkOnly:true}) for my grid of type Ext.grid.Panel. Now when I check any checkbox it is not appearing checked although the select and deselect ...
0
votes
2answers
145 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
0answers
94 views

Extjs Grid Grouping - setting default header/value

On the following grid grouping example. How can I display The first group as (0 Countries), if no data is returned for the first record. Currently, if there are no records, the first group does not ...
0
votes
1answer
50 views

Modify Gridpanel columns

How can I modify my columns in my gridpanel? Initially, I create my gridpanel with empty columns, since they will be added dynamically later. Ext.define( 'My.grid.Panel', { extend : ...
0
votes
2answers
91 views

How to pass Object as a parameter in Javascript

I want to pass Object in function. Here is my code var hyperLinkObj = new Object(); hyperLinkObj.path="abc"; hyperLinkObj.text="abctext"; '<li><a href="#" ...
0
votes
0answers
44 views

How to render the dataview inside a accordion

I want to show the list of fields in west region using accordion layout. That fileds should be displayed as icon and widget name. For this i have created a dataview which displays icon and name from ...
0
votes
1answer
63 views

Develop Application using extjs [closed]

Recently my company asked me to gather knowledge in EXTJS. I have seen a lot of examples from Sencha But, when I want to develop applications using extjs what should i do? Now I want to dive into ...
1
vote
1answer
289 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 ...
0
votes
0answers
95 views

extjs4 : How to reset item selector in combobox ?

I am using extjs 4.1.1a for developing some application. I had a form consisting of two combo-boxes and an item-selector. Based on the value selected in first combo-box , the itemselector will load ...
2
votes
1answer
69 views

Using expand/collapsed on a maximized window work only once

I have a window which I maximize after it is shown. Now my customer needs to minimize/maximize it so I added the minimize/maximize tools like so tools:[{ type: 'minimize', handler: ...
1
vote
0answers
52 views

parsing error in xml Cannot call method 'on' of undefined

I am trying to parse xml .I am getting error Cannot call method 'on' of undefined.can anybody tell what is problem .How to fix it? <?xml version="1.0" encoding="windows-1250"?> <users> ...
2
votes
1answer
479 views

Grid doesn't change even after reloading store while filtering

I want a grid that will change or reload after delete any row and retrieve those rows that have same member id. For this, I add filter. Again I callback store with filter after delete any row. My ...
0
votes
0answers
5 views

How to fire onBeforeStartDrag while using plugins

I'm using a tree panel which uses 'treeviewdragdrop' plugin. My tree is rendering with list of widgets.(ex: formpanel, grid etc.) in west region, and a panel is rendering in center region. User ...
0
votes
1answer
148 views

Get selected file names in Dataview (extjs)

this.items[0].tpl = Ext.create('Ext.XTemplate', '{[this.tempValue()]}', '<tpl for=".">', '<tpl if="this.temp != title">', '<h3 ...
0
votes
1answer
34 views

How to parse xml file in sencha and get the tag value

can anybody tell How to parse xml file in sencha and get the tag value Thanks
1
vote
1answer
324 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
120 views

Extjs 4 - cellEditor plugin lost after calling gridView.reconfigure(store, fields)

we are using Extjs 4.1.1 in our .Net MVC 4.0 project. Here we have used Extjs grid. We are fetching columns information from server side. and adding columns in grid dynamically, after that we just ...
0
votes
0answers
149 views

extjs 4 iframe error : Not allowed to load local resource

I have panel with some fields.Based on the entries given by user an pdf file is generated in server. after creation of pdf file its url is given back in ajax response. in client side, using iframe i ...
0
votes
0answers
21 views

Dropping a panel inside a div in ext4.1

I have a requirement where i should create a data view with some nested divs. '<tpl>', '<div class='firstdiv' height:30 width:30 ></div>', '<div ...
0
votes
0answers
68 views

ExtJS 4.1 - All js source in one file with store model controller and views. Works in FF but fails in IE and Chrome

ExtJS 4.1 - Do we have to have separate js files. I have created an application and have all the js code in each individual jsp. It works fine in firefox but does not work in chrome or IE. I am using ...
2
votes
1answer
100 views

Change the style of a grid row when checkcolumn is checked in Extjs4

I have a grid with a checkcolumn. I want to be able to change the style of a given row of checkbox on that row is checked. Right now I have this: listeners: { checkchange: function ...
0
votes
2answers
130 views

ExtJs root node

What is the root property value if I get a Json like that: { "status": { "status": 0, "msg": "Ok", "protocolversion": "extjs.json" }, "value": { "table": [ ...
0
votes
1answer
55 views

In ExtJS 4 Why column rendere is not working for Objects?

I am trying to use renderer for a column inside grid. Here is the json data { "success": true, "products": [{ "myfield": [30, 50] }] } Here is the code for renderer for ...
0
votes
0answers
72 views

how to download byte data (pdf) response given by server in extjs4.1

i have some fields in panel. am sending user entries to the server using ajax request. In server side am using php to generate pdf[using tcpdf] file based on the entries made by user. below is the ...
0
votes
0answers
56 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
1answer
459 views

How to set dynamic Data for a particular column in extjs 4.1 Grid

I am displaying 2 columns for a Grid lets say "1Yr Data" and "2Yr Data" Grid Has a toolbar with combobox with option [1Yr. 2Yr] Now when I will change the combo want to change the values of that ...
0
votes
1answer
72 views

Validating if the Ext.grid.panel is empty

I am trying to create a grid panel, that should highlight the grid in red, (as it happens when the validations fail on other components,) when the grid is empty. Is there a simple solution for this?
0
votes
1answer
92 views

Ext.draw.Component gradient not displaying in IE

I can't be the only person with this problem, but my searches have left me lost and confused. I have a custom Ext.draw.Component that uses a gradient fill. My understanding is that older browsers ...
1
vote
1answer
125 views

Forward to jsp from java script method not working for browser

I am using ExtJs 4.2. In my java application I am using the ExtJS calendar (I am using Eclipse Indigo IDE for developement) in one of my JSP. Now I am getting a pop up to save the event when I click ...
0
votes
2answers
68 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 ...
0
votes
0answers
250 views

How to Disable or hide checkbox for specific rows Grid with CheckboxModel

I have a grid with checkboxmodel and I want to disable someof the checkboxes on certern condition. Dont want to use renderer to overirde the DOM element. Want to do something like this..... ...
1
vote
1answer
191 views

How to set selected row in default when grid load using checkboxmodel

Here is the details: http://www.sencha.com/forum/showthread.php?194117-how-set-selected-row-in-default-when-load-gridpanel-using-checkbox-selection-model Thanks in advance!!!
1
vote
0answers
34 views

Stop double click action on a action-column

I've a grid panel in extJS 4.1.1. With other columns I've an actioncolumn(xtype:'actioncolumn'). I include a handler with that column. When I click it , it works fine and open a new window with many ...
0
votes
0answers
21 views

commit() reset the grid grouping in Ext js 4

I have an editable grid with groupings that are all collapsed by default. The issue is that every time I used the .commit() to remove the dirty flag on one row, the grouping that were expanded get ...
1
vote
1answer
205 views

How to include ext-js calendar in jsp?

I am new to EXT JS environment. I am working on a dynamic java project in eclipse indigo where i want to use ext-js calendar in one of my jsp.I saw the EXT_JS calendar demo from downloaded 'ext-4.1.1' ...
4
votes
1answer
228 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
126 views

Extjs 4.1.1 How to align the toolbar items one below the others?

I am using Extjs 4.1.1 I have panel on which I have added toolbar at bottom side. This toolbar has 3 items, I want to aling first item in first row, and rest two items in next row, i.e. one below ...
0
votes
0answers
17 views

Show panel at DROP position

I'm using a panel with border layout in which west region contains the tree and center region contains the panel which is extending from a panel with column layout. The tree is loading data from json ...
2
votes
0answers
28 views

Function calling by double clicking image

I retrieve images against specific id and display as data view using ExtJS 4. Now I need to call function by dbl clicking the image. Ext.define('${pkgName}.v02x003001.SV02X00300102' , { extend ...
0
votes
1answer
256 views

ext js 4 rowediting how to add custom attributes for selenium testing id purposes in a grid

I have an ext js grid that uses the plugin row editing. I need to write selenium test scripts and would like to assign static ids or custom attributes to the row editing form fields and update and ...
1
vote
2answers
154 views

Panel afterRender using loader config

I have a panel which I create and it has the loader config in it to load a jsp page into it. The jsp has markup in it which I need to attach a listener to in my ext controller. The issue I'm having is ...
0
votes
1answer
80 views

How to Catch a script error in Extjs?

I have one application having a tab panel, where we can write Extjs code, and By clciking on the button the o/p of the code should display in the preview. For this I have a iFrame and am updating the ...
0
votes
0answers
40 views

is it possible to call one application from another application in extjs

can anybody tell is it possible to call extjs4.1application from another extjs4.1 application in extjs.If it is possible whether app.js will overwrite(conflict) or not whether it will run properly? ...
0
votes
1answer
87 views

ExtJs tab panel random disappear

I've an Ext.tab.Panel that contain in each tab some object (that are Ext.panel.Panel). When I try to switch between tabs the items contained in the tab random disappear, like in the picture. Is it ...
0
votes
1answer
53 views

Jsonp proxy Exampple, send request to our own site instead of sencha site

I'm designing a jsonp example where I want to make a call to some different domain, so I'm making a call to http://www.walkingtree.in/forums/topics-browse-remote.php, instead of ...

1 2 3 4 5 23