[flexcoders] Datagrid sort function

2009-06-19 Thread flexaustin
Wondering if any has built a custom sort function that can handle a mix of IP Addresses and names like so? Alpha Beta Zulu 0.0.0.0 192.168.168.1 192.168.168.11 192.168.168.23 192.168.168.231

RE: [flexcoders] DataGrid sort

2009-05-20 Thread Alex Harui
...@yahoogroups.com] On Behalf Of mhbmarcos Sent: Wednesday, May 20, 2009 9:13 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid sort Hi!!, i have a problem with dataGrid the dataGrid have into dataGridColumn a sortable function, so if sort this column, sort correct

[flexcoders] DataGrid sort

2009-05-20 Thread mhbmarcos
Hi!!, i have a problem with dataGrid the dataGrid have into dataGridColumn a sortable function, so if sort this column, sort correct, but if then i have select any row, againt execute the sortableColumn. Please, solution for this? how to remove sortable function? thanks

[flexcoders] Datagrid - Sort Error

2008-09-05 Thread sleblang
I am getting the following error when attempting to run a sort on a datagrid's dataprovider (which is an XMLListCollection). It doesn't occur the first time I run the sort, however all subsequent runs result in an error: Error: Find criteria must contain at least one sort field value Here is the

Re: [flexcoders] Datagrid - Sort Error

2008-09-05 Thread Igor Costa
Try This. http://blog.flexexamples.com/2008/04/09/creating-a-custom-sort-on-a-datagrid-control-in-flex/ It will help you. Regards Igor Costa www.igorcosta.org On Fri, Sep 5, 2008 at 7:53 PM, sleblang [EMAIL PROTECTED] wrote: I am getting the following error when attempting to run a sort

[flexcoders] Datagrid sort order: is there a natsort() such as in PHP?

2008-05-06 Thread mr_j_harris
Datagrid sort order: is there a natsort() such as in PHP? This is sort order on some strings: 1 10 11 2 21 23 This natsort order on the same strings: 1 2 10 11 21 23 In short, it deals sanely with a numeric string suffix. Anything like that in Flash/Flex out-of-the-box? -- John

[flexcoders] DataGrid Sort by Date problem -- Flex 2

2008-01-07 Thread vkc_nair
Hi All, I'm having problem with DataGrid sort by date column. My date value in the XML file is as =Mon Apr 03 15:18:59 PDT 2006. Put the value on DataGrid like mx:DataGridColumn dataField=prechecked headerText=Prechecked sortCompareFunction=date_sortCompareFunc / I have a date

Re: [flexcoders] DataGrid Sort by Date problem -- Flex 2

2008-01-07 Thread Tom Chiverton
On Monday 07 Jan 2008, vkc_nair wrote: Date(Date.parse(itemA.prechecked)); Date.parse() isn't as good as you think ? -- Tom Chiverton Helping to autoschediastically disintermediate leading-edge customers on: http://thefalken.livejournal.com

Re: [flexcoders] DataGrid Sort Arrow

2007-02-14 Thread Tom Chiverton
On Tuesday 13 Feb 2007, Dana Gutride wrote: row cell? Will I need to extend the datagrid class and rewrite the function that creates the sort arrow It's a property of the skin, I think, so you'll need to write an alternative class and reference that in the header styles. There is source code

[flexcoders] DataGrid Sort Arrow

2007-02-13 Thread Dana Gutride
Hi: I've spent a good deal (too much) time trying to change the data grid sort arrow location. My header row is all custom renderers with text that is rotated 90 degrees. Because of that, the sort arrow ends up in a horrible location. Any ideas on how to move it to the bottom/center of the

[flexcoders] DataGrid sort direction arrow

2007-02-01 Thread Robert Chyko
Is there any way to force the sort direction arrows on a DataGridColumn to be displayed? What I need to do is save the direction a column has been sorted and then when the user reloads the app I have to set the grid up just like they last left it. I can easily enough sort the data correctly

RE: [flexcoders] DataGrid Sort Direction

2006-03-27 Thread Matt Chotin
To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid Sort Direction Hi, How can I read sort direction (ASC/DESC) when user clicks on Grid column to sort? Thanks Agha Mehdi IDT - eBusiness Program Manager Work: 408.284.8239 Cell : 209.275.0482 Fax : 408.284.2766

RE: [flexcoders] DataGrid Sort Direction

2006-03-26 Thread Rajni
Hi,Try this code :mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml backgroundColor=#FF mx:Script ![CDATA[ function showArrow(){ myGrid.sortItemsBy(name,asc); myGrid.sortIndex = 1; myGrid.sortDirection = ASC; myGrid.placeSortArrow(); } function showArrow1(){

[flexcoders] DataGrid Sort Direction

2006-03-24 Thread Mehdi, Agha
Hi, How can I read sort direction (ASC/DESC) when user clicks on Grid column to sort? Thanks Agha Mehdi IDT - eBusiness Program Manager Work: 408.284.8239 Cell : 209.275.0482 Fax : 408.284.2766 -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Datagrid sort Arrows

2006-02-14 Thread Jonathan Miranda
let your opponent see your pieces. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Monday, February 13, 2006 10:43 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Datagrid sort Arrows Call placeSortArrow() on the DG and assuming

RE: [flexcoders] Datagrid sort Arrows

2006-02-14 Thread Deepa Subramaniam
To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Datagrid sort Arrows Hmmm, Im calling it in the return of the service that populates my datagrid and Im getting nothing. What specifically do you mean sort was assigned? _ Jonathan Miranda Flexible

[flexcoders] Datagrid sort Arrows

2006-02-13 Thread Jonathan Miranda
Anyway to start a DataGrid with these showing on initial load? _ Jonathan Miranda Flexible Master of the Web In the game of chess, it's important to never let your opponent see your pieces. -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Datagrid sort Arrows

2006-02-13 Thread Matt Chotin
@yahoogroups.com Subject: [flexcoders] Datagrid sort Arrows Anyway to start a DataGrid with these showing on initial load? _ Jonathan Miranda Flexible Master of the Web In the game of chess, it's important to never let your opponent see your pieces

RE: [flexcoders] Datagrid sort on float numbers problem

2005-10-11 Thread Matt Chotin
-mail) Subject: [flexcoders] Datagrid sort on float numbers problem Hi all, I have the following service: mx:HTTPService id=search method=get url=""> showBusyCursor=true/ and this datagrid mx:DataGrid dataProvider={search.result.results.fund} width=100% mx:colu

[flexcoders] Datagrid sort on float numbers problem

2005-10-07 Thread Alban Soupper
Hi all, I have the following service: mx:HTTPService id=search method=get url=/search.do showBusyCursor=true/ and this datagrid mx:DataGrid dataProvider={search.result.results.fund} width=100% mx:columns mx:Array mx:DataGridColumn headerText=Fund