Questions tagged [extjs4.2]

Warning: only use this tag along with the generic extjs tag. Otherwise your question will not be seen by the many thousands following extjs

See for more information.

1554 questions
0
votes
1 answer

Extjs 4.2 CSS variable for active menu item color

Could it be that there is no definition for menu active item text color????? If there is it is not intuative. If there isnt, how can I define in my package using Sencha cmd?
AMember
  • 3,037
  • 2
  • 33
  • 64
0
votes
1 answer

Extjs 4.2 - gradient background for menus using sencha cmd

I would like to create a gradient background color using sencha cmd here is what I have tried : .#{$prefix}-menu-body{ @include background-image(linear-gradient(#47607E, #35475B)); } I have placed it under sass\src\menu\Menu.scss and run a…
AMember
  • 3,037
  • 2
  • 33
  • 64
0
votes
2 answers

Application works using ext-debug.js, fails using ext.js

I'm in a very strange situation, when I use ext-debug.js in my index.jsp file, my application works fine, but when I try to use the minified version of ext-debug.js which is ext.js, my application fails, I'm getting an "Uncaught TypeError: Cannot…
niceman
  • 161
  • 1
  • 3
  • 11
0
votes
1 answer

Extjs - How to get displayfields from itemselector?

The Extjs Itemselector component has methods like getValue, getSubmitData, getSubmitValue which will return the keys of the records that are selected. I am looking for a better way than taking the keys of the records selected from the component and…
Nohsib
  • 3,614
  • 14
  • 51
  • 63
0
votes
0 answers

saving data to session storage with Ext.data.ArrayStore

Could anyone give an example of storing array of model/objects recieved and parsed from Ajax Request in Ext.data.ArrayStore (session storage)? At the moment I am only able to store it separately in session storage. userModelProxyKey…
Alua K
  • 398
  • 1
  • 3
  • 18
0
votes
1 answer

Adding extjs4 application to codeigniter application

So I have a basic CodeIgniter application and a basic ExtJs 4 application: I want my ExtJs 4 application to be served up as one of the pages of my codeigniter application. I tried dumping my whole extjs4 project inside of the root directory under…
Bill Garrison
  • 2,226
  • 3
  • 34
  • 75
0
votes
1 answer

Ext Js 4.2 Using ext-all.js instead of ext-debug.js in my index.jsp breaks my application

Using anything but the ext-debug.js file in my index.jsp is breaking my Ext Js 4.2 application. I don't understand why this is happening, because, as I read, the ext-all.js file should be used on the production version of my application. It…
niceman
  • 161
  • 1
  • 3
  • 11
0
votes
1 answer

ExtJs change event wont fire on the change of the date time

I have a handler in a controller which fires for some of the elements but not for date time elements, I have no idea how to make them work. Here is the controller definition: this.control({ 'documentmailboxlist [itemId=filtersPanel] >…
Sangoku
  • 1,588
  • 2
  • 21
  • 50
0
votes
1 answer

is it possible to parse json response without root object in extjs4.1

is it possible to parse json response without root object in extjs4.1.If yes can anybody tell how to do Thanks
mohan
  • 13,035
  • 29
  • 108
  • 178
0
votes
1 answer

Menu is falling behind the panel in extjs?

I have a start menu panel just like in Sencha Desktop example. I have multiple menus in the panel. When click on menuitem the sub menu panel is getting rendered, but while clicking on other area the sub menu panel is hiding behind the main…
Anand Singh
  • 317
  • 5
  • 8
  • 22
0
votes
1 answer

Alternate class name in controller

I just realized that alternate class names for controllers in ExtJS 4.2.1 don't work the way I expected them to: Ext.define('AppName.controller.subnamespace.Controller1', { extend: 'Ext.app.Controller', alternateClassName: 'AppName.Ctrl1', …
suamikim
  • 5,350
  • 9
  • 40
  • 75
0
votes
1 answer

Is it possible create one js file (like build version ) of extjs application without app.js

Can anybody tell me if it is possible to create one js file (like build version ) of extjs application without app.js? If I include the js application, will it work in another application? If not, and I build the application using app.js, Is it…
mohan
  • 13,035
  • 29
  • 108
  • 178
0
votes
2 answers

Render list-item (li) from an xTemplate inside a ul container in extjs

In an Extjs dataview, my itemTpl is an XTemplate for list items. How can I wrap my template output in a
    tag so the list displays appropriately? My current template: Ext.create('Ext.XTemplate', '', '
    Brett
    • 2,775
    • 4
    • 27
    • 32
    0
    votes
    2 answers

    ExtJs 4.2 :: difference between "record" and "raw" in GRID

    When I was playing with associations in ExtJs 4.2 MVC, I came across a problem for which I came up with a solution. Problem Stmt: I have a grid page popullated with Model/Store : Issue. On click of the record on the grid, one should be able to see…
    MBK
    • 307
    • 6
    • 23
    0
    votes
    1 answer

    ExtJS 4.2.x: Tree bound to grid

    I'm having some problems binding selected data from a treepanel to a gridpanel. When I select a node that is a leaf in the tree, I want its children to load in the bound grid below. My solution to it is to load the entire store at once, then filter…
    GauteR
    • 360
    • 7
    • 28