Hi.
Is that possible to set a style for a single row selector? For example, when something has changed in the very last cells of this row and they're not in visible area? I need to put custom icon on row selector, something like a pensil on edited row
Thank you.
The Service Release was released on 25 Nov.
http://blogs.infragistics.com/blogs/vince_mcdonald/archive/2009/11/30/service-release-published-netadvantage-for-net-silverlight-november-25-2009.aspx
Hi,
Can you tell expected release date for Silverlight 9.2?
Thanks
Currently no, however this issue has been addressed in the upcoming Service Release and the Silverlight 9.2 Line of Business release.
When these become available you will be able to set the Style on an individual row selector in a manner like this.
// Loads a style from a resouce file
Style directCellStyle = this.LoadXaml("RowSelectorCellControlDirectCellStyle", this.XamlFile) as Style;
// sets the loaded style to an individual row selector on the top level rows collection.
grid.Rows[0].Cells[grid.Columns.RowSelectorColumn].Style = directCellStyle;