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_13d7a75e.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_13d7a75e.zip
SIGN IN To post a reply.
4 Replies
TO
Tomio
May 10, 2011 02:06 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_10bc60a6.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_10bc60a6.rar
TO
Tomio
May 11, 2011 04:45 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
AA
Arulraj A
Syncfusion Team
May 12, 2011 10:20 AM UTC
Hi Tomio,
We are glad to know that you have solved the problem at your end. Please let us know if you have any further concerns.
Regards,
Arulraj.A
We are glad to know that you have solved the problem at your end. Please let us know if you have any further concerns.
Regards,
Arulraj.A
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
Great product
SIGN IN To post a reply.
- 4 Replies
- 3 Participants
-
TO Tomio
- May 6, 2011 05:17 PM UTC
- Feb 23, 2018 10:56 PM UTC