Hi all,
I have a xCustomListView with three items, it has 200dip height each. I want to resize height (expand/collaps) at the item when arrow icon was click.
The above code does not work, any idea ?
note:
- been looking Expandable List and CLVExpandable before, but it's to complex as for my current needed
I have a xCustomListView with three items, it has 200dip height each. I want to resize height (expand/collaps) at the item when arrow icon was click.
B4X:
Sub lblArrow_Click
Dim itm As CLVItem
Dim lbl As Label = Sender
Dim idx As Int = clvTable.GetItemFromView(lbl)
itm = clvTable.GetRawListItem(idx)
itm.Panel.Height = 350dip 'new size, resize height from 200 to 350 dip
End Sub
The above code does not work, any idea ?
note:
- been looking Expandable List and CLVExpandable before, but it's to complex as for my current needed