Re: [SailfishDevel] SilicaListView searchfield looses focus on search

2018-03-12 Thread Jesper Schmitz Mouridsen
mandag den 12. marts 2018 12.28.29 CET skrev Lukáš Karas: Try to setup `currentIndex` of `SilicaListView` to -1 explicitly... From my experience, when model of list view is updated, first delegated item steal focus from search field and keyboard is hidden... ``` SilicaListView { i

Re: [SailfishDevel] SDK version 1801 (2.1.4) is released to all users

2018-03-12 Thread Jarkko Lehtoranta
Hello, Today (March 12th) at 13:00 UTC we have made the Sailfish OS SDK 1801 available to all users. Please, check out the in depth release notes from below or at https://sailfishos.org/wiki/Application_SDK#Release_Notes. The installers for this release of the SDK are now available at http://s

Re: [SailfishDevel] SilicaListView searchfield looses focus on search

2018-03-12 Thread Lukáš Karas
Try to setup `currentIndex` of `SilicaListView` to -1 explicitly... From my experience, when model of list view is updated, first delegated item steal focus from search field and keyboard is hidden... ``` SilicaListView { id: listView model:listModel.proxyModel anchor

[SailfishDevel] SilicaListView searchfield looses focus on search

2018-03-12 Thread Jesper Schmitz Mouridsen
Hi list. I'm making a searchable (play)list for vlc-remote's playlist https://github.com/jsm222/harbour-vlc-remote/tree/cpp-playlist At the moment I'm using a timer to regain focus on the SearchField in the header, since it looses focus on every single char input. (After the search result)