Hello
I am running into the technical issue trying to use the latest version (Q2 2008) Rad Grid ASP.NET in our application
I am building module that generates columns of the gird in the code behind (on page load event). I am also using built in paging, filtering and sorting on the grid
everything works fine until i try to add a custom column (inherited from the GridBound column)
the column does get rendered in the grid but when i try any further actions such as paging, sorting and filtering they are stopped by the following error
Cannot create column with the specified type name: TestColumn
My TestColumn has currently no implementation in it besides being derived from GridBoundColumn as following:
public class TestColumn : GridBoundColumn
{
public override GridColumn Clone()
{
return base.Clone();
}
public override void InitializeCell(TableCell cell, int columnIndex, GridItem inItem)
{
base.InitializeCell(cell, columnIndex, inItem);
}
}
I am running into the technical issue trying to use the latest version (Q2 2008) Rad Grid ASP.NET in our application
I am building module that generates columns of the gird in the code behind (on page load event). I am also using built in paging, filtering and sorting on the grid
everything works fine until i try to add a custom column (inherited from the GridBound column)
the column does get rendered in the grid but when i try any further actions such as paging, sorting and filtering they are stopped by the following error
Cannot create column with the specified type name: TestColumn
My TestColumn has currently no implementation in it besides being derived from GridBoundColumn as following:
public class TestColumn : GridBoundColumn
{
public override GridColumn Clone()
{
return base.Clone();
}
public override void InitializeCell(TableCell cell, int columnIndex, GridItem inItem)
{
base.InitializeCell(cell, columnIndex, inItem);
}
}