Hello
I have not found a deep explanation in the help files about the Template AddRow. What is it and what is it used for? What is the difference between IsAddRow and the IsTemplateAddRow properties?
Thanks a lot.
The main difference is that a TemplateAddRow is not a "real" row. It has no corresponding row in the data source of the grid. It's basically a dummy row that looks like a real row to the user. Once the user clicks on this row and begins editing, the grid will add a new row to it's underlaying DataSource and it becomes an AddRow - no longer a TemplateAddRow.
Hi Mike,
I got a TemplateAddRow that I want to stay as the active row after the grid loses focus. At the moment, when the grid loses focus and the active row is the TemplateAddRow then the grid automatically selects the last "real" row in the grid. Is there anyway to prevent this behaviour from happening.
Thanks