Search Type: Posts; User: loiane
Search: Search took 0.03 seconds.
-
14 May 2013 7:52 AM
- Replies
- 6
- Views
- 1,414
Ext JS 4.2.0
This book does not teach you Ext JS basics, but how to do a complete application step by step using the MVC architecture.
The book focuses on best practices, discuss a little bit of... -
7 May 2013 5:10 AM
- Replies
- 6
- Views
- 1,414
Yes.
-
19 Mar 2013 10:51 AM
Jump to post Thread: Splash Screen by loiane
- Replies
- 8
- Views
- 4,610
Just a tip: you do not need to use Ext.onReady and Ext.application.
Ext.application already calls Ext.onReady.
You can add your Ext.OnReady code inside the init function of Ext.application :) -
13 Mar 2013 8:44 AM
- Replies
- 6
- Views
- 1,414
Need to get in touch with Packt to see what happened.
Thanks for bringing this to our attention. -
13 Mar 2013 6:52 AM
Jump to post Thread: EXTjs window close event by loiane
- Replies
- 2
- Views
- 399
Inside your button handler function, only call the close method, remove the db logic.
Leave the db logic only on the close listener. When you call the close method, the close event will also be... -
13 Mar 2013 6:48 AM
Jump to post Thread: Which Debug file is Better? by loiane
- Replies
- 2
- Views
- 228
ext.js is usually used when the dynamic loading is enabled. This way, the application will not load the entire extjs framework, will only load the classes that are required to make the application...
-
13 Mar 2013 6:37 AM
- Replies
- 6
- Views
- 1,414
Hi guys!
I'm so happy no announce my new Ext JS 4 book called Mastering Ext JS, published by Packt Publishing!
The book is not finished yet, but the RAW (read as we write) version is already... -
13 Mar 2013 6:27 AM
- Replies
- 5
- Views
- 3,646
Please take a look at compatible matches of Sencha Touch and Sencha Cmd:
Sencha Touch 2.0.x - Sencha SDK Tools
Sencha Touch 2.1.x - Sencha Cmd 3.0.x
Sencha Touch 2.2.x - Sencha Cmd 3.1.x -
5 Mar 2013 7:50 AM
- Replies
- 38
- Views
- 8,331
IMHO, this is a step back and a big Fail!
Many people use the offline docs, myself included.
Today, people already go to online docs for most updated version and also to read other user's comments.... -
11 Dec 2012 2:27 PM
- Replies
- 0
- Views
- 174
Hi,
Sencha Architect is missing a config called matcher when you add a validation of type 'format' into a Model.
This config should have 'object' as a type.
The good thing is that there is a... -
28 Oct 2012 4:28 AM
Jump to post Thread: Read data by loiane
- Replies
- 1
- Views
- 257
First you need to create a Model that is going to represent your data. The you need to create a Store with a Proxy that is going to communicate with php and then retrieve your records.
You can use... -
23 Oct 2012 3:11 AM
- Replies
- 6
- Views
- 713
You can change it directly like this:
buttonInstance.href = 'new value'; -
22 Oct 2012 12:30 PM
Jump to post Thread: ExtJS 4: Grid Printer Plugin by loiane
- Replies
- 64
- Views
- 24,165
You need to pass an instance of a GridPanel to the plugin.
In your case, you can get the grid instance using the following code - this will be your grid variable:
... -
22 Oct 2012 9:35 AM
- Replies
- 1
- Views
- 298
You can do something like this:
It is all about layouts! :)
Ext.define('MyApp.view.MyForm', {
extend: 'Ext.form.Panel',
height: 250, -
22 Oct 2012 9:21 AM
- Replies
- 0
- Views
- 382
Hi,
I noticed that many people asks to migrate the grid filtering example to Sencha Architect.
This example is using MVC architecture and also shows how to override a component using SA2.
Hope... -
22 Oct 2012 9:18 AM
- Replies
- 43
- Views
- 33,420
Another example ported.
This one also shows how to use overrides in SA2.
https://github.com/loiane/sencha-extjs4-examples-architect/tree/master/grid/grid_filtering -
22 Oct 2012 9:14 AM
- Replies
- 43
- Views
- 33,420
I'm waiting for the SA dev team to release a new version with some new capabilities, then I will be able to migrate the desktop example! :)
-
18 Oct 2012 5:27 AM
- Replies
- 5
- Views
- 851
found a nice article about it:
http://loongest.com/sencha/extjs-v4-ext-application-ext-onready-ext-onload/ -
18 Oct 2012 5:24 AM
Jump to post Thread: Cannot Load Store Data in Browser by loiane
- Replies
- 6
- Views
- 732
You need to wrap you json return inside the callback parameter sent by jsonp proxy in the server side code.
For example (php):
<?php include("connect.php");
$callback =... -
18 Oct 2012 5:16 AM
- Replies
- 5
- Views
- 851
Ext.application already calls Ext.onReady, so if you have any code you would like to add inside Ext.onReady you can add inside Ext.Application init function, that it will be execute before the...
-
18 Oct 2012 5:12 AM
- Replies
- 2
- Views
- 235
The load method is asynchronous, so maybe when you are calling the second function, the store did not get the callback yet.
You can use something like this:
... -
18 Oct 2012 5:07 AM
- Replies
- 3
- Views
- 520
Use this in the launch function of app.js or any other place that is convenient for your project:
Ext.getDoc().dom.title = 'My title';
You can change anything in the html page in Sencha... -
18 Oct 2012 5:06 AM
- Replies
- 6
- Views
- 837
Use this in the launch function of app.js or any other place that is convenient for your project:
Ext.getDoc().dom.title = 'My title';
You can change anything in the html page in Sencha... -
17 Oct 2012 4:51 PM
Jump to post Thread: ExtJS 4: Grid Printer Plugin by loiane
- Replies
- 64
- Views
- 24,165
Sorry. I don't have access to 4.1.2 yet. I only use open source version - educational purposes.
-
17 Oct 2012 4:47 PM
Jump to post Thread: ExtJS 4: Grid Printer Plugin by loiane
- Replies
- 64
- Views
- 24,165
Fixed.
You can get the new version from github and use.
Template columns are now supported by the plugin.
Results 1 to 25 of 120
