Search Type: Posts; User: christocracy
Search: Search took 0.03 seconds.
-
23 Apr 2013 6:44 AM
- Replies
- 6
- Views
- 411
This one slipped through the cracks of your RC -- Still broken.
Ext.Map
// @private
onTilesLoaded: function() {
this.fireEvent('maprender', this, this.map); //< --- use getter... -
19 Nov 2012 8:34 PM
- Replies
- 26
- Views
- 4,858
+1 Broken here too.
-
28 Oct 2012 1:27 PM
- Replies
- 3
- Views
- 1,587
It's not that the app "locks up", there's some kind of scroll glitch related to the keyboard.
1. Onto any fullscreen container, render a bunch of text-fields.
var items = [];
for (var... -
22 Aug 2011 6:58 AM
- Replies
- 8
- Views
- 2,426
It's much easier to get an iframe to size as required than it is to attempt to boot an ExtJS app in the environment of a CMS.
-
22 Aug 2011 6:41 AM
Jump to post Thread: handler inside toolbar by christocracy
- Replies
- 2
- Views
- 632
Note:
handler: this.onButtonClick()
When you attach the function parenthesis to this.onButtonClick, the function executes IMMEDIATELY at that instant in time.
What you want to do is... -
22 Aug 2011 6:35 AM
Jump to post Thread: Dynamic loading weirdness by christocracy
- Replies
- 8
- Views
- 1,080
Ok, you're using ext-debug.js.
Can you show me a screenshot of the stack-trace in chrome? -
22 Aug 2011 5:12 AM
- Replies
- 3
- Views
- 1,681
See the docs for Ext.Ajax: http://docs.sencha.com/ext-js/4-0/#/api/Ext.Ajax
Attach a listener to #requestcomplete and/or #requestexception.
Event-handlers attached to Ext.Ajax will fire for... -
22 Aug 2011 5:07 AM
Jump to post Thread: models associations by christocracy
- Replies
- 4
- Views
- 748
You seem to be doing fine.
Now you'll want to define a #proxy for each of your models.
Ext.define('a', {
extend: 'Ext.data.Model',
fields: ['id', 'name'],
proxy: { -
22 Aug 2011 4:57 AM
Jump to post Thread: accordion layout help URGENT by christocracy
- Replies
- 10
- Views
- 1,628
When unsure of where to begin with any particular UI problem, always start by finding an appropriate example, on the examples page.
http://www.sencha.com/products/extjs/examples/
(also, the... -
22 Aug 2011 4:50 AM
Jump to post Thread: Problem with ComboBox and by christocracy
- Replies
- 5
- Views
- 896
When you say "doesn't work", what exactly do you mean.
It's unclear if you mean "the combo doesn't render on-screen" or "when I click the combo, the list contains no items".
Perhaps a... -
22 Aug 2011 4:42 AM
Jump to post Thread: Dynamic loading weirdness by christocracy
- Replies
- 8
- Views
- 1,080
Show me the html file you're using to boot your application.
When you see weird variable names like "c is undefined", this mean you're probably using the deployment version of the library, which... -
22 Aug 2011 4:39 AM
- Replies
- 26
- Views
- 3,136
Are you familiar with how Ext events work?
You might want to post the snippet of code here which controls your start menu.
This is very easy to fix. -
22 Aug 2011 4:36 AM
- Replies
- 2
- Views
- 1,546
Cutting / Cropping images is beyond the scope of ExtJS. Seems like you need the server-side involved here. Perhaps you send the co-ords of the selected area (top-left/bottom-right) to the server...
-
22 Aug 2011 4:28 AM
Jump to post Thread: Put a panel in a grid cell by christocracy
- Replies
- 2
- Views
- 506
That seems like a really weird thing to do.
What happens if the grid-view redraws itself and the panel's dom-elements are wiped? Seems like you'd have a memory leak.
Perhaps you should try an... -
22 Aug 2011 4:25 AM
- Replies
- 8
- Views
- 2,426
Load your app in an iframe.
-
22 Aug 2011 4:24 AM
Jump to post Thread: code to blur by christocracy
- Replies
- 2
- Views
- 720
I think you mean "How do I show a modal message window?".
Ext.MessageBox.alert("Title", "Message");
Ext.MessageBox.prompt("Title", "Please tell me something", function(btn) {
... -
17 Aug 2011 10:36 PM
Jump to post Thread: Custom Themes in 4.0.2-rc3 by christocracy
- Replies
- 3
- Views
- 1,597
I just ran into this issue as well.
All OP's issues are confirmed.
Need to be able to specify "relative images" when using a custom theme. -
22 Jul 2011 5:49 AM
- Replies
- 52
- Views
- 12,202
@MartiCode: Caveat emptor. I suggest you fork the RoutedApplication project on github and send me pull-requests if you add/fix anything.
-
21 Jul 2011 8:31 AM
- Replies
- 52
- Views
- 12,202
Like many, I was hoping to use a Router with ExtJS MVC.
Here's some really rough work I've been doing for a very large app (composed of many sub-apps).
I do not use this.control(...) or #refs... -
12 Jul 2011 8:28 AM
- Replies
- 3
- Views
- 494
There are several ways to handle this.
1. manually include your locale-handler in a script-tag.
2.
Ext.require(["MyApp.locales.en"], function() { // <-- use callback
... -
11 Jul 2011 8:03 AM
- Replies
- 38
- Views
- 7,809
+1 for proper REST support.
-
8 Jul 2011 8:58 AM
- Replies
- 6
- Views
- 1,459
Damn, I need this event to fire.
-
25 Jun 2011 7:53 AM
Jump to post Thread: SetActiveItem not working by christocracy
- Replies
- 3
- Views
- 1,071
Please format your code snippets with proper indentation, it's a mess.
What is this class tabpanel with all lowercase?? ClassNamesAreCamelCased.
And what is this global method extend you're... -
25 Jun 2011 7:48 AM
Jump to post Thread: Pull to refresh plugin bug by christocracy
- Replies
- 3
- Views
- 1,011
Isn't that a 3rd party ux. Are you talking about VinylFox's?
https://github.com/VinylFox/Ext.ux.touch.ListPullRefresh
Perhaps you should be posting an issue at github instead. -
22 Jun 2011 3:32 PM
Jump to post Thread: SetActiveItem not working by christocracy
- Replies
- 3
- Views
- 1,071
Gee...I can picture that all in my head perfectly...yea...
Without code...pretty hard to tell...
Perhaps it's because you're trying to make a TapPanel instead of *TabPanel*.
BTW, avoid using...
Results 1 to 25 of 119
