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
285
Ultrawingrid Column Formatting Issue
posted

Hello Guys,

I have a problem where i cannot see 4 decimal points in one of the column.

Well in-fact it displays with two decimal points when data is loaded in grid however as soon as you click on the cell that cell is in editable state and i am able to see 4 decimal points.

The code is as follows

Me.DisplayLayout.Bands(0).Columns("ColumnName").MaskInput = "-nnnnnn.nnnn"
Me.DisplayLayout.Bands(0).Columns("ColumnName").PromptChar = Microsoft.VisualBasic.ChrW(32)
Me.DisplayLayout.Bands(0).Columns("ColumnName").Format = "$###,##0.00##;($###,##0.00##);$0.00"

Can anyone help me how am i fix this problem?
       

Parents
No Data
Reply
  • 71886
    Offline posted

    Hello,

    I tried this and it works fine for me with the exact same code. What is the value you are using? Is it happening with every value in your column?

    Could you please post a small sample project which reproduces the issue, so I can take a look at it?

Children