control for up with horizontal menu
#1
With horizontal menu, how can I set navigation so that <onup> from content area focus is directed to the menu (9000). The only way I can access the horizontal menu is by going left or right(<onleft> or <onright>)

Thank you
Reply
#2
tried changing in WidgetGroupListCommon to <up>9000</onup>, didnt work

<include name="WidgetGroupListCommon">
        <orientation>vertical</orientation>
        <height>100%</height>
        <scrolltime tween="cubic" easing="out">500</scrolltime>
        <itemgap>-160</itemgap>
        <onup>9000</onup>
        <ondown>20001</ondown>
        <usecontrolcoords>true</usecontrolcoords>
        <ondown>710</ondown>
    </include>
Reply
#3
(2017-12-22, 22:56)james739 Wrote: tried changing in WidgetGroupListCommon to <up>9000</onup>, didnt work

<include name="WidgetGroupListCommon">
        <orientation>vertical</orientation>
        <height>100%</height>
        <scrolltime tween="cubic" easing="out">500</scrolltime>
        <itemgap>-160</itemgap>
        <onup>9000</onup>
        <ondown>20001</ondown>
        <usecontrolcoords>true</usecontrolcoords>
        <ondown>710</ondown>
    </include>
found the solution. Under <include name="ImageWidget"> in includes_home, change orientation from vertical to horizontal and move buttons to the center:
<control type="grouplist" id="$PARAM[button_id]577">
                    <orientation>horizontal</orientation>
                    <top>500</top>
                    <bottom>0</bottom>
                    <left>-50</left>
                    <right>50</right>
                    <align>center</align>
Reply

Logout Mark Read Team Forum Stats Members Help
control for up with horizontal menu0