修改 AppointmentFormExPT.ascx 中的 控件 edtResource,添加事件 ondatabound

<dxe:ASPxComboBox  ID="cbReminder" ClientInstanceName="_dxAppointmentForm_cbReminder" runat="server" Width="100%" 
                       DataSource='<%# ((AppointmentFormTemplateContainer)Container).ReminderDataSource %>'
                       ondatabound="edtResource_DataBound" />

 

protected void edtResource_DataBound(object sender, EventArgs e)
       {
           edtResource.Items.RemoveAt(0);
       }

相关文章:

  • 2021-09-27
  • 2021-05-31
  • 2021-05-20
  • 2022-02-20
  • 2021-11-12
  • 2018-11-22
  • 2021-05-26
猜你喜欢
  • 2021-12-05
  • 2021-12-06
  • 2021-05-25
  • 2022-01-10
  • 2022-12-23
  • 2021-10-27
  • 2022-12-23
相关资源
相似解决方案