I have a grid with a datatime value showing as only date. What property on the grid should I change to show the entire datetime value?
Private Sub UltraGrid1_InitializeLayout(ByVal sender As System.Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs) Handles UltraGrid1.InitializeLayout
e.layout.bands(0).column(0).format = "M/dd/yyyy hh:ss"
I am not defining my columns individually. I am just binding a dataset to a grid that I define in code. Why is the grid column not picking up the format of my dataset column?