can I just clarify something?... the following is a correct analysis, yes?
/******************************************************************************/
override public function set data(value:Object):void {
// DataGrid use only
if (listData && listData is DataGridListData){
value[DataGridListData(listData).dataField] = checked(value[DataGridListData(listData).dataField]);
// for use with lists only
}else if{ (listData is ListData && ListData(listData).labelField in data){
value[ListData(listData).labelField] = checked(value[ListData(listData).labelField]);
}
// also covers simple (eg: non datagrid) use of this custom control
super.data = "">}
/******************************************************************************/
additionally,
where would I be able to plug in the display formatting, especially if I wanted to, not have it hard coded, but bind it to some config data?
<mx:DataGridColumn dataField="EndEval" editable="true" width="100"
headerWordWrap="true" headerText="End Evaluation"
rendererIsEditor="true"
headerWordWrap="true" headerText="End Evaluation"
rendererIsEditor="true"
itemRenderer="com.theriabook.controls.DateField"
dateFormat="{ locale.getDateFormat()}" />
dateFormat="{ locale.getDateFormat()}" />
this is not yet possible, yes? so I'd have to bind the dateFormat within the control itself?
ultimately, I'm looking for an abstracted API (well...enough of one) that I can quicly set (and change) values of.
any suggestions?
thanx
barry.b
__._,_.___
SPONSORED LINKS
| Custom software development | Database development software | Embedded software development |
| Offshore software development | Software development |
Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe
__,_._,___
