Search Type: Posts; User: RWaters
Search: Search took 0.04 seconds.
-
11 May 2012 3:10 PM
- Replies
- 2
- Views
- 746
the placeHolder config should work
placeHolder: '(Select your state)' -
11 May 2012 2:41 PM
- Replies
- 1
- Views
- 363
The folder structure of the apps generated from the SDK tools and those from Architect are currently not aligned. Luckily the build tools are driven by a very simple json file and you can easily add...
-
11 May 2012 2:01 PM
Jump to post Thread: Adding a chart to a Panel by RWaters
- Replies
- 3
- Views
- 632
You can use the chart class directly without using chart.Panel. I took the bar chart example and quickly moved it over to a plain panel and it works fine without the additional title bar.
... -
11 May 2012 1:10 PM
- Replies
- 2
- Views
- 456
the filter feature of the grid is not something built-in to the framework, it is a ux provided in the examples folder and will require a separate include of the main file...
-
10 May 2012 11:19 AM
Jump to post Thread: Chart Legend Hide/Show Event by RWaters
- Replies
- 2
- Views
- 524
There currently is no event attached. Quickly looking at the code I think the best place to inject it would be overriding hideAll / showAll in Ext.chart.series.Series
-
10 May 2012 11:05 AM
Jump to post Thread: Data View by RWaters
- Replies
- 1
- Views
- 312
sounds like a good use case for Sencha.io.src - http://docs.sencha.com/io/1-0/#!/guide/src
-
10 May 2012 10:06 AM
- Replies
- 2
- Views
- 462
Your syntax is quite odd and I'm amazed this ever worked in 4.0.7. You will need to split the if & for statements into two separate tpl tags, then it will work across both versions as expected.
... -
10 May 2012 12:20 AM
- Replies
- 2
- Views
- 860
Auto-suggest style functionality is actually available through the ComboBox class. You can turn the trigger off if you want to make it look more like a combobox.
The forum search example shows... -
9 May 2012 3:51 PM
- Replies
- 1
- Views
- 460
Sure is! the tool that is used to generate the docs is even available.
https://github.com/senchalabs/jsduck
The JS code is under the template folder -
9 May 2012 3:47 PM
- Replies
- 2
- Views
- 414
Unfortunately the current Tree implementation does not provide any unique classnames based on the depth. I recently implemented an extended version of Ext.tree.View for a client that added this...
-
9 May 2012 3:24 PM
Jump to post Thread: Creating XTemplate as Class by RWaters
- Replies
- 1
- Views
- 405
Are you sure the MyApp.util.SharedTemplates class is being included on the page? (or perhaps not included in time, it must be in place before the Ext.define is executed) perhaps add a requires...
-
9 May 2012 3:18 PM
- Replies
- 2
- Views
- 329
I don't think this is going to function how you are expecting. The php script needs to be executed for it to return an actual json file. If you are intending to include this within your app...
-
9 May 2012 3:13 PM
- Replies
- 2
- Views
- 653
Really not a fan of CoffeeScript though both Sencha & CoffeeScript attempt to provide solutions to this issue. Since the function is a callback that is fired from within PhoneGap's API you will need...
-
9 May 2012 2:27 PM
- Replies
- 2
- Views
- 287
In general using setRecord is a much cleaner way to implement the bindings. if you need to do a computed calculation like that into a single field I would strongly recommend just adding a calculated...
-
1 Apr 2012 1:51 PM
- Replies
- 16
- Views
- 2,946
I'll be out there April 30 - May 7th
-
12 Oct 2011 10:12 AM
- Replies
- 7
- Views
- 1,305
+1
-
15 Jun 2011 7:52 AM
- Replies
- 5
- Views
- 973
Yeah, not sure how that's working at all in fact. You technically shouldn't be able to statically access a class like that without somewhere creating an instance of it. You should be using one of...
-
15 Jun 2011 7:30 AM
- Replies
- 5
- Views
- 973
just to clarify as twitter doesn't allow me to type a lot of detail, you also adjusted the line:
this.items = [app.views.InvoiceList]
to be either:
this.items = [new app.views.InvoiceList()]... -
23 Dec 2010 7:07 AM
- Replies
- 3
- Views
- 1,335
Whoops, yes that is the correct way to access them :P
-
22 Dec 2010 11:39 PM
- Replies
- 3
- Views
- 1,335
Ext.regModel('Employee', {
fields: [
{name: 'first_name', type: 'string'},
{name: 'last_name', type: 'string'},
{name: 'full_name', type: 'string', convert:... -
22 Dec 2010 11:24 PM
- Replies
- 2
- Views
- 825
Why are you defining firefun outside of Sub_Class_1? you are running into a scope issue because the function ref firefun is getting saved with this === window and not your instance of Sub_Class_1.
... -
22 Dec 2010 11:18 PM
- Replies
- 5
- Views
- 782
Also perhaps take a look at Ext.util.MixedCollection if you don't need all the complexity of a store/reader/proxy.
-
17 Dec 2010 2:10 PM
Jump to post Thread: making a textfield clickable by RWaters
- Replies
- 8
- Views
- 1,492
Wow, didn't know about the el reference in there, that rocks Evan!
-
17 Dec 2010 1:32 PM
Jump to post Thread: onSuccess onError JSONP.request? by RWaters
- Replies
- 3
- Views
- 825
Unfortunately I don't believe there's any way to get at that information. The problem is that JSONP works around the browsers same-origin security policy by injecting a script tag onto the page. We...
-
17 Dec 2010 12:47 PM
- Replies
- 5
- Views
- 1,544
You are correct, the instance-created event isn't for when you register a new controller, in fact it fires when that controller instantiates a new Model object for you, so with this code you're not...
Results 1 to 25 of 109
