Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-10044] iOS: Transparent Background on Scrollable View's Paging Control so Dots can Overlay Views

GitHub Issuen/a
TypeNew Feature
PriorityLow
StatusClosed
ResolutionInvalid
Resolution Date2012-07-19T15:28:49.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsiOS
Labelsn/a
ReporterNikhil Sharma
AssigneeStephen Tramer
Created2012-07-19T14:37:41.000+0000
Updated2017-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

FileDateSize
gilt-taste-example.png2012-07-19T14:37:41.000+0000985284

Comments

  1. Vishal Duggal 2012-07-19

    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();
       
  2. Vishal Duggal 2012-07-19

    Also see property pagingControlOnTop for further customization on IOS
  3. Lee Morris 2017-03-09

    Closing ticket as invalid.

JSON Source