Re: [flexcoders] Re: Horizontal alignment of inline checkbox in datagrid component

2006-10-14 Thread Aaron West
Over the last several days I've done tons of work with custom Checkboxes in DataGrid's. I have not tried the below recommendation from iko_knyphausen but I can offer my own experience. For me, I wanted to center the Checkbox in the DataGrid column. Using the DataGridColumn itself yield no positive

[flexcoders] Re: Horizontal alignment of inline checkbox in datagrid component

2006-10-14 Thread iko_knyphausen
I finally got around to testing your suggestion.     editable="false" width="65" headerText="Member" textAlign="center">       …. The inline data.member works well but you have to switch "editable" property off, and update the listitem data manually via change event. Unfortunately, c

[flexcoders] Re: Horizontal alignment of inline checkbox in datagrid component

2006-10-11 Thread haravallabhan
Iam just wondering How a Layout component has some affect on data?. It works for me.. selected = {data.ColumnDataField} shoue populate the value. --- In flexcoders@yahoogroups.com, "Iko Knyphausen" <[EMAIL PROTECTED]> wrote: > > I tried that, and indeed it will help align the checkbox, unfort

RE: [flexcoders] Re: Horizontal alignment of inline checkbox in datagrid component

2006-10-11 Thread Iko Knyphausen
I tried that, and indeed it will help align the checkbox, unfortunately the data binding stops working. In other words, the moment you have an hbox around the checkbox, the checkbox does not show as “checked” in those rows that have “true” as data value. Hi, You can use HBox comp

[flexcoders] Re: Horizontal alignment of inline checkbox in datagrid component

2006-10-11 Thread haravallabhan
Hi, You can use HBox component or anoother layout compnent to say, inside the itemRenderer like thanks. --- In flexcoders@yahoogroups.com, "iko_knyphausen" <[EMAIL PROTECTED]> wrote: > > > Hi, > > I am trying to use checkbox