User315739805 posted
Can someone help me with gridviewhelper?
What I'm trying to do is group a gridview by a column, using the GridViewHelper [http://www.agrinei.com/gridviewhelper/gridviewhelper_en.htm] by
agrinei.
When I try to apply grouping in a Page_Load
protected void Page_Load(object sender, EventArgs e)
{
GridViewHelper helper = new GridViewHelper(this.GridView1);
helper.RegisterGroup("ShipRegion", true, true);
helper.ApplyGroupSort();
}
it will hide the column, but the new row with the name of a column group wont be created.
I have been testing chaging some code in my aplication to solve the problem and when I remove CSS Friendly Control Adapters for the proyect... boilaa... the control works perfectly
I need CSS Friendly Control Adapters because I´m using CSS.
Please I need help!