void ControlOnAppointmentRowInserting(object sender, ASPxSchedulerDataInsertingEventArgs e)
 {
     // Autoincremented primary key case
     e.NewValues.Remove("ID");
 }
 protected void ASPxScheduler1_AppointmentRowInserting(object sender,
                                                       ASPxSchedulerDataInsertingEventArgs e)
 {
     // Remove unnecessary ID field.
     e.NewValues.Remove("ID");
 }
Beispiel #3
0
 protected void ASPxScheduler1_AppointmentRowInserting(object sender, ASPxSchedulerDataInsertingEventArgs e)
 {
     e.NewValues.Remove("UniqueID");
 }
Beispiel #4
0
 // DXCOMMENT: This handler is called before appointment data is posted to the datasource for insertion
 protected void Scheduler_AppointmentRowInserting(object sender, ASPxSchedulerDataInsertingEventArgs e)
 {
     // DXCOMMENT: This method removes the ID field from the row insert query
     e.NewValues.Remove("ID");
 }
Beispiel #5
0
 // DXCOMMENT: This handler is called before appointment data is posted to the datasource for insertion
 protected void Scheduler_AppointmentRowInserting(object sender, ASPxSchedulerDataInsertingEventArgs e)
 {
     // DXCOMMENT: This method removes the ID field from the row insert query
     e.NewValues.Remove("ID");
 }