[flexcoders] Re: Advanced Datagrid

2009-04-27 Thread senthilkumarirtt
hi...i have tree in advanced datagrid like this +NewAccount +Account Updates +IncomingAccountTransfer If i click '+' symbol,it wil expand like -NewAccount opened Inprogress Completed -Account Updates Inprogress Rejected -IncomingAccountTransfer Inprogress Rejected this tre struct

[flexcoders] Re: advanced datagrid header

2008-02-25 Thread majid.tahir
Thanks! --- In flexcoders@yahoogroups.com, Scott Melby <[EMAIL PROTECTED]> wrote: > > Set the sortExpertMode property > > to true to get rid of that. > > hth > Scott > > Scott Melby > Founder, Fast

Re: [flexcoders] Re: Advanced Datagrid

2009-04-29 Thread Tom Chiverton
On Tuesday 28 Apr 2009, senthilkumarirtt wrote: > hi...i have tree in advanced datagrid like this Why not use an actual tree control then ? -- Helping to biannually restore cross-platform synergies as part of the IT team of the year, '09 and '08 Tom Chiverton Developer Tel: +44 0161 618 5032 F

[flexcoders] Re: Advanced Datagrid performance

2009-05-21 Thread valdhor
Thousands. It slows down a lot when you have grouping collections but I set it to display asynchronously so the user sees it updating. --- In flexcoders@yahoogroups.com, "Scott" wrote: > > > > I'm using the advanced datagrid component to display data from my > Coldfusion server. Realistica

[flexcoders] Re: advanced datagrid refresh

2009-07-29 Thread valdhor
First off, it's a bit difficult to debug as we don't have access to your service to get the data you are seeing. Anyway, one thing I noticed is that in your function refreshBtn_clickHandler, you have the line: adg.dataProvider = "{getAllItemsCollection}"; This will not work as you intend. You

[flexcoders] Re: Advanced DataGrid sorting

2009-01-27 Thread Amy
--- In flexcoders@yahoogroups.com, "Denis" wrote: > > Hi there, > > I need to sort the advanced grid but I want the sort apply only > certain nodes of data. For example Group 0 contains 10 items which it > makes sense to sort while Group 1 contain items which should always > remain in the same

[flexcoders] Re: Advanced DataGrid sorting

2009-01-27 Thread Denis
--- In flexcoders@yahoogroups.com, "Amy" wrote: > > --- In flexcoders@yahoogroups.com, "Denis" wrote: > > > > Hi there, > > > > I need to sort the advanced grid but I want the sort apply only > > certain nodes of data. For example Group 0 contains 10 items which it > > makes sense to sort whi

[flexcoders] Re: Advanced Datagrid with Grouping

2008-01-17 Thread jovialrandor
Sorry Tom, but I don't understand how the sort code (link you provided) would help me with my filterfunction? Thanks --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Wednesday 16 Jan 2008, jovialrandor wrote: > > How do I get 'filterfunction' of an arraycollec

[flexcoders] Re: advanced datagrid sub header

2008-02-25 Thread majid.tahir
Thanks Scott for the help but showHeaders removes all the Headers. I just want to not show the subheaders. Is there anyway to remove only the headers for the columns within the AdvancedDataGridColumnGroup tag? --- In flexcoders@yahoogroups.com, Scott Melby <[EMAIL PROTECTED]> wrote: > > Set the

[flexcoders] Re: Advanced DataGrid XMLListCollection tree

2008-06-11 Thread brian_garcia81
--- In flexcoders@yahoogroups.com, "brian_garcia81" <[EMAIL PROTECTED]> wrote: > > Hello, > > I have been trying to setup the tree function of that advanced > datagrid but keep running into problems. > > I get the error: > TypeError: Error #1034: Type Coercion failed: cannot convert > [EMAIL PR

[flexcoders] Re: Advanced datagrid vs Textarea

2009-04-14 Thread valdhor
That's nice. --- In flexcoders@yahoogroups.com, "senthilkumarirtt" wrote: > > hi all,i want to copy the entire selected row's data from datagrid to > textarea. >

[flexcoders] Re: Advanced datagrid vs Textarea

2009-04-14 Thread markgoldin_2000
Or, you could have prepared such a string on the server to begin with and deliver it to the front-end as a part of your datagrid data and ready to be copied to a textarea. --- In flexcoders@yahoogroups.com, "senthilkumarirtt" wrote: > > hi all,i want to copy the entire selected row's data from

[flexcoders] Re: Advanced DataGrid Issue Help???

2009-07-10 Thread Don Kerr
You might check out the verticalScrollPosition property of the datagrid and set it to the selectedIndex onchange. Haven't tried in this specific tree scenario, but it may work. Not sure if it will move it up for you automatically or not. change="mygrid.verticalScrollPosition = mygrid.selectedI

[flexcoders] Re: advanced datagrid error weirdness

