This is a migrated thread and some comments may be shown as answers.

Scrollable ActionSheet?

3 Answers 120 Views
ActionSheet
This is a migrated thread and some comments may be shown as answers.
David T.
Top achievements
Rank 1
David T. asked on 13 Feb 2013, 09:39 PM
Is there a way to scroll the ActionSheet?  If the iPhone is turned on its side, only four items can be shown.  I have a need for a potentially large menu of items.  The ActionSheet is otherwise perfect, but it would be nice if I could scroll the options.

3 Answers, 1 is accepted

Sort by
0
Alexander Valchev
Telerik team
answered on 14 Feb 2013, 03:42 PM
Hello David,

I suggest you to use a DropDownList widget - it is a much better solution for potentially large list of items as it supports scrolling. This widget is part of the web suite, but it receives platform specific styling when initialized in a Kendo UI Mobile application. You can test the behaviour here:

Regards,
Alexander Valchev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
David T.
Top achievements
Rank 1
answered on 14 Feb 2013, 10:04 PM
The problem with that option is that we want it to be launched from a button on the footer bar, not a combobox.  Is there a way to take advantage of that UI, but without a visible combobox?
0
Alexander Valchev
Telerik team
answered on 18 Feb 2013, 01:04 PM
Hi David,

If you wish you may hide the DropDownList widget from the page and control its PopUp list through the API.
var dropdown = $("#dropdown").data("kendoDropDownList");
dropdown.wrapper.hide(); //hide the widget
dropdown.open(); //open the popup

For more information please refer to the DropDownList's API reference.
I hope this approach will fit in your scenario.

Regards,
Alexander Valchev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
ActionSheet
Asked by
David T.
Top achievements
Rank 1
Answers by
Alexander Valchev
Telerik team
David T.
Top achievements
Rank 1
Share this question
or