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
485
Dropdown Calender doesn't update field
posted

I have a grid that has a couple of nullable datetime fields.  I can entered the date without use of the calender dropdown.  But when using the dropdown calender, the field is not being updated. 

Parents
No Data
Reply
  • 48586
    Verified Answer
    posted

    Hello ,

    By default  UltraGrid updates underling data source on row change, so what you could do in your case is to set ultraGrid1.UpdateMode = Infragistics.Win.UltraWinGrid.UpdateMode.OnCellChangeOrLostFocus;, so when you select a date from dropdown calendar and leave the cell, the change will be applied on the underlying data source, please run the attached sample and choose a date from DateColumn of UltraGrid1, then leave the cell and see the changes of Ultragrid2.

     
    Please let me know If you have any further questions. 

     

    112498.zip
Children