Hi there,
On a radGrid, I am getting an exception message that says Object must implement IConvertible! In(UserAccountGrid_ItemDeleted)When I try and delete an Item.
My rad grid has objectdatasource, It allows automaticdeletes but no autogenerated delete method rather I have my delete button made in a column.
I see this problem only when I add ID as my DataKeyName (DataKeyNames="ID,UName,DName") on the MasterTableView, My delete method works perfectly without the ID , Unfortunately I need ID for Other methods like “Replacing” an Item...
Now In my delete method I actually don’t need the ID. however It appears that If I have certain fields as datakeynames, my objectdatasource method has to implement those fields. for example If I had ColumnID as
my dataKeyName, My update delete, insert , select methods need to accept it as their parameter. It actually throws an exception saying so if they don't.
So I ended up just implementing it (faking it).
So my question is, IS this a known telerik issue?
Is there a different way to get the ID without making it my datakeyName?