I'm using SmartClientPro 8.0 stable version 2011-01-05.
I have two problems with DateRangeItem
1. display problem with titleOrientation: "top"
I want to show a SearchForm with only 1 column. Setting titleOrientation to "top" reorders both edits of DateRangeItem leading to 2 columns for the DateRangeItem. I expected the same alignment of both edits as with titleOrientation "left"
2. RelativeDateItem has an option "yearsAgoTitle" and "yearsFromNowTitle". Both options do not appear in the DateRangeItem PickList.
How can I show them?
Thanks
burkhard
I have two problems with DateRangeItem
1. display problem with titleOrientation: "top"
I want to show a SearchForm with only 1 column. Setting titleOrientation to "top" reorders both edits of DateRangeItem leading to 2 columns for the DateRangeItem. I expected the same alignment of both edits as with titleOrientation "left"
Code:
isc.SearchForm.create({
ID: "dateTest",
width:100,
height:224,
numCols:1,
autoDraw:true,
titleOrientation: "top",
fields:[
{name:"countryName", title:"Country"},
{name:"independence", title:"Nationhood",
type: "date", allowRelativeDates : true, useTextField:true
}
]
})
How can I show them?
Thanks
burkhard
Comment