Revision history [back]

click to hide/show revision 1
initial version

answered 2014-10-01 21:00:10 +0800

ansancle gravatar image ansancle

Solved To fix this via java do the following :

public class TestView extends GenericForwardComposer<Window> 
{
    private Cardlayout _cardlayout;

    @Override
    public void doAfterCompose(Window comp) throws Exception
    {

        super.doAfterCompose(comp);
        _cardlayout.setWidgetAttribute("data-swipeable","false");
        _cardlayout.setWidgetAttribute("data-scrollable","false");
    }

Or to fix this in the zul

    <cardlayout xmlns:ca="client/attribute" ca:data-swipeable="false" ca:data-scrollable="false"/>

Solved To fix this via java do the following :

public class TestView extends GenericForwardComposer<Window> 
{
    private Cardlayout _cardlayout;

    @Override
    public void doAfterCompose(Window comp) throws Exception
    {

        super.doAfterCompose(comp);
        _cardlayout.setWidgetAttribute("data-swipeable","false");
        _cardlayout.setWidgetAttribute("data-scrollable","false");
    }

Or to fix this in the zul

 <cardlayout xmlns:ca="client/attribute" ca:data-swipeable="false" ca:data-scrollable="false"/>
Support Options
  • Email Support
  • Training
  • Consulting
  • Outsourcing
Learn More