SmartClient Version: v11.0p_2016-04-09/EVAL Development Only (expires 2016.06.08_11.15.36) Licensed to: Isomorphic Software (#ISC_EVAL_NIGHTLY)
Chrome on OSX
Hello, please modify the #dateItem sample like this:
You'll see that the width of the monthSelector doesn't change, only its height.
Chrome on OSX
Hello, please modify the #dateItem sample like this:
Code:
isc.defineClass("MyDateItem", "DateItem");
isc.MyDateItem.changeDefaults("monthSelectorDefaults",
{
height: 38,
width: 100
}
);
isc.MyDateItem.addProperties({
textAlign: "center",
height: 38
});
isc.DynamicForm.create({
ID: "dateForm",
numCols: 4,
width: 650,
fields: [
{name:"pickListDate", title:"PickList Date", editorType:"MyDateItem", width:400,
wrapTitle:false}
]
});
Comment