I am setting the property: AddNewRowDefault.View = top
However it keeps adding the new row at the bottom of the data island when I click the AddNewBox.
What am I missing???
Here is help for the rows CSOM:
http://help.infragistics.com/Help/NetAdvantage/NET/2008.3/CLR3.5/html/WebGrid_Rows_Object_CSOM.html
to remove you can also use row.remove()
There is only a remove() method on the CSOM of the rows collection. I do not see a insert() method. Please advise.
This property is for the AddNewRow (special row to enter new row values). When a new row is added to the grid it is always added to the bottom. If you'd like it to appear on the top, you'll need to use remove() insert() methods off the roows collection to reposition the row.