Width of the filter list
Good morning.
I'm in the filter of my problem GridGroupingControl.
When my grid is clustered, the width of my list of the first column of the filter is created small, not the column width.
How do I make equal the width of the column?
The other columns are now by default only the first column no.
Here's image problem.
Att,
Tomio Padilha
filter_d312d798.zip
I'm in the filter of my problem GridGroupingControl.
When my grid is clustered, the width of my list of the first column of the filter is created small, not the column width.
How do I make equal the width of the column?
The other columns are now by default only the first column no.
Here's image problem.
Att,
Tomio Padilha
filter_d312d798.zip
SIGN IN To post a reply.
4 Replies
RC
Rajadurai C
Syncfusion Team
May 9, 2011 09:23 AM UTC
Hi Tomio,
Thanks for your interest in Syncfusion Products.
We found that similar inquiry was posted as follow-up question under the following forum thread which was answered.
http://www.syncfusion.com/support/forums/grid-windows/99102/
Please follow up with the above mentioned forum thread for any further queries related to this.
Regards,
Rajadurai
Thanks for your interest in Syncfusion Products.
We found that similar inquiry was posted as follow-up question under the following forum thread which was answered.
http://www.syncfusion.com/support/forums/grid-windows/99102/
Please follow up with the above mentioned forum thread for any further queries related to this.
Regards,
Rajadurai
TO
Tomio
May 10, 2011 02:07 PM UTC
Good afternoon.
Follows a model of the problem in VB. And two pictures also show the problem.
I would resaltar that the problem only happens with the filter of the first column when the column is grouped.
Problem: the width of the filter list is smaller than the width of the column.
Tank
Custom_24138267.rar
Follows a model of the problem in VB. And two pictures also show the problem.
I would resaltar that the problem only happens with the filter of the first column when the column is grouped.
Problem: the width of the filter list is smaller than the width of the column.
Tank
Custom_24138267.rar
TO
Tomio
May 11, 2011 04:44 PM UTC
Good morning.
I managed to solve the problem.
I got the code:
Private Sub gridgrouping_tablecontrolcurrentcellshowingdropdown(ByVal sender As System.Object, ByVal e As Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCurrentCellShowingDropDownEventArgs) Handles gridGrouping.TableControlCurrentCellShowingDropDown
Dim widthcollumn As Integer = gridGrouping.TableDescriptor.Columns(0).Width
If (e.Inner.Size.Width < widthcollumn) Then
widthcollumn += 17
e.Inner.Size = New Size(widthcollumn, e.Inner.Size.Height)
End If
End Sub
thank
I managed to solve the problem.
I got the code:
Private Sub gridgrouping_tablecontrolcurrentcellshowingdropdown(ByVal sender As System.Object, ByVal e As Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCurrentCellShowingDropDownEventArgs) Handles gridGrouping.TableControlCurrentCellShowingDropDown
Dim widthcollumn As Integer = gridGrouping.TableDescriptor.Columns(0).Width
If (e.Inner.Size.Width < widthcollumn) Then
widthcollumn += 17
e.Inner.Size = New Size(widthcollumn, e.Inner.Size.Height)
End If
End Sub
thank
RC
Rajadurai C
Syncfusion Team
May 16, 2011 07:12 PM UTC
Hi Tomio,
Thanks for your update.
We are glad to hear that your requirement had been achieved.
Thank you for using Syncfusion Products.
Regards,
Rajadurai
Thanks for your update.
We are glad to hear that your requirement had been achieved.
Thank you for using Syncfusion Products.
Regards,
Rajadurai
SIGN IN To post a reply.
- 4 Replies
- 2 Participants
-
TO Tomio
- May 6, 2011 05:15 PM UTC
- May 16, 2011 07:12 PM UTC