toggle button on off
#1
So I am using let's say 5 toggle buttons in a group... What code do I need to add so that when I turn one on the other 4 are off... Basically to force only one button on at a time? I do not want the user to make anymore then 1 selection out of this group at a time.


Thanks for any advice
Shield TV | Windows 10 | Mariadb | Mii Box
Evolve Ecosystem Repo | TV Melodies | Madnox Holiday Mod
Reply
#2
you could use something like:
Code:
<control type="radiobutton">
    <onclick>Skin.ToggleSetting(option1)</onclick>
    <onclick>Skin.Reset(option2)</onclick>
    <onclick>Skin.Reset(option3)</onclick>
    <onclick>Skin.Reset(option4)</onclick>
    <onclick>Skin.Reset(option5)</onclick>
    <selected>Skin.HasSetting(option1)</selected>
</control>

<control type="radiobutton">
    <onclick>Skin.ToggleSetting(option2)</onclick>
    <onclick>Skin.Reset(option1)</onclick>
    <onclick>Skin.Reset(option3)</onclick>
    <onclick>Skin.Reset(option4)</onclick>
    <onclick>Skin.Reset(option5)</onclick>
    <selected>Skin.HasSetting(option2)</selected>
</control>

.....

in case you want to use toggle buttons instead of radio buttons,
you need to use <usealttexture> instead of <selected>

also, you can use a single button (if you like) that opens a select dialog with the 5 options.
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#3
What i am going is a football mod which lets you select you team so I want to use the button or toggle button so that I can use the team banner as a image for the button... The problem is the on click reset everything but the button all setting change to the second team I just can't make the button release. I will try the toggle reset again tonight I may just have something wrong.
Shield TV | Windows 10 | Mariadb | Mii Box
Evolve Ecosystem Repo | TV Melodies | Madnox Holiday Mod
Reply
#4
The radio button always work fine for me doing things like this I don't know why I can't get this to work the same way....
Shield TV | Windows 10 | Mariadb | Mii Box
Evolve Ecosystem Repo | TV Melodies | Madnox Holiday Mod
Reply
#5
Thank you I got it working I had the skin.hassetting in the wrong order basically I had everything out of order....

Thanks again for your help
Shield TV | Windows 10 | Mariadb | Mii Box
Evolve Ecosystem Repo | TV Melodies | Madnox Holiday Mod
Reply

Logout Mark Read Team Forum Stats Members Help
toggle button on off0