or
void TestingItemView_PreviewDragDrop(object sender, Telerik.WinControls.RadDropEventArgs e)
{
e.Handled = true;
}
A regular grid like query data from DataTable and binding directly
var context =
new
FlockWatchEntities();
var forecast = context.ForecastMSTs.Where(i => i.Type ==
"F"
).OrderBy(i => i.chrDesc);
grdForecast.DataSource = forecast;
private
void
grdForecast_DefaultValuesNeeded(
object
sender, Telerik.WinControls.UI.GridViewRowEventArgs e)
{
e.Row.Cells[
"dtmEntered"
].Value = DateTime.Now;
e.Row.Cells[
"chrEnteredBy"
].Value = System.Security.Principal.WindowsIdentity.GetCurrent().Name;
}