Search Type: Posts; User: funkadelic
Search: Search took 0.02 seconds.
-
23 Jul 2009 4:11 PM
- Replies
- 0
- Views
- 1,193
http://code.google.com/p/fx-windowbounds/
it's basically a mootools class that allows AIR's NativeWindow to be animated when moving/resizing.
Anyone know of anything similar for Ext? I know... -
21 Jul 2009 6:46 AM
- Replies
- 30
- Views
- 9,614
looks like Ext.air.* was removed from the 2.3.0 docs...wonder why?
-
24 Mar 2009 12:05 PM
- Replies
- 10
- Views
- 4,272
I think Ext JS is a great framework to develop AIR apps on. I remember when I was first getting familiar with Ext JS & it was a very steep learning curve, but once I got the hang of it, I found Ext...
-
28 Jan 2009 11:46 AM
Jump to post Thread: Ext.sql ? by funkadelic
- Replies
- 2
- Views
- 1,929
There is Ext.sql.* in the ext-air js file but it's not documented
-
24 Dec 2008 9:54 AM
- Replies
- 1
- Views
- 3,029
it should work. The JsonStore & GridPanel definition whould look something like this (referencing the file in the app-storage directory using the app-storage:/ shortcut) :
var someJsonstore =... -
10 Dec 2008 10:05 AM
- Replies
- 2
- Views
- 4,559
i 2nd this...I use yuicompressor as the last step of compressing all the js code before packaging our Adobe AIR app, so integration with yuicompressor would be nice (or the ability to turn off...
-
4 Dec 2008 10:48 AM
Jump to post Thread: Updated docs for Ext.air 0.3 ? by funkadelic
- Replies
- 3
- Views
- 2,107
Hey Aaron, do you have any idea on when 2.2.1 is expected to be released?
-norm -
4 Dec 2008 10:46 AM
Jump to post Thread: Multiple Window Application by funkadelic
- Replies
- 3
- Views
- 4,880
you can reference other windows with something like this...
for example, if you want to control a particular window that is a Ext.air.NativeWindow(), you could do something along these lines:
... -
4 Dec 2008 10:15 AM
- Replies
- 2
- Views
- 2,461
maybe you've already done this, but are you using the latest introspector included in the 1.5 SDK? I haven't had any probs in our AIR app (which uses jquery + ext js)
-
7 Oct 2008 11:26 AM
- Replies
- 3
- Views
- 2,383
the migration from xulrunner->AIR was fairly straightforward; much easier than ramping up on xul/xulrunner. No real snags that I can remember during the migration. One of the big reasons we moved to...
-
1 Oct 2008 12:47 PM
- Replies
- 3
- Views
- 2,383
Hi,
Raptr is a social networking site geared towards gamers. Our desktop client that is a combination of a game launcher/tracker/browser, friends list/browser, download manager, file updater (and... -
11 Jul 2008 11:17 AM
- Replies
- 0
- Views
- 1,130
I am working on an Adobe AIR 1.1 app, using ExtJS 2.1 + jQuery 1.2.6 and am getting a "TypeError: Undefined" whenever I attempt to assign a listener to NativeWindow
my script load order is:
... -
8 Apr 2008 4:00 PM
- Replies
- 4
- Views
- 6,768
hi,
i want to programmatically render a Ext.ProgressBar into a grid in response to a contextmenu event (basically the grid would act as the frontend to a download manager -- a user would right... -
4 Apr 2008 12:40 PM
Jump to post Thread: Build your own 2.0 available by funkadelic
- Replies
- 142
- Views
- 68,321
Hi folks,
I just created a custom build (worked great), but looking at the generated source code, this is the first thing I see in the code:
/*
* Ext JS Library 2.0.2
* Copyright(c)... -
2 Apr 2008 2:40 PM
- Replies
- 1
- Views
- 592
argh. ok i figured it out. removing autoHeight: true and autoWidth: true fixed it. I guess it causes problems when you specify layout: fit :)
-
2 Apr 2008 2:05 PM
- Replies
- 1
- Views
- 592
howdy,
i have a GridPanel that is contained inside a Viewport with the grid as the only item. I read through the Grid FAQ and have set layout: 'fit' & autoScroll: true to but I'm not getting a... -
2 Apr 2008 10:52 AM
- Replies
- 28
- Views
- 22,356
thanks condor. i tried this out but I don't see a tooltip (or judging by the html, a quicktip)? Is there any additional configuration that I need to do to enable it?
update: nevermind, i looked... -
2 Apr 2008 9:44 AM
- Replies
- 28
- Views
- 22,356
hi,
i am trying to add an Ext.ToolTip to a grid cell via a custom renderer but how do I access to the reference to the grid cell that calls the renderer?
Here my GridPanel defining the... -
1 Apr 2008 10:58 PM
Jump to post Thread: filtering a jsonstore by funkadelic
- Replies
- 3
- Views
- 1,609
i figured this one out, after stumbling through a few mistakes, so I'm posting here for the archive in the hope that this will save someone some headache down the line :)
1) i erred and misread... -
1 Apr 2008 4:21 PM
Jump to post Thread: filtering a jsonstore by funkadelic
- Replies
- 3
- Views
- 1,609
just a quick follow-up. i saw that there is a filterBy method on GroupingStore, so i tried the following, expecting to see some output in the firebug console
var store = new... -
1 Apr 2008 4:12 PM
Jump to post Thread: filtering a jsonstore by funkadelic
- Replies
- 3
- Views
- 1,609
hi,
i have a grouping store that I'd like to filter by a particular field in the JSON data, but am not sure how the filtering mechanism works
here's my GroupingStore:
var store = new... -
31 Mar 2008 1:48 PM
- Replies
- 3
- Views
- 1,015
thanks! i found this thread which is doing something similar and sounds like i could basically update the record in the store to get the behavior I want.
thanks for your excellent Grid FAQ as... -
31 Mar 2008 10:46 AM
- Replies
- 3
- Views
- 1,015
is there an example out there of a dynamically updating (via AJAX) cell in a GridLayout, like a dynamic stock price ticker?
I have an extjs grid layout where I'd like to have a cell updating in a... -
31 Mar 2008 10:10 AM
- Replies
- 3
- Views
- 1,539
that worked...thanks, para!
-
28 Mar 2008 2:19 PM
- Replies
- 3
- Views
- 1,539
Hi,
I have a GridPanel (loaded from JSON data) & I've attached a listener (rowcontextmenu) that opens an Ext.menu.Menu when a user right clicks on a row.
I would like one of the context menu...
Results 1 to 25 of 27
