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
1735
Column with format hh:mm:ss.ff resets the frame part in AfterExitEditMode event
posted

Hi,

 

I have an editable DateTime column in UltraWinGrid and it displays the value in hh:mm:ss.ff format.

When the cell is in active(edit mode) it displays the entire value correctly like 00:00:29.17 but as soon as if some other cell is clicked it displays 00:00:29.00

 Again if we click the previous cell again then in the edit mode it shows entire value 00:00:29.17

Is there any property which is needed to be set.

 

 

 

Thanks,

Chitra

Parents
  • 1735
    posted

    Hi,

     

    Just to add, following property are set in InitializeLayout() event for the column

     

                    With .Columns.Item("offset_inpoint")

                        .Header.Caption = "Inpoint"

                        .Header.Appearance.TextHAlign = HAlign.Center

                        .Header.VisiblePosition = 4

                        .CellAppearance.TextHAlign = HAlign.Center

                        .Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Edit

                        .MaxLength = 90

                        .MaskDataMode = UltraWinMaskedEdit.MaskMode.IncludeLiterals

                        .MaskDisplayMode = UltraWinMaskedEdit.MaskMode.IncludeLiterals

                        .MaskClipMode = UltraWinMaskedEdit.MaskMode.IncludeLiterals

                        .MaskInput = "hh:mm:ss.##"

                        .Format = "HH:mm:ss.ff"

                        .CellActivation = Activation.AllowEdit

                    End With

     

    Thanks,

    Chitra

Reply Children
No Data