Hi there
we currently try to switch to smartclient 10 and ran into a display-issue using timeline and alternateLaneStyles. We tested it with the latest nightly (SmartClient_v100p_2014-10-15_Pro) and the latest Firefox and chrome.
It seems that the descriptors for each lane is switched by color and the alignment is failing. Also there seems to be an bug drawing the border of the cells and the background-color of the weekends are missing. This doesn't seem to happen using "alternateLaneStyles: false".
you can paste the code below in this document to see the issue in action
we currently try to switch to smartclient 10 and ran into a display-issue using timeline and alternateLaneStyles. We tested it with the latest nightly (SmartClient_v100p_2014-10-15_Pro) and the latest Firefox and chrome.
It seems that the descriptors for each lane is switched by color and the alignment is failing. Also there seems to be an bug drawing the border of the cells and the background-color of the weekends are missing. This doesn't seem to happen using "alternateLaneStyles: false".
you can paste the code below in this document to see the issue in action
Code:
isc.Timeline.create({
"width" : "100%",
"height" : "100%",
"hideUsingDisplayNone" : false,
"startDate" : new Date(2014, 9, 13),
"endDate" : new Date(2014, 10, 9),
"firstDayOfWeek" : 1,
"alternateLaneStyles" : true,
"laneFields" :
[{
"name" : "title",
"title" : " ",
"type" : "text",
"canEdit" : false
}
],
"lanes" :
[{
"height" : 30,
"name" : "1",
"title" : "Item 1"
}, {
"height" : 30,
"name" : "2",
"title" : "Item 2"
}, {
"height" : 30,
"name" : "3",
"title" : "Item 3"
}, {
"height" : 30,
"name" : "4",
"title" : "Item 4"
}, {
"height" : 30,
"name" : "5",
"title" : "Item 5"
}, {
"height" : 30,
"name" : "6",
"title" : "Item 6"
}, {
"height" : 30,
"name" : "7",
"title" : "Item 7"
}, {
"height" : 30,
"name" : "8",
"title" : "Item 8"
}, {
"height" : 30,
"name" : "9",
"title" : "Item 9"
}, {
"height" : 30,
"name" : "10",
"title" : "Item 10"
}
]
})
Comment