DataGrid Multiple lines
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
DataGrid Multiple lines
I know how to get one line of a datagrid that is highlighted but how do I get multiple lines of data when I allow multi row highlights?
Re: DataGrid Multiple lines
Hi
Does the "dgHilitedLines" do what you need? This is a comma delimited list.
Craig Newman
Does the "dgHilitedLines" do what you need? This is a comma delimited list.
Craig Newman
Re: DataGrid Multiple lines
yes, that worked and then I had to do repeat process to get the id's of the highlighted lines.
thanks
thanks
Re: DataGrid Multiple lines
Sure. Once you get that list, the only way to act on each line is, well, one at a time.
Craig
Craig
Re: DataGrid Multiple lines
the dgHilitedIndexesdantomlin wrote:......and then I had to do repeat process to get the id's of the highlighted lines.
will give you the indexes of the highlighted lines directly.
Regards,
Sri
Re: DataGrid Multiple lines
deleteIndexdunbarx wrote:... Once you get that list, the only way to act on each line is, well, one at a time.
deleteLine
RefreshIndex
RefreshLine
etc.
take a list of indexes or line numbers as argument.
Regards,
Sri