Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
11k views

How can i make a reusable labelFunction for Flex Datagrid?

I have a label function like : private function formatDate (item:Object, column:DataGridColumn):String { var df:DateFormatter = new DateFormatter(); df.formatString = "MM/DD/YY"; if ...
2
votes
1answer
346 views

Flex DataGrid labelFunction not getting called

I have a DataGrid where one of the columns has a labelFunction. When I run the application a scrollbar shows up in the DataGrid indicating to me that it has data but there is nothing in the DataGrid. ...
1
vote
2answers
487 views

Problems with indepth flex loading of value objects (Lazy loading at the front-end?)

I'm using a java-backend with a flex frontend. And when i want to use a labelfunction it doesn't load the indepth properties such as a value object, it's like it is lazy loaded in the flex side, I'm ...
0
votes
0answers
33 views

Labelfunction not setting value in column [closed]

I assign labelfunction to a column of datagrid like : (grid.columns[1] as AdvancedDataGridColumn).labelFunction = (functionName as function ) the function is getting called . but the label of the ...
0
votes
2answers
158 views

labelFunction and sortCompareFunction and large data sets in Flex

OK, below is a simplified example of what I have to do. So far so good, works A1. The IDs are replaced by the friend name, and the column is sortable. Now, I have to apply this to a system ...
0
votes
1answer
167 views

Labelfunction in Barseries along with plotseries

I have a Flec Bar chart. It has a Bar series. I need to show the datalabel at the tip of the bars. For this am using labelFunction.This works fine. Now I want to add a plotseries in the same chart. ...
0
votes
1answer
201 views

Escaping html special chars in a datagrid column

i have a datagrid (6 columns) which displays strings from the database. I am trying to use a labelfunction to escape html special characters in the string (like &apos,&amp etc). I found this ...
0
votes
1answer
500 views

Flash Datagrid change cell color depending upon updated data

I have a datagrid in my Flash app whose data keeps updating quite frequently. On every update, I need to change the cell color of only those cells whose data has changed. That too, if the updated ...
0
votes
1answer
141 views

Initiating Flex DataGrid rendering

I have a DataGrid where some number of the columns can have a labelFunction. The nature of the labelFunction result can change problematically(eg apply formatting, bypass formatting). How do I get ...
0
votes
2answers
788 views

Flex DatagridColumn LabelFunction Additonal Parameters

I have a datagridcolumn where a labelFunction is defined: private function myLabelFunction(item:Object, column:DataGridColumn):String { var returnVal:String; var nm:NumericFormatter; ...
0
votes
2answers
1k views

Flex DropDownList LabelFunction Issue

I have a dropdown list as : <s:DropDownList id="cad" width="100%" dataProvider="{model.referenceList.refPatientResponseLists}" labelFunction="myFunction" ...
0
votes
1answer
353 views

Get content of a single cells labelFunction from a DataGrid in Flex 3

This is similar to this question I asked last week. My dataGrid is populated with three phone numbers per row. Each phone number is pulled from an array and displayed using a labelFunction, while the ...
0
votes
2answers
215 views

Extract Text based on Character - Flex

I'm using an auto complete component and a labelFunction so that user have the ability to search by their name or id. Once the search is completed I'd like to extract the data to a query. The only ...