how did i set a column invisible? the data (when i later select some row) i still need.in the old ultragrid i did it with
Band.Columns(0).Hidden =
True
Hi Martin,
I can tell you a way to avoid this error. Create a css class:
<style type="text/css">
.hidden
{
display:none;
}
</style>
And then apply it to your column instead of setting Hidden = true:
Datacolumn1.CssClass = "hidden"
I would like to investigate this issue anyway so if it is possible for you to attach a sample in the support ticket that you created it would be very nice (and let me know if you get this error even when you set the css class.
Regards,
Lyuba
Developer Support Engineer
Infragistics
www.infragistics.com/support
Hi Lyuba, (juhu it works)if i writeDatacolumn1.Header.CssClass = "hidden"Datacolumn1.CssClass ="hidden"is important because of the header will display but not the column. if i write both , both is hidden, the complete column is hidden:)many thanks for the help>if it is possible for you to attach a sample in the support ticket that you created it would be very nice i think if you simple write .hidden=false everyone can reproduce the error. hope you can fix itthanks martin