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
355
Ultragrd 9.2 keeps setting a specific column to hidden
posted

NEVERMIND.  I found that the property name has actually changed in since first createing this form.

...using UltraWinGrid 9.2.20092.1003 and VS2010

this grid uses a manually defined schema that was built by using the "import schema from DataSource..." but is not bound to any Datasource.

Only a few of the properties are needed, so most are hidden.  

One field in particular continually gets hidden after after binding setting the Datasource property.  Before any data is bound, I can see all columns as expected, but after binding this one column disappears.

Are there any default rules or settings that I need to override?

WHAT I'VE TRIED

  • in the InitializeLayout method I've added

var docCreateDt = band.Columns.Exists("CreatedDate") ? band.Columns["CreatedDate"] : band.Columns.Add("CreatedDate", "Document Created Date");
docCreateDt.Hidden = false;

  • I verified that the desinger does not have UltraGridColumn10.Hidden = true.