aeric Expert Licensed User Longtime User Sep 5, 2021 #1 How can I remove the line or set the line color of the PrefDialog item to transparent? I tried set the SetColorAndBorder but no success. B4X: PrefDialog3.CustomListView1.GetPanel(0).SetColorAndBorder(xui.Color_Transparent, 0, 0, 0) PrefDialog3.CustomListView1.GetPanel(1).SetColorAndBorder(xui.Color_Transparent, 0, 0, 0)
How can I remove the line or set the line color of the PrefDialog item to transparent? I tried set the SetColorAndBorder but no success. B4X: PrefDialog3.CustomListView1.GetPanel(0).SetColorAndBorder(xui.Color_Transparent, 0, 0, 0) PrefDialog3.CustomListView1.GetPanel(1).SetColorAndBorder(xui.Color_Transparent, 0, 0, 0)
Solution aeric Sep 5, 2021 I solved it. B4X: PrefDialog3.CustomListView1.sv.ScrollViewInnerPanel.Color = xui.Color_Transparent From this thread: Can I change the CustomListView Divider color programmatically? If so - how? Is there a simple CSSUtils command? I haven't found a key that works. www.b4x.com
I solved it. B4X: PrefDialog3.CustomListView1.sv.ScrollViewInnerPanel.Color = xui.Color_Transparent From this thread: Can I change the CustomListView Divider color programmatically? If so - how? Is there a simple CSSUtils command? I haven't found a key that works. www.b4x.com
aeric Expert Licensed User Longtime User Sep 5, 2021 #2 I solved it. B4X: PrefDialog3.CustomListView1.sv.ScrollViewInnerPanel.Color = xui.Color_Transparent From this thread: Can I change the CustomListView Divider color programmatically? If so - how? Is there a simple CSSUtils command? I haven't found a key that works. www.b4x.com Upvote 0 Solution
I solved it. B4X: PrefDialog3.CustomListView1.sv.ScrollViewInnerPanel.Color = xui.Color_Transparent From this thread: Can I change the CustomListView Divider color programmatically? If so - how? Is there a simple CSSUtils command? I haven't found a key that works. www.b4x.com