RE: [flexcoders] Hiding 'Null'...

2005-05-31 Thread Dimitrios Gianninas
Hi, You will have to set the data in the TextInput manually and verify the value before you set it, like so: myTextInput.text = ( myData == undefined || myData == null || myData == "null" || myData == "" )? "": myData; Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc.

RE: [flexcoders] Hiding 'Null'...

2005-05-31 Thread Tracy Spratt
First, I haven't noticed this behavior, but that doesn't mean much. I assume you are binding the textInput to the selectedItem of the datagrid? If you don't have control over the data source, you can use the ternary expression format: Text={(myDataGrid.selectedItem.myProperty == null ) ? :