Search Type: Posts; User: romerve
Search: Search took 0.03 seconds.
-
21 May 2012 12:02 PM
Jump to post Thread: Class declaring by romerve
- Replies
- 2
- Views
- 317
Well, that is not what it's said to be in app.js
You are basically defining a User.js model by extending the ExtJS.data.Model class. Read the MVC tutorials and Class system. Those docs will tell... -
21 May 2012 7:39 AM
- Replies
- 2
- Views
- 1,184
Hello,
I came across: http://twitter.github.com/bootstrap/index.html and it seems very nice and easy to use when providing a front end.
You can customize it to only get the CSS of the CSS+JS... -
15 May 2012 7:02 AM
- Replies
- 2
- Views
- 360
All the panels get rendered with "Ext.widget" in the for loop.
displayResults: function( response ) {
var records = response.data;
this.resultRecords = records;
... -
9 May 2012 7:42 AM
- Replies
- 2
- Views
- 360
Hello,
I have several panels created and rendered with collapsed: true. I am having a little problem. If the user has expanded any of the panels and the page gets cleared by triggering the... -
7 May 2012 12:25 PM
- Replies
- 3
- Views
- 1,932
Thank you.
-
7 May 2012 11:06 AM
- Replies
- 3
- Views
- 1,932
Hello,
I have the following method in my controller:
requestSearch: function(needleStack) {
Ext.Ajax.request({
url: './index.php/sts/search',
... -
4 May 2012 7:19 AM
Jump to post Thread: SearchField events?? by romerve
- Replies
- 1
- Views
- 292
Ok,
so it seems that the "onTriggerNClick" are not being exposed to the controller's this.control.
In order to get the trigger click events i have to manually fire the events using... -
3 May 2012 1:58 PM
Jump to post Thread: SearchField events?? by romerve
- Replies
- 1
- Views
- 292
Hello,
I am working on this MVC app that uses the ux SearchField. I can render it find and get some results, etc. However, i am trying to make my app more within the "ExtJS MVC" standards and i am... -
3 May 2012 11:20 AM
- Replies
- 1
- Views
- 770
Hello,
Based on the docs, i can deduct that the controller's init() is sort of a constructor and it is executed before launch().
If i have some UI that i would like to make present as soon as... -
3 May 2012 6:24 AM
Jump to post Thread: DOCS - 4.1 and 4.0.7?? by romerve
- Replies
- 1
- Views
- 481
I made a boo boo..
Thanks and sorry. -
3 May 2012 6:20 AM
- Replies
- 2
- Views
- 376
Yeah, i know that it works as you suggested, i had previously done it like that, but i read somewhere in the docs that if you dont want the configs to be read only, you need to use the config{}...
-
2 May 2012 2:30 PM
- Replies
- 2
- Views
- 376
Hello,
I am trying to find a way to to pass config params to a view and instantiate it with them. My view is:
Ext.define('Que.view.Quesearch',{
extend: 'Ext.ux.form.SearchField',
... -
2 May 2012 7:05 AM
Jump to post Thread: Ext4 MVC - Where to place ux?? by romerve
- Replies
- 3
- Views
- 553
Oh i see, i totally missed the configs for Ext.Loader.
So i would just do something like:
Ext.Loader.setConfig({ enabled:true, paths: { 'ux': 'ux/' }});
And then just use... -
1 May 2012 11:23 AM
Jump to post Thread: Ext4 MVC - Where to place ux?? by romerve
- Replies
- 3
- Views
- 553
Hello,
I am having troubles using the SearchField.js UX. Is it supposed to be in Ext/ux/SearchField.js? Or within my app folder?
I keep getting 404 errors about (NOT FOUND) when trying to use... -
16 Jan 2012 12:48 PM
Jump to post Thread: Chart listener: beforerender by romerve
- Replies
- 7
- Views
- 929
That didnt work either. It's weird the store shows records in store.data, but anytime i try to access store.data.items[] the records are no longer there, like if somehow the store hasnt been...
-
16 Jan 2012 8:10 AM
Jump to post Thread: Chart listener: beforerender by romerve
- Replies
- 7
- Views
- 929
Yeah, that didnt work either.
I managed to do it by doing this:
var ds = Ext.getStore(this.store);
ds.on('load', function(store, records){
... -
13 Jan 2012 1:35 PM
Jump to post Thread: Chart listener: beforerender by romerve
- Replies
- 7
- Views
- 929
Ok, i am having trouble understanding why i seem not to be able to use the store in the "initConfig()"
Ext.define('Analytics.view.charts.AssemInOut', {
extend: 'Ext.chart.Chart',
... -
13 Jan 2012 11:29 AM
Jump to post Thread: Chart listener: beforerender by romerve
- Replies
- 7
- Views
- 929
Well i tried that and it did the same thing that it is happening in with the listener.
I did: "console.log(this)" and i can see the store->data->items, etc. But if i do:... -
13 Jan 2012 10:03 AM
Jump to post Thread: Chart listener: beforerender by romerve
- Replies
- 7
- Views
- 929
Hello,
i am trying to change the bottom axis title to show information that resides in the the chart data store.
So i decided to have a beforerender listener to change it, however, i am getting... -
12 Jan 2012 12:54 PM
- Replies
- 7
- Views
- 750
The way i approached this scenario was to create one URL for all my requests something like:
"http://myhost.lan/route"
Then whatever back end you have the "route" method would just call whatever... -
11 Jan 2012 11:39 AM
Jump to post Thread: Stores: data with post by romerve
- Replies
- 11
- Views
- 3,070
If it's not too late, you can also change it without doing the override as in above, you can just do:
Ext.define('Analytics.store.dsAssemInOut', {
extend: 'Ext.data.Store',
alias:... -
4 Nov 2011 6:08 AM
- Replies
- 5
- Views
- 516
Thanks Mitchell,
If you dont mind telling me a bit more about aliases... I read that you needed to use widget, however, prior to your explanation i was trying different things and i was able to... -
4 Nov 2011 5:50 AM
- Replies
- 5
- Views
- 516
Hello Mitchell,
I have made the changes you suggested as you clarified a few things to me. However, i still get the same error: "Uncaught TypeError: Cannot read property 'theme' of undefined... -
3 Nov 2011 10:49 AM
- Replies
- 5
- Views
- 516
Hello,
I am trying to get a chart to render, but i am having issues. I keep getting "Uncaught TypeError: Cannot read property 'theme' of undefined ext-all-debug.js:41482"
My store works fine as... -
2 Nov 2011 11:38 AM
- Replies
- 1
- Views
- 457
Hello,
I am trying to get a chart to render, but i am having issues. I keep getting "Uncaught TypeError: Cannot read property 'theme' of undefined ext-all-debug.js:41482"
My store works fine...
Results 1 to 25 of 36
