[Bug report] TextAutoScroller doesn't work in delegates

asked 2014-08-14 13:15:34 +0300

marmistrz gravatar image

If a TextField is created inside a delegate, then the mainFlickable is not scrolled. It should be made possible to point the mainFlickable as the one to be scrolled. /*...*/ means that there's some code here, which is not important. The point is that the TextField is at the bottom of the screen.

Page
{
    /*...*/
    SilicaFlickable
    {
        id: mainFlickable
        /*...*/
        Column
        {
            /*...*/
            SilicaListView
            {
                orientation: ListView.Horizontal;
                /*...*/
                delegate: Column
                {
                    /*...*/
                    TextField {/*...*/}
                }
            }
        }
    }
}

Until it's fixed - how to work it around?

edit retag flag offensive close delete

Comments

Any official Jolla reply? Should I just wait until it's fixed, or is it simply ignored?

marmistrz ( 2014-09-29 20:24:07 +0300 )edit