Hi There,
I wondered if there was a way to toggle the AllowAddNew property of the XamDataGrid based on the number of row present in the grid? I would like to allow the user to enter up to 2 rows, but then no longer be allowed to add more unless they first delete one.
Cheers
Jonathan
Hello,
One way to do this is to hook up for RecordUpdated event and inside set AllowAddNew to false if records count is 2. Another event is RecordsDeleted, where you need to set AllowAddNew to true if records count is less than 2.
Hope this helps you.
Regards,
Anastas
It doesnt look like I can access the AllowAddNew property on the XamDataGrid from C# though.
I'm sorry, I wasn't clear enough.
The AllowAddNew is located into FieldLayoutSettings. So basically if you want to change it, you should use this snippet:
MyGrid.FieldLayoutSettings.AllowAddNew = true; // of 'false'