[TIMOB-10044] iOS: Transparent Background on Scrollable View's Paging Control so Dots can Overlay Views
| GitHub Issue | n/a |
| Type | New Feature |
| Priority | Low |
| Status | Closed |
| Resolution | Invalid |
| Resolution Date | 2012-07-19T15:28:49.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | iOS |
| Labels | n/a |
| Reporter | Nikhil Sharma |
| Assignee | Stephen Tramer |
| Created | 2012-07-19T14:37:41.000+0000 |
| Updated | 2017-03-09T23:13:00.000+0000 |
Description
The paging control of the scrollable view overlays on top of the scrollable view's views and has a transparent background. Find attached the screenshot of the feature requested.
Attachments
Already done as part of 2.1.0 Test Code
var win = Ti.UI.createWindow({ backgroundColor:'white' }) var view1 = Ti.UI.createView({ backgroundColor:'red' }) var view2 = Ti.UI.createView({ backgroundColor:'green' }) var view3 = Ti.UI.createView({ backgroundColor:'blue' }) var scrollableView = Ti.UI.createScrollableView({ showPagingControl:true, pagingControlColor:'transparent', overlayEnabled:true, views:[view1,view2,view3] }) win.add(scrollableView); win.open();Also see property pagingControlOnTop for further customization on IOS
Closing ticket as invalid.