Quote from
luishp on March 15, 2019, 11:22 am
That's the way the operating system shows normal ListBox html objects.
You can try using BootStrap List Groups.
Just add this HTML code to a Container object:
<div class="list-group">
<a href="#" onclick="$App.myvar='one'" class="list-group-item">First item</a>
<a href="#" onclick="$App.myvar='two'" class="list-group-item">Second item</a>
<a href="#" onclick="$App.myvar='three'" class="list-group-item">Third item</a>
</div>
Change 'myvar' and 'one', 'two', three', for your var name and the values you want to assign.
That's the way the operating system shows normal ListBox html objects.
You can try using BootStrap List Groups.
Just add this HTML code to a Container object:
<div class="list-group">
<a href="#" onclick="$App.myvar='one'" class="list-group-item">First item</a>
<a href="#" onclick="$App.myvar='two'" class="list-group-item">Second item</a>
<a href="#" onclick="$App.myvar='three'" class="list-group-item">Third item</a>
</div>
Change 'myvar' and 'one', 'two', three', for your var name and the values you want to assign.
asmat has reacted to this post.