[flexcoders] File Manager

2008-07-28 Thread Dan Vega
I am not quite sure how to put this so I will try and explain the problem best I can. I built a small file manager utility that allows you to dbl click on folders and drill down through them. Once you are nested there is a toolbar icon that allows you to go back up. Most file managers have the up

Re: [flexcoders] File Manager

2008-07-28 Thread Tom Chiverton
On Monday 28 Jul 2008, Dan Vega wrote: next. I want to insert a blank row where the first column would have this up arrow image and on click would call my upNav method. Does anyone know of a way to dynamically insert this? I would think this needs to be done after How about a custom cell

Re: [flexcoders] File Manager

2008-07-28 Thread Dan Vega
I understand how to create a cell renderer but I have a query that pulls all the directory information, how do i insert a row after that query comes back from the server. Thank You Dan Vega [EMAIL PROTECTED] http://www.danvega.org On Mon, Jul 28, 2008 at 9:50 AM, Tom Chiverton [EMAIL PROTECTED]

Re: [flexcoders] File Manager

2008-07-28 Thread Tom Chiverton
On Monday 28 Jul 2008, Dan Vega wrote: I understand how to create a cell renderer but I have a query that pulls all the directory information, how do i insert a row after that query comes back from the server. Just have whatever your server code does add a row at the start of the results.

Re: [flexcoders] File Manager

2008-07-28 Thread Dan Vega
That was my next option, I was just wondering if I should do it on the server or after the grid was completed. Thank You Dan Vega [EMAIL PROTECTED] http://www.danvega.org On Mon, Jul 28, 2008 at 10:02 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 28 Jul 2008, Dan Vega wrote: I

Re: [flexcoders] File Manager

2008-07-28 Thread Tom Chiverton
On Monday 28 Jul 2008, Dan Vega wrote: That was my next option, I was just wondering if I should do it on the server or after the grid was completed. I like my view layer (i.e. the Flex client) to be as dumb as possible, so would opt for doing this on the server. You could have your results