Search Type: Posts; User: delusion
Search: Search took 0.02 seconds.
-
10 May 2013 11:41 AM
Jump to post Thread: problem loading multiple stores by delusion
- Replies
- 9
- Views
- 143
I actually thought about that. I may do it as well as fixing the server, but I think that fixing the server is the best place to start. It seems only happen on the development server (they are both...
-
10 May 2013 11:26 AM
Jump to post Thread: problem loading multiple stores by delusion
- Replies
- 9
- Views
- 143
Thanks Jay,
I am working on server side fixes. Just curious to see if there were any front end ideas as well. -
10 May 2013 11:03 AM
Jump to post Thread: problem loading multiple stores by delusion
- Replies
- 9
- Views
- 143
what's the point of asynchronous requests if you have to wait for one to finish before sending the next one?
-
10 May 2013 9:54 AM
Jump to post Thread: Export store to Excel by delusion
- Replies
- 258
- Views
- 108,235
do you have something like
<script type="text/javascript" src="*path*/ExportGridToExcel/downloadify.min.js"></script>
included in your html? -
10 May 2013 9:47 AM
Jump to post Thread: problem loading multiple stores by delusion
- Replies
- 9
- Views
- 143
I would set up the data as an include, but they're all coming from different different dynamic databases so i would have to do all the Ajax queries somewhere along the way.
I know it's a server... -
7 May 2013 12:17 PM
Jump to post Thread: problem loading multiple stores by delusion
- Replies
- 9
- Views
- 143
I have a form in an Extjs 4.1.1 application that autoLoads ~19 stores when the page loads. the stores are either used for comboboxes, or for a general translation store. There seems to be an...
-
21 Mar 2013 10:42 AM
- Replies
- 3
- Views
- 775
I just had the same issue when updating a project form 4.1.2 to 4.1.3
so I did this
app.js
Ext.application({
views: [
'MyViewport' -
1 Feb 2013 8:09 AM
Jump to post Thread: Node disappear after Drag&Drop by delusion
- Replies
- 2
- Views
- 265
This works to force the mode into copy. however it also changes the 'data' that is passed to the drop event. Instead of getting the entire node, the data is now just the node.data object. Which is...
-
17 Jan 2013 11:48 AM
- Replies
- 2
- Views
- 622
I did this by creating a regular data store, adding the data from each node of the tree store to the new store, then using the Exporter.js plugin here https://github.com/iwiznia/Ext.ux.Exporter
... -
12 Dec 2012 8:16 AM
Jump to post Thread: Export store to Excel by delusion
- Replies
- 258
- Views
- 108,235
Has anyone used this with a tree panel? I have it working for a grid, but when i try to give it a tree componenet, or a tree store, it goes into the excelFormatter, tries to render a workbook,
... -
26 Sep 2012 11:42 AM
- Replies
- 7
- Views
- 1,429
I am having the same issue, with 4.1.1 and 4.1.2
var groupingFeature = Ext.create('Ext.grid.feature.Grouping', {
id: 'groupingFeature'
,groupHeaderTpl: '{name}... -
24 Jul 2012 12:08 PM
Jump to post Thread: Send combobox vaalue to PHP by delusion
- Replies
- 3
- Views
- 750
I"m doing something similar where my form has a combobox
var cmbSingleOfficer = Ext.create('Ext.form.ComboBox', { id:'cmbSingleOfficer'
,name:'officer'
,hiddenName:'badge'... -
15 Mar 2012 9:24 AM
- Replies
- 8
- Views
- 2,057
I"m having the same issue,
I've basically copied code from the example to my production path and changed the paths to my own javascript and css paths but the ItemSelector is not displaying... -
14 Mar 2012 12:43 PM
- Replies
- 6
- Views
- 1,699
I have the same issue, just a blank area.
I had a similar problem in 4.0.7 but i was able to get around it by creating the widget during the load event of the store. -
19 Jan 2012 11:24 AM
- Replies
- 2
- Views
- 681
Never mind. I found my foolish bracketing error.
-
19 Jan 2012 10:36 AM
- Replies
- 2
- Views
- 681
I'm having a similar issue
I set up a model
var strFields=
{name:'rin',type:'int'},
{name:'primary_key',type:'string'},
{name:'case_num', type:'int'}, -
15 Dec 2011 12:50 PM
- Replies
- 2
- Views
- 883
Thanks, this was taking me forever to figure out. I built the exact same json string as the store by hand and it was working fine. so i was really confused when my external json store wasn't showing...
-
2 Dec 2011 3:19 PM
- Replies
- 2
- Views
- 544
I just got this to work today
i set the filters config in the store and wrote a function that would only display the items where the 'num' field was greater than 1
filters :... -
2 Dec 2011 1:47 PM
- Replies
- 1
- Views
- 394
I put a listener for the groupclick event in the definition of my grid rather than in the groupingFeature and that seems to work. I tried using the groupexpand event, but that doesn't seem to fire...
-
2 Dec 2011 11:55 AM
Jump to post Thread: Sort groups by number of rows by delusion
- Replies
- 2
- Views
- 560
Well that's unfortunate.. I am creating a custom group string already and I was hoping that the number of rows in the group was available as a property of this.groupers.first() or something like...
-
1 Dec 2011 12:52 PM
Jump to post Thread: Sort groups by number of rows by delusion
- Replies
- 2
- Views
- 560
I have a of people and events they are associated with. I am grouping the events by the person associated with them so i end up with basically a list of people, and then each person expands to their...
-
1 Dec 2011 12:41 PM
- Replies
- 3
- Views
- 1,138
I did single level grouping on multiple columns by setting the groupField to a single column (ie surname) and then set the getGroupstring to a function that returns the surname+givenname+role
so...
Results 1 to 22 of 22
