Re: sorting datagrids

2022-07-01 Thread Hershel F via use-livecode
this is more what i’m concerned. i’ll give it a shot and let you know. 
thanks.

> On Jun 30, 2022, at 7:26 PM, Bob Sneidar via use-livecode 
>  wrote:
> 
> 
> put the dgText of group "myDataGrid" into tText
> set the itemDelimiter to tab
> 
> repeat with i = 1 to the number of lines of tText
>   put item i of tText into tLine
>   sort items of tLine ascending
>   put tLine into line i of tText
> end repeat
> 
> set the dgText of group "myDataGrid" to tText

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: sorting datagrids

2022-06-30 Thread Bob Sneidar via use-livecode
Or are you talking about sorting the DATA of a datagrid? 

put the dgText of group "myDataGrid" into tText
set the itemDelimiter to tab

repeat with i = 1 to the number of lines of tText
   put item i of tText into tLine
   sort items of tLine ascending
   put tLine into line i of tText
end repeat

set the dgText of group "myDataGrid" to tText

Nothing else would make any sense. 

Bob S


> On Jun 30, 2022, at 15:59 , Hershel F via use-livecode 
>  wrote:
> 
> Hi all, is there any way of sorting a data grid horizontally?
> thanks a mill.
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: sorting datagrids

2022-06-30 Thread Bob Sneidar via use-livecode
Sure there is! 

put the dgProp ["columns"] of group myDatagrid into tGridColumns
sort tGridColumns ascending
set the dgProp ["columns"] of group myDataGrid to tGridColumns

I would store the original sort order first though so you can recover. 

Bob S


> On Jun 30, 2022, at 15:59 , Hershel F via use-livecode 
>  wrote:
> 
> Hi all, is there any way of sorting a data grid horizontally?
> thanks a mill.


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode