Amazing! It works! Still, it might be easier if there were a <InlineEditSettings> tag for each Column just like the <EditFormSettings> tag
.
protected void OnGridStartRowEditing(object sender, ASPxStartRowEditingEventArgs e)
{
((ASPxGridView)sender).Columns["Description"].Visible = true;
}
protected void OnGridAfterPerformCallback(object sender, ASPxGridViewAfterPerformCallbackEventArgs e)
{
if (e.CallbackName == "CANCELEDIT" || e.CallbackName == "UPDATEEDIT")
((ASPxGridView)sender).Columns["Description"].Visible = false;
}