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
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:
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!