Hi everybody,
i'm currently devleoping an app with some DashboardItem inside a DashboardView and i want to make them accessible for blind people. The problem is that the properties Accessibility* are not working on my items.
Beside if i try to put them on the DashboardView it works. But it works everywhere else on the application, except the first menu.
Here is my code:
var board = Titanium.UI.createDashboardView({ top : toolbar.top + toolbar.height, height : 480 - toolbar.top - toolbar.height - notificationBarHeight, editable : false }); Titanium.UI.createDashboardItem({ image : L('img_dashboard_' + image + '_off'), selectedImage : L('img_dashboard_' + image + '_on'), label : label, canDelete : false, winTitle : winTitle });This is an iPhone problem, Titanium SDK 3.1.1
Thank you for your time!