Hello,
I was wondering if there is another way; besides creating a DrawFilter using the example given in Knowledge Base Article KB07204, to remove the pencil image from the row selector column in the grid? The reason I am asking is because I am already using a DrawFilter for replacing the SortIndicators in the headers of the grid, and clearly you can use two DrawFilters for one grid from what I understand. Please advise.
Adrian
Depending on why the pencil is showing up, you could also call Update on the row to commit any pending changes or CancelUpdate on the row to cancel any pending changes. So this obviously doesn't help if the user is editing a row, but if you are editing cell values in code, you should probably just call Update on the row after you are done.
You could also turn off the RowSelectors entirely using the RowSelectors property.
Why not just modify the existing DrawFilter for looking for the UIElement that the KB article mentiones in addition to what you already have? As far as I know, no, there is not another way to accomplish this.
-Matt