Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-15791] iOS: border not visible in a tableRow data

GitHub Issuen/a
TypeBug
PriorityLow
StatusOpen
ResolutionUnresolved
Affected Version/sRelease 3.2.0, Release 5.2.1
Fix Version/sn/a
ComponentsiOS
Labels3.2.0, qe-3.2.1, qe-5.2.1, reprod
ReporterPriya Agarwal
AssigneeUnknown
Created2013-11-22T10:26:46.000+0000
Updated2018-02-28T20:03:49.000+0000

Description

Border is not visible when border color and width assigned in table data.
var win = Titanium.UI.createWindow({backgroundColor: "#FFF"});
 
var tableData = [{
    title : 'Apples'
}, {
    title : 'Bananas',
    borderColor : 'blue',
        borderWidth : 4,
}, {
    title : 'Potatoes'
}];
 
var table = Ti.UI.createTableView({
    data : tableData
});
win.add(table);
 
win.open();
Steps to reproduce: 1. Create a new mobile project. copy paste the code in app.js. 2. Run the test case Expected Result: 2)Window open with table view having three rows of data Apples,Bananas.Potatoes. Bananas row must have border of blue color. Actual Result: 2)2)Window open with table view having three rows of data Apples,Bananas.Potatoes. Bananas row does not have border of blue color. Working fine on android. Not a regression since issue occurs on 3.1.3.GA also.

Comments

  1. Wilson Luu 2014-01-30

    This issue still occurs on: Appcelerator Studio, build: 3.2.1.201401281409 SDK build: 3.2.0.GA, 3.2.1.v20140130101648 CLI: 3.2.1-beta3 Alloy: 1.3.1-beta4 Xcode: 5.0.2 Devices: iphone 5 (6.1.3), iphone 5 (7.0.2)
  2. Shameer Jan 2014-08-08

    Issue reproduces Titanium Command-Line Interface, CLI version 3.3.0, Titanium SDK version 3.3.0.GA iOS SDK: 7.1 iOS iPhone Simulator: 7.1
  3. Wilson Luu 2016-03-16

    Issue is still reproducible on: Appcelerator Studio, build: 4.5.0.201602170821 Appc CLI NPM: 4.2.4-2 Appc CLI Core: 5.2.1-12 Arrow: 1.7.29 SDK: 5.2.1.v20160314160247 Node: v4.2.4 OS: El Capitan (10.11.3) Devices: iphone 5 (9.2), ipad air 2 (9.2)
  4. Lee Morris 2017-05-24

    I have been able to reproduce this issue with the following environment; iPhone 7 (10.2) MacOS 10.11.6 (15G31) Studio 4.9.0.201705021158 Ti SDK 6.1.0.v20170519131839 Appc NPM 4.2.9 Appc CLI 6.2.1 Ti CLI 5.0.13 Alloy 1.9.11 Arrow 2.0.0 Xcode 8.2 (8C38) Node v4.8.2 Java 1.7.0_80

JSON Source