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
2387
Column's not being hidden at runtime
posted

I have an UltraGrid on a form.  In designer mode, I am using the UltraGrid Designer to go in and set most of the columns to hidden.  In the designer I am getting what I expect:

Then when I run the app, I am getting ALL the columns:

Any thoughts on why?  For the record, the collection being displayed is in a hierarchical set of custom business objects where all the collections DO implement a custom  ITypedList interface (See this post for clarification).  I am wondering if the custom ITypedList might have something to do with it.

Sam

 

Parents
  • 69832
    Suggested Answer
    Offline posted

    My first suspicion would be that somewhere in your code (possibly in the InitializeLayout event handler), you are setting the column's Hidden property to false. The easiest way to confirm this is to search the source for the phrase ".Hidden = ".

Reply Children