3
votes
1answer
180 views

Should I extend Ext.app.Application class in Sencha Touch 2?

Should I extend Ext.app.Application class in Sencha Touch 2? I have functionality which is common for several applications, for example: do something for all stores configured in the application. If ...
1
vote
2answers
629 views

Issue with inheritance

I have created 3 classes as following Ext.mine.TextParent - Inherting from Textfield Ext.mine.child.TextChildA - Inherting from Ext.mine.TextParent Ext.mine.child.TextChildB - Inherting from ...
0
votes
0answers
293 views

extjs Issue extending Ext.grid.header.Container

I am trying to create remote multi sort. fields are separated by comma. MINUS stands for DESC EXAMPLE localhost:8080/api/?sort=id,-externalId&page=1&start=0&limit=200 headerclick works ...
0
votes
1answer
1k views

Extended ExtJS object attributes in button handler

I'm having real difficulty getting access to a variable that is an attribute of an extended FromPanel from within a button handler on the form. If anyone could offer assistance I'd greatly appreciate ...
0
votes
1answer
2k views

ExtJS button handling

What is the best way to add a function to a button? ( specfically scoped ) Dirty example: form.Login= function(config){ if ( typeof config !== 'object' ) { config = {}; } var tbarBottom = { ...
4
votes
2answers
1k views

jQuery deep copy with Ext JS?

I've tried and surprised how could not I do with ExtJS. Let me explain with a code block. In jQuery console.clear(); var a = { b: 5, c: 4, o: { l: 2, p: 2 } } var b ...
0
votes
1answer
1k views

ExtJS extended chart

ExtJS has Bar, Cartesian, Column, Line, Pie, Charts. They are very simple and generic based on Flash component http://yui.yahooapis.com/2.8.2/build/charts/assets/charts.swf. Is it other flash ...
0
votes
3answers
3k views

Using custom attributes in ExtJS Component

My application has been growing for the last year or so and I have finally started to split out common components by extending existing ones. I've found this to be really helpful - increasing speed of ...
0
votes
1answer
295 views

reuse javascript codes(reduce the Duplicate codes)

When I make some components in my web page,I found there a so many duplicate codes,for example,in my page I want to make two charts. THe biggest difference of them is the data store and the ...
2
votes
2answers
4k views

Extjs How to initialize new elements when extending - without losing scope

I am trying to get better at extending the classes of Extjs, and my evolvement have lead me to this problem: I have extended an Ext.Panel and I want my extension to have a bottom toolbar with one ...
0
votes
2answers
3k views

ExtJS problem with Extended Window, shows in FF not in IE

I get this irritating error message in IE, 'Events is empty or not an object'. This is my Extended window: windowKandidaatInfo = Ext.extend(Ext.Window, { id: 'windowKandidaatInfo', title: ...
8
votes
3answers
7k views

Private members when extending a class using ExtJS

I have done some research on the ExtJS forum regarding private methods and fields inside a extended class, and I couldn't find any real answer to this. And when I say an extended class I mean ...
16
votes
6answers
20k views

Better way to call superclass method in ExtJS

All the ExtJS documentation and examples I have read suggest calling superclass methods like this: MyApp.MyPanel = Ext.extend(Ext.Panel, { initComponent: function() { // do something MyPanel ...