intro
24 Feb 2012, 2:57 AM
Hi, i developer some stuff in extjs3 and before i use this code..
Novosti = Ext.extend(NovostiUi, {
initComponent: function () {
News.superclass.initComponent.call(this);
grid = this.Newsgrid;
and now
Ext.define('Odv.view.Bilj', {
extend: 'Odv.view.ui.Bilj',
initComponent: function() {
var me = this;
me.callParent(arguments);
grid= this.Newsgrid;
can someone explain how can i find grid..becuse when i use
grid = this.Newsgrid;
grid alert is empty.
Sincerely
Vladimir
Novosti = Ext.extend(NovostiUi, {
initComponent: function () {
News.superclass.initComponent.call(this);
grid = this.Newsgrid;
and now
Ext.define('Odv.view.Bilj', {
extend: 'Odv.view.ui.Bilj',
initComponent: function() {
var me = this;
me.callParent(arguments);
grid= this.Newsgrid;
can someone explain how can i find grid..becuse when i use
grid = this.Newsgrid;
grid alert is empty.
Sincerely
Vladimir