Page 1 of 1
Problem with 2 vertical listview
Posted: Sun Jul 16, 2023 10:44 am
by papiosaur
Hello,
i create a new GUI with 2 vertical listview like this:
Code: Select all
<hgroup>
<listview id="lv1" height="200" width="400" alternate="true">
<column id="col1" title="List of pictures"></column>
</listview>
<listview id="lv2" height="200" width="400" alternate="true">
<column id="col2" title="List of musics"></column>
</listview>
</hgroup>
The problem, i can't select the first one (on the left).
if i replace <hgroup> by <vgroup>, i have 2 horizontal listview and i can select the 2...
Any idea please ?
Thanks
Re: Problem with 2 vertical listview
Posted: Sun Jul 16, 2023 12:40 pm
by papiosaur
if i create a third listview, only the last listview on the right must be activated...
Re: Problem with 2 vertical listview
Posted: Sun Jul 16, 2023 2:10 pm
by plouf
works here
provide a FULL WORKING example showing th problem to see it
also declare OS you run of
Re: Problem with 2 vertical listview
Posted: Sun Jul 16, 2023 3:22 pm
by papiosaur
OS is MorphOS
This a complete code
Code: Select all
<?xml version="1.0" encoding="iso-8859-1"?>
<application id="app">
<window title="app" id="window" notify="closerequest">
<hgroup>
<listview id="lv1">
<column id="col11" title="Lister1"></column>
</listview>
<listview id="lv2">
<column id="col21" title="Lister2"></column>
</listview>
</hgroup>
</window>
</application>
Re: Problem with 2 vertical listview
Posted: Sun Jul 16, 2023 3:30 pm
by plouf
Re: Problem with 2 vertical listview
Posted: Sun Jul 16, 2023 3:34 pm
by papiosaur
Yes...
Re: Problem with 2 vertical listview
Posted: Tue Jul 18, 2023 9:20 am
by jPV
I think this is a bug in MorphOS (MUI). It looks like it actually gets activated, but it just isn't shown/indicated in this case.
You can test this by adding an item to the left side listview, and then select the listview (without clicking the item), and then press the cursor down key. The item gets selected which tells us the listview was active even though it didn't look like it.
You could compile a test executable and report the issue to the MorphOS Team, or I can also report it when I have time...
Re: Problem with 2 vertical listview
Posted: Tue Jul 18, 2023 5:04 pm
by papiosaur
Thanks jPV, i will do.
Re: Problem with 2 vertical listview
Posted: Fri Jul 21, 2023 9:21 am
by papiosaur
Problem solved with the add of a Splitter between the 2 listers
