Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
leimin3113591 #1
How to show added on visible part of data grid.
hi, I met a problem.
There is a data grid, I can add new item on it. At beginning, there are little
items on data grid, so you can see all of them. But when there are more items,
so that you must move rollbar of data grid to view a item which is not visible
on data grid. Then if you add a new item at the bottom of data grid, you must
move rollbar to bottom to view it. How to show it all the time when I add it,
just looks like anthor in html.
beg for help, thanks very much.
leimin3113591 Guest
-
trying to create data grid on the fly, with templated columns, and then updating all rows in the grid
Hi, Please help, I'm trying to create data grid on the fly, with templated columns, for editing, and then updating all rows in the grid on one... -
Flex 3 advanced data grid grouping, show info with tree
Hi, Sorry for strange title, some times hard to sum up in one sentence. I have a database with annotations (notes) on a proof. Each note as a... -
show the nested table as a column and bind it to data grid
Hi I am using the XML that is hierarchial and when I load the XML into dataset and bind the dataset to datagrid, I was not able to see the low level... -
how to show part of a field?
I have a web page with messages. I want to show the list of the messages only with part of them, for example the first 30 letters/characters. Now... -
data grid not visible
You can create a dataset full of empty spaces and then have the datagrid uses that as its datasource. The code below creates a dataset on the fly... -
ntsiii #2
Re: How to show added on visible part of data grid.
After you add your row, call:
myDataGrid.vPosition = myDataGrid.dataProvider.length;
This will scroll the datagrid to make the last row visible.
Tracy
ntsiii Guest
-
leimin3113591 #3
Re: How to show added on visible part of data grid.
It works fine, thanks.
leimin3113591 Guest



Reply With Quote

