This is perfect, and just what i was looking for. There are a lot of solutions on this board about firing Command Events programatically, but they all have the form:
if (radGrid1.Items.Count > 0)
{
radGrid1.Items[0].FireCommandEvent("InitInsert", "");
}
which works great as long as you actually have 1 or more items. The Add New Record button should be callable regardless of how many items are in the grid, and this solution does exactly that!
Thanks!
MK