Hi,
This is related to ticket#1401471 , the other ticket was accidentally closed. Please see the screen shot using the below settings mentioned i was able to achieve the Icon display but grouping is not showing correctly, is there setting for grouping also to display correctly?
https://www.telerik.com/account/support-tickets/view-ticket/1401471
radListView1.CheckBoxesPosition = CheckBoxesPosition.Top
Private
Sub
RadListView1_VisualItemFormatting(
ByVal
sender
As
Object
,
ByVal
e
As
ListViewVisualItemEventArgs)
Dim
item = TryCast(e.VisualItem, IconListViewVisualItem)
If
item IsNot
Nothing
Then
item.TextImageRelation = TextImageRelation.TextAboveImage
item.TextAlignment = ContentAlignment.MiddleCenter
item.ImageAlignment = ContentAlignment.MiddleCenter
End
If
End
Sub
Sub
New
()
InitializeComponent()
For
index = 1
To
10
Me
.RadListView1.Items.Add(
"Item"
& index)
Me
.RadListView1.Items.Last().Image = My.Resources.folder
Next
RadListView1.ShowCheckBoxes =
True
RadListView1.EnableGrouping =
True
RadListView1.ShowGroups =
True
Dim
groupByType
As
New
GroupDescriptor(
New
SortDescriptor() {
New
SortDescriptor(
"Text"
, ListSortDirection.Descending)})
RadListView1.GroupDescriptors.Add(groupByType)
Me
.RadListView1.ViewType=ListViewType.IconsView
Me
.RadListView1.CheckBoxesPosition = CheckBoxesPosition.Bottom
End
Sub
I have logged it in our feedback portal by making this thread public. You can track its progress, subscribe for status changes and add your comments on the following link - feedback item.
I have also updated your Telerik points.
Currently, the possible solution that I can suggest is to increase the height in the GroupItemSize and ItemSize properties:
Me
.RadListView1.GroupItemSize=
New
Size(100,30)
Me
.RadListView1.ItemSize=
New
Size(200,100)
I hope this information helps.
Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik