Y yiankos1 Well-Known Member Licensed User Longtime User May 17, 2018 #1 Hello forum, Is it possible to to create a non clickable item at b4x CLV? Thank you for your time.
LucaMs Expert Licensed User Longtime User May 17, 2018 #2 Maybe adding this routine to xCLV? B4X: Public Sub SetItemEnabled(ItemIndex As Int, Enable As Boolean) Dim Item As CLVItem = GetItem(ItemIndex) Item.Panel.Enabled = Enable End Sub Not tested enough; I need the Erel's approval Upvote 0
Maybe adding this routine to xCLV? B4X: Public Sub SetItemEnabled(ItemIndex As Int, Enable As Boolean) Dim Item As CLVItem = GetItem(ItemIndex) Item.Panel.Enabled = Enable End Sub Not tested enough; I need the Erel's approval
Y yiankos1 Well-Known Member Licensed User Longtime User May 17, 2018 #3 LucaMs said: Maybe adding this routine to xCLV? B4X: Public Sub SetItemEnabled(ItemIndex As Int, Enable As Boolean) Dim Item As CLVItem = GetItem(ItemIndex) Item.Panel.Enabled = Enable End Sub Not tested enough; I need the Erel's approval Click to expand... Indeed, that worked! Thank you! Upvote 0
LucaMs said: Maybe adding this routine to xCLV? B4X: Public Sub SetItemEnabled(ItemIndex As Int, Enable As Boolean) Dim Item As CLVItem = GetItem(ItemIndex) Item.Panel.Enabled = Enable End Sub Not tested enough; I need the Erel's approval Click to expand... Indeed, that worked! Thank you!