Search Type: Posts; User: rbastic
Search: Search took 0.03 seconds.
-
11 Jan 2011 12:17 PM
- Replies
- 3
- Views
- 1,178
The way I handle this is by using JSP/PHP to my advantage. Design your application so that you can easily wrap access checks using your templating system ? I do this using a session object which...
-
11 Jan 2011 8:21 AM
- Replies
- 7
- Views
- 1,071
The grid is very close to functioning correctly but I believe there should be an option to force the 2nd column to fill.
autoExpandColumn doesn't seem to be working correctly either in this... -
11 Jan 2011 7:19 AM
- Replies
- 7
- Views
- 1,071
The problem here is that the second column does not expand to fill the remaining space. :-(
autoFit: true in the viewConfig sadly does not change this. -
10 Jan 2011 12:21 PM
- Replies
- 7
- Views
- 1,071
It's been posted time and time again. The code I'm using is Animal's code from 2008. This code does not seem effective anymore.
Please note that it errors in IE and while it fails to error in... -
5 Jan 2011 7:33 AM
- Replies
- 4
- Views
- 994
I should mention -- this really isn't that big of a deal for me -- I can workaround this easily using manual assignment. Do you have to create the object within the context of another for 'ref' to...
-
5 Jan 2011 7:09 AM
- Replies
- 4
- Views
- 994
var ptb = new Ext.PagingToolbar({
pageSize: parms['pageSize'],
displayInfo: true,
displayMsg: parms['displayMsg'],
emptyMsg: "",
store:... -
5 Jan 2011 6:45 AM
- Replies
- 4
- Views
- 994
Hello all,
I'm looking for a simple way to globally link a pagingtoolbar to it's given grid in my code. For instance, in some places I am doing this:
var grid = new ....;
grid.ptb =... -
22 Dec 2010 5:39 AM
Jump to post Thread: How do you develop? by rbastic
- Replies
- 6
- Views
- 743
I've been using Eclipse almost exclusively for the past 3 years for commercial projects... Let me tell you, I'm not using it by choice -- it's what we use. Any machine with less than a *ton* of...
-
15 Dec 2010 12:51 PM
Jump to post Thread: Chrome 10 Compatibility by rbastic
- Replies
- 1
- Views
- 882
This has been posted several times already.
http://www.sencha.com/forum/showthread.php?118498-DUPE-1444-Chromium-release-breaks-ExtJS -
14 Dec 2010 7:26 AM
- Replies
- 5
- Views
- 578
Interesting. I've never seen that used before.
-
14 Dec 2010 6:59 AM
- Replies
- 5
- Views
- 578
For the "store is loading", do you mean: !Ext.isDefined(store.totalLength) && !store.lastOptions ??
The !!store.lastOptions just threw me for a loop. :)
-Ryan -
9 Dec 2010 8:02 AM
Jump to post Thread: ExtJS calendar refreshing by rbastic
- Replies
- 0
- Views
- 803
Hello, I am trying to modify the Ext Calendar for our own internal purposes. Of course, this involves me modifying the Edit Event functionality with a custom form and hooking it into our database...
-
9 Dec 2010 7:29 AM
Jump to post Thread: Ext Calendar customization by rbastic
- Replies
- 0
- Views
- 510
I have modified the EventEditWindow 'updateRecord' function to initiate an AJAX request for saving.
My only question is now how to force the calendar to refresh. In the success handler of the AJAX... -
9 Dec 2010 5:40 AM
Jump to post Thread: ExtJS App + Outside link by rbastic
- Replies
- 5
- Views
- 971
I suppose it really depends on your application architecture and design. You mentioned having nice SEO-friendly links like /typeofinfo/postnumber -- that's a webserver configuration thing, e.g....
-
8 Dec 2010 1:19 PM
Jump to post Thread: ExtJS App + Outside link by rbastic
- Replies
- 5
- Views
- 971
How about using iframes and maybe opening up the external link as a draggable div in your app.... (i.e. maybe inside a popped up Ext.Window?) Just a thought. May be undesirable.
-
8 Dec 2010 10:14 AM
- Replies
- 3
- Views
- 2,638
Oh, right. I totally forgot about those links :) We have a pretty specialized app here so I guess I spaced on 'the ExtJS way'.
-
7 Dec 2010 6:05 AM
- Replies
- 3
- Views
- 2,638
There's two options: 1) Store the localized text in a database and cache/retrieve it as necessary using inlined method calls.
2) Store the localized text in some code files and call methods to... -
2 Dec 2010 10:46 AM
Jump to post Thread: Calendar in read only mode by rbastic
- Replies
- 3
- Views
- 621
For disabling drag events+select range do this:
1) Set enableDD: false in your CalendarView.js file
2) ... Then to disable 'add events' find test-app.js and search for 'dayclick', it would look... -
1 Dec 2010 8:20 AM
Jump to post Thread: Requested JSON data from PHP by rbastic
- Replies
- 5
- Views
- 660
He just gave you the correct answer.... use json_encode() in php. See www.php.net for more information if you're not sure.
-
30 Nov 2010 12:55 PM
- Replies
- 4
- Views
- 1,514
Right. The only correct cross-browser solution would be for his app to accept a CSV file as upload. Then not only would he support Excel but OpenOffice too!
Of course, if this is an intranet app,... -
30 Nov 2010 11:35 AM
- Replies
- 4
- Views
- 1,514
See this link here for more info: http://stackoverflow.com/questions/1095131/paste-excel-data-into-html-table
-
30 Nov 2010 7:45 AM
Jump to post Thread: grid not displaying scrollbar by rbastic
- Replies
- 7
- Views
- 562
SOLVED :) Apparently, my problem was related to the region layout configuration and the usage of the autoHeight: true parameter which is apparently not correct with grids?
-
30 Nov 2010 7:20 AM
Jump to post Thread: grid not displaying scrollbar by rbastic
- Replies
- 7
- Views
- 562
And it still doesn't work. Seriously, this can't be that hard, I've got other instances of similar things working, but nothing this complicated.
West region - treepanel, center region 2 form... -
30 Nov 2010 6:42 AM
Jump to post Thread: grid not displaying scrollbar by rbastic
- Replies
- 7
- Views
- 562
I removed all notions of a tab panel, it's just the regions now -- with a center region that has 2 form panels and a grid now.
-
30 Nov 2010 6:41 AM
Jump to post Thread: grid not displaying scrollbar by rbastic
- Replies
- 7
- Views
- 562
I made it so the grid is displayed (hidden: false) on load and go figure, the scrollbar appears for half a second and then vanishes... So apparently it's not the problem I thought it was.
Any...
Results 1 to 25 of 118
