Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
145
Not Getting UpdateCell Event from DateTime Fields...
posted

I have a simple List<CustomObject> that I'm binding to an UltraWebGrid. I've added an UpdateCell event handler to the grid. I get the event on all the fields except for the DateTime fields. I'm also using the InitializeDataSource event handler to bind the grid. When I change a value in the DateTime fields, the InitializeDataSource event fires and reverts my changes. Any ideas?

 

protected void Page_Init(object sender, EventArgs e){

FeeScheduleGrid.InitializeLayout +=

new InitializeLayoutEventHandler(FeeScheduleGrid_InitializeLayout);

FeeScheduleGrid.UpdateCell +=

new UpdateCellEventHandler(FeeScheduleGrid_UpdateCell);

FeeScheduleGrid.InitializeDataSource +=

new InitializeDataSourceEventHandler(FeeScheduleGrid_InitializeDataSource);

...

}

 

 

<SES:SesDataGrid ID="FeeScheduleGrid" runat="server"><DisplayLayout BorderCollapseDefault="Separate" Name="ctl00xFeeScheduleGrid" RowHeightDefault="20px"Version="4.00" AllowUpdateDefault="Yes"><FooterStyleDefault CssClass="listfooter"> </FooterStyleDefault><FrameStyle BorderStyle="Solid" BorderWidth="1px" Font-Names="Verdana" Font-Size="8pt"></FrameStyle><EditCellStyleDefault BorderStyle="None" BorderWidth="0px"></EditCellStyleDefault><HeaderStyleDefault CssClass="ListHead" /><RowStyleDefault CssClass="ListItem"><Padding Left="3px" /></RowStyleDefault><ActivationObject BorderColor="" BorderWidth=""></ActivationObject></DisplayLayout></SES:SesDataGrid>

 

 

Parents
No Data
Reply Children
No Data