Wrap text is not working in Syncfusion.Window.Forms.Grid.Grouping.GridGropingControl
Wrap text is not working in Syncfusion.Window.Forms.Grid.Grouping.GridGropingControl
only showing 4 character you can see field as 'Ctpy' in grid.
you can see code too, if you have code then pls attach me. i want filter and grouping, may be this can create problem
Wraptext0.zip
only showing 4 character you can see field as 'Ctpy' in grid.
you can see code too, if you have code then pls attach me. i want filter and grouping, may be this can create problem
Wraptext0.zip
SIGN IN To post a reply.
4 Replies
HA
haneefm
Syncfusion Team
May 9, 2007 08:38 PM UTC
Hi,
By default, the text in a cell wraps into a different line. You would have to probably make the cell taller to see the wrapped text. To change the rowheight of the column header, try setting the TableOptions.ColumnHeaderRowHeight property. Below is a code snippet.
this.gridGroupingControl1.TableOptions.ColumnHeaderRowHeight = 50;
this.gridGroupingControl1.TableOptions.RecordRowHeight = 70;
Also refer the below forum thread for more details.
http://www.syncfusion.com/Support/Forums/message.aspx?&MessageID=60033
Let me know if this is not what you needed.
Best regards,
Haneef
By default, the text in a cell wraps into a different line. You would have to probably make the cell taller to see the wrapped text. To change the rowheight of the column header, try setting the TableOptions.ColumnHeaderRowHeight property. Below is a code snippet.
this.gridGroupingControl1.TableOptions.ColumnHeaderRowHeight = 50;
this.gridGroupingControl1.TableOptions.RecordRowHeight = 70;
Also refer the below forum thread for more details.
http://www.syncfusion.com/Support/Forums/message.aspx?&MessageID=60033
Let me know if this is not what you needed.
Best regards,
Haneef
AS
Ashok
May 10, 2007 12:44 AM UTC
Thanks Haneef
this code is useful for me, but my grid column filter not working
this.gridGroupingControl1.TableDescriptor.Columns[0].AllowFilter = true;
not showing filter column.
>Hi,
By default, the text in a cell wraps into a different line. You would have to probably make the cell taller to see the wrapped text. To change the rowheight of the column header, try setting the TableOptions.ColumnHeaderRowHeight property. Below is a code snippet.
this.gridGroupingControl1.TableOptions.ColumnHeaderRowHeight = 50;
this.gridGroupingControl1.TableOptions.RecordRowHeight = 70;
Also refer the below forum thread for more details.
http://www.syncfusion.com/Support/Forums/message.aspx?&MessageID=60033
Let me know if this is not what you needed.
Best regards,
Haneef
this code is useful for me, but my grid column filter not working
this.gridGroupingControl1.TableDescriptor.Columns[0].AllowFilter = true;
not showing filter column.
>Hi,
By default, the text in a cell wraps into a different line. You would have to probably make the cell taller to see the wrapped text. To change the rowheight of the column header, try setting the TableOptions.ColumnHeaderRowHeight property. Below is a code snippet.
this.gridGroupingControl1.TableOptions.ColumnHeaderRowHeight = 50;
this.gridGroupingControl1.TableOptions.RecordRowHeight = 70;
Also refer the below forum thread for more details.
http://www.syncfusion.com/Support/Forums/message.aspx?&MessageID=60033
Let me know if this is not what you needed.
Best regards,
Haneef
AS
Ashok
May 10, 2007 09:42 AM UTC
Hi haneef,
this code is use full,
this.gridGroupingControl1.TableDescriptor.Columns[0].AllowFilter = true;
can you give me solution.
>Thanks Haneef
this code is useful for me, but my grid column filter not working
this.gridGroupingControl1.TableDescriptor.Columns[0].AllowFilter = true;
not showing filter column.
>Hi,
By default, the text in a cell wraps into a different line. You would have to probably make the cell taller to see the wrapped text. To change the rowheight of the column header, try setting the TableOptions.ColumnHeaderRowHeight property. Below is a code snippet.
this.gridGroupingControl1.TableOptions.ColumnHeaderRowHeight = 50;
this.gridGroupingControl1.TableOptions.RecordRowHeight = 70;
Also refer the below forum thread for more details.
http://www.syncfusion.com/Support/Forums/message.aspx?&MessageID=60033
Let me know if this is not what you needed.
Best regards,
Haneef
GGC_Forum_ResizeToFit_a41fcf800.zip
this code is use full,
this.gridGroupingControl1.TableDescriptor.Columns[0].AllowFilter = true;
can you give me solution.
>Thanks Haneef
this code is useful for me, but my grid column filter not working
this.gridGroupingControl1.TableDescriptor.Columns[0].AllowFilter = true;
not showing filter column.
>Hi,
By default, the text in a cell wraps into a different line. You would have to probably make the cell taller to see the wrapped text. To change the rowheight of the column header, try setting the TableOptions.ColumnHeaderRowHeight property. Below is a code snippet.
this.gridGroupingControl1.TableOptions.ColumnHeaderRowHeight = 50;
this.gridGroupingControl1.TableOptions.RecordRowHeight = 70;
Also refer the below forum thread for more details.
http://www.syncfusion.com/Support/Forums/message.aspx?&MessageID=60033
Let me know if this is not what you needed.
Best regards,
Haneef
GGC_Forum_ResizeToFit_a41fcf800.zip
HA
haneefm
Syncfusion Team
May 10, 2007 07:15 PM UTC
Hi,
If you want to show the auto filter row in a grid then set the ShowFilterBar property to true.
//For TopLevelGroup
this.gridGroupingControl1.TopLevelGroupOptions.ShowFilterBar = true;
//For all nested level.
this.gridGroupingControl1.NestedTableGroupOptions.ShowFilterBar = true;
//For all child groups
this.gridGroupingControl1.ChildGroupOptions.ShowFilterBar = true;
Best regards,
Haneef
If you want to show the auto filter row in a grid then set the ShowFilterBar property to true.
//For TopLevelGroup
this.gridGroupingControl1.TopLevelGroupOptions.ShowFilterBar = true;
//For all nested level.
this.gridGroupingControl1.NestedTableGroupOptions.ShowFilterBar = true;
//For all child groups
this.gridGroupingControl1.ChildGroupOptions.ShowFilterBar = true;
Best regards,
Haneef
SIGN IN To post a reply.
- 4 Replies
- 2 Participants
-
AS Ashok
- May 9, 2007 06:26 PM UTC
- May 10, 2007 07:15 PM UTC