Search Type: Posts; User: vpopa
Search: Search took 0.09 seconds.
-
7 May 2012 7:31 AM
Jump to post Thread: Grid Mousewheel Scrolling by vpopa
- Replies
- 6
- Views
- 1,770
REQUIRED INFORMATION Ext version tested:
Ext 4.1.0
Browser versions tested against:
FF10.0.4 (firebug 1.9.1 installed)
Description: -
2 Aug 2011 1:35 AM
- Replies
- 0
- Views
- 906
In ExtJs 3.4.0 if you run:
Ext.util.Format.capitalize("asdasdSADSADsa")
//prints "Asdasdsadsadsa"
In ExtJs 4.0.2a
Ext.util.Format.capitalize("asdasdSADSADsa")
//prints "AsdasdSADSADsa" -
22 Jul 2011 6:53 AM
- Replies
- 2
- Views
- 1,224
This is the way you add a Header to a Panel:
Ext.create('Ext.panel.Panel', {
renderTo: document.body,
dockedItems: [
{
xtype: 'header',
... -
21 Jul 2011 6:04 AM
Jump to post Thread: extend versus mixin by vpopa
- Replies
- 3
- Views
- 1,270
I've understand the mixins purpose. As there is no multiple inheritance, mixins are here to solve this problem.
My question is more specific to the example I've wrote.
I want a simple object... -
20 Jul 2011 6:04 AM
Jump to post Thread: extend versus mixin by vpopa
- Replies
- 3
- Views
- 1,270
I was trying ExtJs4 and I've runned into this issue.
There is a different behaivor when I create an object that extends Ext.util.Observable and when I create the same object but with a mixin... -
19 Jul 2011 6:47 AM
Jump to post Thread: Tree store using Model by vpopa
- Replies
- 1
- Views
- 2,122
I will post my solution, may be I'll get some code reviews or sugestions.
This is a working example:
json:
{
"totalRecords":3,
"records":[ -
6 Jul 2011 7:59 AM
Jump to post Thread: Tree store using Model by vpopa
- Replies
- 1
- Views
- 2,122
I have a rest application and I want to make a tree based on a json that I receive. The json is not in the tree store format so I need to convert it. I tried to use a Model.
I have search and tried... -
1 Jul 2011 5:42 AM
Jump to post Thread: Ext 3 to 4 Migration by vpopa
- Replies
- 284
- Views
- 98,033
If I try to run the following code:
Ext.define('Ext.window.TestWindow', {
extend: 'Ext.window.Window',
title: 'Test'
});
var win =... -
23 May 2011 12:05 AM
- Replies
- 17
- Views
- 3,166
nice fix :)
It works fine now. Thanks! -
20 May 2011 5:36 AM
- Replies
- 17
- Views
- 3,166
After doing a couple of tests I found the cause of the error in a place I was not expecting.
I provide a short test case to make it easy to spot the problem. When I removed the line in red where I... -
20 May 2011 1:50 AM
- Replies
- 17
- Views
- 3,166
I have the same error. The error is locate in Ext.grid.header.Container.
The difference between 4.0.0 and 4.0.1 is that now the method prepareData receives a 5 param, called panel that was not... -
20 May 2011 12:23 AM
- Replies
- 9
- Views
- 3,524
Hi,
I had a similir problem on CentOs 5.6. Today after reading your post I've tried to reproduce it and I've noticed that actually there is a new version available for download:... -
17 May 2011 11:40 PM
Jump to post Thread: Passing variables to new class by vpopa
- Replies
- 2
- Views
- 2,411
If you define a class that extends an Ext class you will have this.varName.
ex.
Ext.define('Test.Me', {
extend: 'Ext.panel.Panel',
initComponent: function (arguments)... -
17 May 2011 4:09 AM
- Replies
- 25
- Views
- 6,464
This explains why Ext.ComponentQuery.query('grid') doesn't work and I must do a Ext.ComponentQuery.query('gridpanel') to get the grid. Ext.grid.Panel has 2 aliases: ['widget.gridpanel',...
-
12 May 2011 5:23 AM
Jump to post Thread: Ext.id and the global id variable by vpopa
- Replies
- 4
- Views
- 3,083
I was doing some refactoring in the code and by mistake I've ended up using the id variable from the global space(window.id) instead of getting a normal error like "id is not defined".
"id" is a... -
26 Apr 2011 7:46 AM
Jump to post Thread: SenchaSDKTools-1.0 on CentOS 5.6 by vpopa
- Replies
- 1
- Views
- 1,569
I want to create a jsb3 file on CentOs 5.6 - 64.
After I downloaded the 32 bits version I had to do some editing to hardcode the path to the executable files(jsdb, ext-app-builder). I've got similar... -
15 Apr 2011 5:25 AM
Jump to post Thread: [Beta3] API Doc Issues by vpopa
- Replies
- 63
- Views
- 7,187
Today I've started to read the Architecture & MVC guide and I've tried to do things step by step.
After having an index.html, an app/Aplication.js and controller/Users.js I've tried to open the... -
25 Nov 2010 3:25 AM
Jump to post Thread: Text Selections in Grid cell by vpopa
- Replies
- 83
- Views
- 73,598
ups, I updated the code.
thz for the answer -
25 Nov 2010 1:19 AM
Jump to post Thread: Text Selections in Grid cell by vpopa
- Replies
- 83
- Views
- 73,598
I found a problem if there a second row in the grid defined in the getRowClass method.
I've noticed that second row disappear because something beyond my understandings happens in the next line: ...
Results 1 to 19 of 19