2009-02-13 Thread Johannes Nel
ok to follow up. in the initListData function it is the first line after the first call to getStyle (after the call to getDisplayDisclosureIcon). the offending line(s) was in my css, added by somebody else in ignorance. :( folderOpenIcon: null; disclosureOpenIcon: null; anyway, obviously g

Re: [flexcoders] Re: Advanced Datagrid with Grouping

2008-01-17 Thread Tom Chiverton
On Thursday 17 Jan 2008, jovialrandor wrote: > Sorry Tom, but I don't understand how the sort code (link you > provided) would help me with my filterfunction? You do filtering the same way. -- Tom Chiverton Helping to elementarily embrace bricks-and-clicks e-services on: http://thefalken.livejou

Re: [flexcoders] Re: advanced datagrid sub header

2008-02-25 Thread Scott Melby
Have not done that... but, worst case it seems you could set the headerRenderer of those columns to an IFactory that creates a component with 0 height. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com majid.tahir wrote: Thanks Scott for the help but showHead

[flexcoders] Re: Advanced datagrid dataprovider changing error

2008-11-17 Thread valdhor
I don't have AdvancedDataGrid but I do see a problem in your code: I assume the two buttons are to change data providers but both buttons set the dataprovider to dpHierarchy.

Re: [flexcoders] Re: Advanced datagrid dataprovider changing error

2008-11-17 Thread Vivian Richard
Thanks for pointing that out. Yes one sould be dpHierarchy and the other should be dpHierarchy1. But still my code does not work. The following solves the issue: http://www.adobe.com/2006/mxml";>

[flexcoders] Re: Advanced datagrid with grouping to Excel

2009-02-26 Thread w_page3
No takers on this one...Seems like a common request that would be helpful to all in this community... Or is the request very simple and I am missing something?

[flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-22 Thread lostinrecursion
Thanks Tom. As I go through the book, I am seeing more and more of that approach. Also shocking to me is that, although it has become a widely accepted way to develop large apps, Cairngorm isn't even so much as given a footnote in the book. Well, it is a great resource anyway, but not what I expec

[flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-22 Thread maury.sword
--- In flexcoders@yahoogroups.com, "lostinrecursion" <[EMAIL PROTECTED]> wrote: > > Evening folks, > > I finished reading a chapter in the new book, RIAs with Flex and Java. > Specifically, I was reading Chapter 11: Advanced Datagrid which > introduces the concept of a destination aware componen

[flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-22 Thread lostinrecursion
Maury, Good points. And forgive me for the "totally ignoring" bit. It was late and I was cranky. :) You do make a valid point when you say that it seems no different than the StatesComboBox that displays US States all the time. I guess I am getting hung up on this because I primarily use Cairngo

[flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-22 Thread maury.sword
Kenny, No problem. I haven't used Cairngorm. I'm working in an environment where we have 30,000+ CF pages and 1000+ Flex 1.5 files. We've been using CF since the Allaire days. I'm currently finishing up the migration of my Flex 1.5 code to Flex 2. We have several applications that interac

[flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-22 Thread anatolet
7;t the only valid approach. > > Matt > > -Original Message----- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Tom Chiverton > Sent: Thursday, March 22, 2007 6:30 AM > To: flexcoders@yahoogroups.com > Subject: Re: [flexcoders] Re: Advan

[flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-22 Thread anatolet
Douglas, If I remember it correctly, in daoFlex you can specify "customization" method/class. It causes 2 things: 1. Adds optional String parameter to the signature - usually xml or pipe separated information for "query by example" type of modifications to your "employee" query. 2. Transfers ori

[flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-22 Thread anatolet
Maury, Please take a look @ the subchapter on resources (somewhere close to the end of chapter 8 - did not get my copy of the book with real page numbers yet). Basically it talks about moving destination part along with key columns and some other properties into separate class - there you can pr

[flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-23 Thread Maury Sword
Anatole, I just ordered my copy yesterday and downloaded the PDF version but I haven't had time to do much reading yet. I'll be sure to pay close attention to that part of the book. I'm always looking for ways to improve my class libraries and coding techniques. It's refreshing to see someo

Re: [flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-22 Thread Tom Chiverton
On Thursday 22 Mar 2007, lostinrecursion wrote: > Thanks Tom. As I go through the book, I am seeing more and more of > that approach. For the purposes of learning, taking your first few steps and building the first few apps, it's fine. You don't want an example of X made unclear by also doing lot

Re: [flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-22 Thread Douglas Knudsen
me2. Built a employee search component to search through our DB of 20,000+ employees. I wanted this component to be a 'drop in and work' component existing on it on, thus the RO calls and such are inside it. DK On 3/22/07, maury.sword <[EMAIL PROTECTED]> wrote: --- In flexcoders@yahoogroup

RE: [flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-22 Thread Matt Chotin
, but it isn't the only valid approach. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Thursday, March 22, 2007 6:30 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Advanced DataGrid / Destination Awa

Re: [flexcoders] Re: Advanced DataGrid / Destination Aware intros tight coupling?

2007-03-23 Thread Douglas Knudsen
Anatole, In my case I needed a 100% ColdFusion based back-end solution, so couldn't really use DAOFlex. I did sit in on your session at MAX2006 though, quite a tool you have there! DK On 22 Mar 2007 23:17:44 -0700, anatolet <[EMAIL PROTECTED]> wrote: Douglas, If I remember it correctly, in