My questions how to set fokus directly on the "box"
the folowing xml then generating results that user have to press left key to go to the box itself and then press select
I would like to check box then user pressed down/select command.
<list>
<_renderer>
<![CDATA[
<checkbox onAction="selected(this.id)"><_ID>@{id}</_ID>
@{value_1} @{value_2}
</checkbox>
]]>
</_renderer>
<_items>@{contact}</_items>
</list>
css:
listitem {
gap: 5 0;
}
listitem:hover {
bg-color: #edf2f6;
color: #6d9fcc;
}
checkbox {
bg-image: url(chk_off.png);
bg-align: left;
bg-repeat: 1 1;
padding: 0 0 0 20;
align: left;
}
checkbox:selected {
bg-image: url(chk_on.png);
}
checkbox:hover {
bg-image: url(o_chk_off.png);
}
checkbox:hover:selected {
bg-image: url(o_chk_on.png);
}

