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 ...
0
votes
0answers
4 views
Error when making a Path sprite in ExtJS
Here's the code I'm working with. This simple function was made just to test that I was doing it correctly. Evidently, I'm not. For a reason that escapes me, unless I comment out this first function I ...
0
votes
1answer
8 views
Button text color in Extjs 4
this is my code but it doesn't work. I'm using Exjts 4 and i want to change the button text color.
{
xtype: 'button',
text: 'My Button',
style:{
color: 'red'
}
}
1
vote
1answer
12 views
Extjs - Best way to display data
I using extjs and i want display my dynamic data like bellow
I use xtype: displayfield but i think it's not well and i can't use it to make like my picture
items: [
{
xtype: ...
2
votes
0answers
8 views
TypeError object function - ExtJS
I know by advance that my question will be a stupid one, but I just started JS few weeks ago and I'm not enough familiar with some concepts.
I'm trying to add a paging toolbar to my grid.
I wasn't ...
1
vote
2answers
25 views
Extjs 4.2: How to send parameters properly in a Ext.Ajax.Request POST
I have to do a POST from my ExtJs script in order to delete something from my DB:
Ext.Ajax.request({
url: 'deleteRole.html',
method: 'POST',
headers: {'Content-Type': ...
1
vote
1answer
14 views
What is the difference between “activate” and “show” events on Ext.panel.Panel in Extjs 4?
Various Ext components (like Panel and Container) have the following events documented:
"show" - Fires after the component is shown when calling the show method.
"activate" - Fires after a Component ...
2
votes
2answers
30 views
Change the color of summary row of grid in extjs
I want to change the font as well as background color of the summary row of the grid.I have tried getting the summary row as :
var summaryRow = grid.view.el.down('tr.x-grid-row-summary');
Based ...
0
votes
0answers
19 views
How to run ExtJs code without using any server or locally
I am currently running my Extjs tasks in Xampp server by putting code in the Xampp server and by running the server.
Now I want to execute Extjs tasks/projects locally outside the server ( or ) ...
1
vote
0answers
25 views
Extjs store.sync error with multiple instance of same model
I have a problem with store.sync()
I use multiple form (multiple instance of same model in different tab) with the same model/store but with not all the fields of the model.
When i use store.sync ...
1
vote
1answer
23 views
Combobox query override
How to return with query value and current combobox name?
I have combobox with remote store.
{
xtype: 'combobox',
fieldLabel: 'Some label',
editable: false,
name: 'my_combo',
...
1
vote
2answers
18 views
Extjs, define scope of column's renderer function
I think that, bydefault renderer always refer to its calling object as scope. and we do not have to define anything but in my grid i have different behaviour.
I have to define rendere function ...
0
votes
0answers
9 views
Load Native Extjs 4 In Yii
I'm quite new to Yii. My website frontend i'm going to build with the yii framework, and for my backend i wanted to use the native ExtJS 4 framework (no, not the extension ExtJS4Yii or how it's ...
0
votes
0answers
9 views
Using Multiple Ext.app.Application instances
I want to use multiple instances of Ext.app.Application, mainly because Ext.app.Application supports a list of controllers. I tried to create a controller that extend from Ext.app.Application with a ...
1
vote
2answers
35 views
Extjs Grid - callback store variable into pagingtoolbar
I init store variable in 'initComponent' of gridpanel like
initComponent: function() {
var store = Ext.create('Ext.data.Store', {
model: 'MyDataObject',
...
1
vote
1answer
41 views
Ext Js App bloated with stores
My app (Ext JS 4.2.1) contains many grid panels, and also that many stores. When defining a store I use the storeId to match grid and store. Many of these stores are almost identical. A sample store ...
1
vote
1answer
36 views
fetching data from json and unable to display proper graph in extjs
I am unable to display graph in extjs after fetching values from .json file.
Please find the attached code.
chart.json
{ "graphobject":
[
{ 'name': 'abc', ...
1
vote
1answer
20 views
How to load json data on view fields in extjs4
i am working in extjs4. i have view as-
Ext.define('Balaee.view.qb.qbquestion.editWindow',
{extend:'Ext.form.Panel',
alias:'widget.editWindow',
autoScroll:true,
...
-1
votes
1answer
23 views
What is the use of Ext.loader.paths in extjs4.1 [closed]
Can anybody tell what is use of Ext.loader.paths How to use Ext.loader.paths in extjs .can anybody provide example
Thanks
0
votes
1answer
25 views
ExtJS 4 date in grid filtering delivers empty result
I try to filter an ExtJS4 grid by date.
I have two columns that I fill like this:
{header: 'Start Date', width: 80, dataIndex: 'startdate', filter: { type: 'date', dateFormat: 'Y-m-d'}},
{header: ...
0
votes
1answer
25 views
Extjs - Toolbar instead of title (enable option collapsible)
i have a Item like http://jsfiddle.net/eqNRg/
{
region: 'west',
title: 'Instead of toolbar',
collapsible: true,
width: 250,
tbar : [{
...
-1
votes
0answers
29 views
Fetch the content of csv file and display the same through sencha extjs
I want to fetch the graph values from CSV file, fetch the values and display the corresponding graph through EXTJS.
Can you please guide me with related example.
Thanks in Advance....
0
votes
0answers
9 views
How to customise to display nested json on gridview in extjs4
i am working in extjs4. i have combobox showinf categories. After selection of category,it is sending categoryId to server side. From server side all information related to that categoryId is get send ...
0
votes
2answers
16 views
ComboBox with anyMatch search in ExtJS
I have a ComboBox with a remote store with local filtering.
Instead of the default filtering, by the first characters like %query, I want to filter with the contains/anyMatch mode like %query%.
I ...
0
votes
1answer
16 views
EXTJS4: Combobox Store in View throws error
I have a normal Combobox in my view, and I want to load the store, but then I get an error in my Firebug:
TypeError: reader.read is not a function
result = ...
0
votes
0answers
25 views
Ext Js 4.2 saving a model with associations through save() (sending a POST request)
could anyone tell me why when I try to save a model SupplierData
Ext.define('...SupplierData', {
extend: 'Ext.data.Model',
fields: [
{name: 'supplierId', type: 'int'},
],
associations: ...
-1
votes
0answers
25 views
Blogger Layout/Template Designer like plugin in Javascript/ExtJS [closed]
I want design a template/layout designer in ExtJS which should have the functionality like that of the Google Blogger template designer.
Few fixed template having panels wherein the user will ...
1
vote
1answer
31 views
How to fetch values of dropdown box on click event in ExTJS
My task is to fetch different types of charts ,when i click from the drop down box.
Based on which graph i select from dropdown ,i need to display the same in JS file.
Currently i can display ...
2
votes
2answers
34 views
How to write handler of treeview in controller of extjs4
i am working in extjs4. i have treeview with checkbox as-
Ext.define('Balaee.view.qb.qbquestion.tree1', {
extend: 'Ext.tree.Panel',
title: 'Simple Tree',
id:'tree1',
alias : 'widget.tree1',
...
0
votes
1answer
35 views
Use Up and Down Arrow to Navigate Extjs Tree
I have an extjs tree panel (Ext.tree.Panel). I want to use up and down arrow to navigate the items and trigger the item click event.
Let me know how I could do this.
Thanks,
0
votes
0answers
6 views
Mocking data for extjs Direct calls
I build my ExtJs app using ExtDirect call (stores, forms or any action). The problem is that in order to code well you need your direct calls functional, which is hard to do it fast.
Is there any way ...
1
vote
1answer
21 views
How to Do Custom Autocomplete function for ext Combobox
I have an extjs combobox which has autocomplete enabled. Right now the matching is done by the starting of the list. I want to do a word matching in the full string rather than the start. For eg, if ...
0
votes
1answer
21 views
In extjs4 how to catch multiple checked tree nodes
i am working in extjs4. I have created treepanel view as-
i want to catch id's of selected tree nodes on click of submit button. So how to catch these multiple selected tree nodes in controller of ...
1
vote
2answers
38 views
EXTJS4: Ext.msg Box ist not shown, throws an error
I simply want to show a MessageBox. But I get an error: TypeError: Ext.Msg is not a function
My code in the controller:
..... Ext.MessageBox.show({
title:'Delete',
...
2
votes
3answers
52 views
Questionmark tooltip icon in fieldcorner
How can I display a small questionmark icon in one corner of a textfield that
reacts as a button
shows a tooltip when I hover over it
Can be applied to all fields
I don't want someone to do all ...
3
votes
2answers
53 views
Implementing a complex data structure in ExtJS forms
We have a client with a requirement of rather complex data-model. Meaning the data-model is not only quite huge (around 500-1000 fields, nested in many objects) it is also required to send and ...
0
votes
1answer
28 views
Extjs Combo - type text header and it will be focus to select
I have 'xtype: combe' like http://jsfiddle.net/KYRhC/
{
xtype : 'combo',
fieldLabel : 'Letter',
store : mySimpleStore,
displayField : 'name',
...
0
votes
1answer
38 views
EXTJS 4 nested json array data to grid panel
I'm new to ExtJS but I am unable find anyway to populate my grid with a simple JSON array of strings. My JSON looks like this:
{
...stuff...
"users": ["kevin","ryan", "david", "mark", "ed"]
...
0
votes
2answers
47 views
Using buffered store + infinite grid with dynamic data
The goal is to use buffered store for the dynamic data set.
The workflow is below:
Some data is already present on server.
Clients uses buffered store & infinite grid to handle the data.
When ...
0
votes
0answers
10 views
how to make multiselect to singleselect in extjs?
Take a look at this example. Here you can see multiselect field that allows user to select multiple rows by pressing CTRL key down.
I have tried to use the keyUp function to capture the CTRL key, ...
0
votes
1answer
25 views
Ext JS Combobox not loading first time
I am using an Ext JS combobox within a JSP. The first time I load the page, the combox box does not get displayed.
I see an error in my Firebug console that the associated store is not defined. ...
0
votes
0answers
14 views
extjs combo submit multi value to server
in my ror app
this is my form codeļ¼
var form = new Ext.form.Panel({
items: [
{
xtype : 'combo',
fieldLabel:'suppliers list',
listConfig : {
loadingText : 'loading',
...
0
votes
0answers
60 views
Display Previous page content on push view using Sencha Touch 2
I am using Tabpanel and one of my tab is Exhibiros, When i click on exhibitors, i show Exhibitor List, when i tap to the list view , i write function handler in Controller, and push panel(Exhibitor ...
0
votes
0answers
29 views
Extjs - dynamic setHeight Window on load function
I define a window like this
Ext.define('Ext.example', {
extend: 'Ext.window.Window',
title : 'example',
modal:true,
width:450,
height:100,
layout:'fit',
...
1
vote
0answers
16 views
EXTJS4: App is not loading when TreeView is embed
My App works fine, if the TreeView "TreeCreateMenu" is not embed. Since it is embed, the app stocks at the Browser-Web-Console at the Point from the etjs-directory "Trigger.js". But no error is ...
1
vote
1answer
17 views
Ext.menu.Menu (Context Menu) is displayed only once on right click - Ext JS 4.2.1
I have a tree grid and I am displaying a context menu on mouse right click.
I am creating the menu in the 'itemContextMenu' event of the tree grid view.
Problem is that the context menu gets ...
2
votes
1answer
30 views
Passing an object ID to an ExtJS window
I have a window with a tabpanel in which I layout a form (first tab) and data view (second tab). This window might be open from a grid (for example double click). These 2 tabs describe:
tab1: data ...
0
votes
0answers
26 views
Floating itemselector using Extjs 4.2
I am trying to insert Extjs 4.2 Itemselector example into my project.
The idea is to have a link on my html page that calls Itemselector window as a popup.
So I am calling a createProject() function ...
1
vote
1answer
52 views
Extjs - textarea enter event
I'm using textarea and I can't enter to break line.
xtype: 'textarea',
name:'mt',
fieldLabel: 'example',
labelWidth: 100,
width:100,
labelAlign : ...
1
vote
1answer
15 views
SVN merge with sencha 2.2 extjs 4.2.x
I have a big problem. I want to use SVN to work on the same project with my colleagues but i didn't success to implement it.
I have success to implement the repositery. So , when i update my files ans ...
1
vote
1answer
51 views
ExtJS combining records in a store which has the same field
Example XML file:
<BrowserInformation>
<Value>
<Year>2011</Year>
<Name>Firefox</Name>
<Count>4952</Count>
...




