Search Type: Posts; User: bt_bruno
Search: Search took 0.03 seconds.
-
1 Nov 2012 3:48 PM
Jump to post Thread: Router by bt_bruno
- Replies
- 6
- Views
- 2,353
Nice catch! I've just updated the code and tested against IE, Firefox and others... Should be ok now.
-
1 Nov 2012 3:44 PM
Jump to post Thread: Ext Route # by bt_bruno
- Replies
- 4
- Views
- 360
I've just updated it. You might want to check again ;)
-
22 Aug 2012 8:24 AM
- Replies
- 4
- Views
- 973
I noticed the same change... My workaround was this:
{
xtype: 'segmentedbutton',
allowDepress: false,
items: [{
text: 'One',
itemId: 'one',
pressed: true -
17 Aug 2012 4:44 PM
- Replies
- 5
- Views
- 861
Proxy has a onDestroy method that also destroys Reader and Writer, you might want to add this on your override.
Ext.define('ProxyDestroyFix', {
override:'Ext.data.proxy.Proxy',
... -
15 Aug 2012 1:07 PM
- Replies
- 25
- Views
- 11,499
Easy workaround:
-
10 Jul 2012 12:26 PM
- Replies
- 4
- Views
- 1,618
The best would have engineer fix this, but a workaround is use the old way:
MyApp.view.Login.superclass.initialize.apply(this, arguments);
Or a short version (new for me, but I guess it... -
10 Jul 2012 8:29 AM
- Replies
- 1
- Views
- 377
You have a typo when declaring the fieldset items. You used item, change for items. Not only there, but when declaring form items as well.
-
9 Jul 2012 8:57 AM
- Replies
- 2
- Views
- 361
I believe you can do that with renderer, just like the original index.html example available with the source code https://github.com/mitchellsimoens/Ext.ux.touch.grid
{
header :... -
9 Jul 2012 8:45 AM
Jump to post Thread: Question about timing and events by bt_bruno
- Replies
- 2
- Views
- 226
I think you're missing scope:this.
this.form.getForm().submit({
url: 'handler.php',
method: 'POST',
scope: this, //<--- fix scope problem
success: function(form, action) {
... -
24 Jun 2012 9:12 PM
- Replies
- 5
- Views
- 1,372
Touch has a repaint method:
http://docs.sencha.com/touch/2-0/#!/api/Ext-method-repaint -
28 May 2012 8:34 PM
Jump to post Thread: Animate a button by bt_bruno
- Replies
- 6
- Views
- 1,539
I felt like writing a quick example, here it is: Animate components in a view
-
28 May 2012 8:00 PM
Jump to post Thread: Animate a button by bt_bruno
- Replies
- 6
- Views
- 1,539
Hello @allisterf, sorry for the waiting. To animate components you can use showAnimation or hideAnimation config options. So you could init your button with hidden: true, and then call...
-
20 May 2012 7:43 PM
Jump to post Thread: Example: Facebook Login page by bt_bruno
- Replies
- 5
- Views
- 2,760
Wow, all the theming looks perfectly on Architect! Good initiative Luca. Mind if I blog about it as well? ;)
-
23 Dec 2011 4:09 PM
- Replies
- 2
- Views
- 1,351
Another Ext to NodeJS project?
Yes, yes... I know that there are a bunch of other guys trying to export Ext JS capabilities to Node, but they all sound to much for me! Some try to rewrite all Ext... -
5 Dec 2011 2:46 PM
- Replies
- 8
- Views
- 618
The problem is, once you tell the datastore to load, there's nothing you could do to prevent grid of being populated. You can't do post-processing and check if the data loaded is really from the...
-
5 Dec 2011 1:35 PM
- Replies
- 8
- Views
- 618
I think the best would be abort old request, so we save some processing and stuff. We could make your store local, and fill it with a regular Ext.Ajax request. Maybe this snippet could help you out: ...
-
5 Dec 2011 1:28 PM
- Replies
- 5
- Views
- 2,604
Ok, so the default font-size is 12px. I don't know if this is an issue from your browser (try to check the zoom), or really an issue with the default font-size.
You can also easily customize the... -
5 Dec 2011 11:59 AM
- Replies
- 8
- Views
- 618
Yes you're right, you can't guarantee that out of the box. But I can't understand the use of a store for the details view. Could you maybe explain with some code how is your master/details structure...
-
5 Dec 2011 11:51 AM
- Replies
- 5
- Views
- 2,604
Hi @PMfaithoffly, welcome aboard! The activate should be put in tabpanel children, not in tabpanel itself. Once a tab is activated, the event is triggered.
Ext.create('Ext.tab.Panel',{
... -
2 Dec 2011 4:18 PM
- Replies
- 3
- Views
- 629
IE simply doesn't implement the CSS features required. That's why we have ugly table structure bounded to image sprites.
Prior to Ext 4 you had to do it completely manually, cutting images in... -
2 Dec 2011 3:56 PM
- Replies
- 3
- Views
- 889
In ExtJS examples there's a specific section called "Accessibility". Check the Keyboard Feed Viewer. Basically you can navigate through <tab>, and to "enter" a component use <enter>, and to return to...
-
2 Dec 2011 12:00 PM
- Replies
- 4
- Views
- 1,004
This is the definition of clearFilter methods:
clearFilter: function(suppressEvent) {
var me = this;
me.filters.clear();
if (me.remoteFilter) {
... -
2 Dec 2011 11:52 AM
- Replies
- 3
- Views
- 901
One temporary workaround:
Ext.override(Ext.tab.Tab,{
overCls: Ext.baseCSSPrefix + 'tab-top-over'
});
Of course it's temporary, because it fails when the Tabs are at the bottom. If your... -
2 Dec 2011 11:43 AM
- Replies
- 1
- Views
- 421
It's seems to be bug, reported here: x-tab-top-over never inserted into any element. I gave a workaround solution, so check this previous link.
Basically, Ext has this CSS class defined: ... -
2 Dec 2011 11:09 AM
- Replies
- 2
- Views
- 538
I believe it facilitates server side paging. Some servers use a single page parameter, others use a combination of start and limit.
You can easily switch it off by setting pageParam to undefined,...
Results 1 to 25 of 119
