Hi,
Recently I upgraded to Version 2015.1.401.45. After this upgrade, a column with name 'IsNew' that should be hidden. was displayed, although in the version before it is not displayed.
When debugging, I found out, that this column is renamed automatically to IsNew1. There is no other column with the same name in my datasource.
So I suppose, that with the new version IsNew is recognized to be a keyword??
This is the method for hiding columns:
private
void
HideColumns()
{
//set the visibility of columns defined in HiddenColumns to false
if
(CGGrid.MasterTableView.Items.Count >= 0)
{
foreach
(var item
in
HiddenColumns.Where(item => !String.IsNullOrEmpty(item)))
{
try
{
var column = CGGrid.MasterTableView.GetColumn(item);
if
(column !=
null
) column.Visible =
false
;
}
catch
(Exception e)
{
LOGGER.Error(e);
}
}
}
}