Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
almcnicoll #1
Column count for list box won't change
I'm using a static XML set to populate a list box. Because I want to control
which columns (fields) are visible and which rows (records) are displayed, I'm
parsing the XML into an array of objects with the required properties. An
example of the array could be:
dp ==
This displays the data just as I want it.
Then, depending on filter/sort combos within the movie, I want to change the
display. The user has filtered/sorted on columns Matriculation Year and Status
(both of which are in the original static XML). The newly generated array looks
like this:
dp ==
However, when I set
myListComponent.dataProvider = dp;
the number of columns remains fixed at one. I can only view the FullName and
not MatriculationYear or Status. I looked through LiveDocs and through the
actionscript class "List.as" in search of a method that would cause it to
reevaluate the column count, but have come up dry. Any help would be really
appreciated...
Thanks,
Al McNicoll
Integritec Ltd
almcnicoll Guest
-
Converting a 3 column pdf address list to a one column MS word doc
I need to convert a 3 col pdf into a manipulable text doc. Acrobat gives me lots of ways to do this in the normal program, but it doesn't preserve... -
DataGrid.Column.Count is empty?
Hello, I have created my own datagrid control, derived from datagrid. Now my webform uses this datagrrd and calls the ItemDataBound method,... -
column count
Thanks in advance. Is it possible to get the column/field count of a subform. I'm trying to get a count of the visible columns in the subform.... -
Datagrid Column Count HELP
How do I determine the last column in a datagrid with auto-generated columns. I need to use the column.AddAt method to add a button column to the... -
Datagrid column count = 0??
OK, I'm missing something obvious here... I have a datagrid that I populate in the code-behind page thusly: adptr = new OleDbDataAdapter("SELECT... -
almcnicoll #2
Re: Column count for list box won't change
Answered own question:
Calling
listComponent.init();
seems to work. It hadn't worked before because I was trying to call
listComponent.dataProvider.init(), which was a stupid mistake to have made!
almcnicoll Guest



Reply With Quote

