SmartClient Version: SNAPSHOT_v11.1d_2017-05-05/Enterprise Development Only (built 2017-05-05)
Chrome on OSX
Hello, please try this test case:
resize the page so that the dateChooserButton on the right is near the page border, then open the DateChooser, and open the YearChooser: you'll see that it is clipped.
Chrome on OSX
Hello, please try this test case:
Code:
isc.DateItem.addProperties({
startDate:isc.Date.createLogicalDate(new Date().getFullYear() - 100, 1, 1),
endDate:isc.Date.createLogicalDate(new Date().getFullYear() , 12, 31)
});
isc.RelativeDateItem.addProperties({
startDate:isc.Date.createLogicalDate(new Date().getFullYear() - 100, 1, 1),
endDate:isc.Date.createLogicalDate(new Date().getFullYear() , 12, 31)
});
isc.DynamicForm.create({
ID: "dateForm",
numCols: 4,
width: 650,
fields: [
{name:"pickListDate", title:"PickList Date", type:"date", change:"dateLabel.setContents(value)",
wrapTitle:false},
{name:"directInputDate", title:"Direct Input Date", type:"date", useTextField:true, wrapTitle:false,
change:"dateLabel.setContents(value)"}
]
});
isc.Label.create({
ID: "dateLabel",
top: 40,
left: 100,
width: 450
});
dateLabel.setContents(dateForm.getValue('pickListDate'));
Comment