Hi,So i have a PDF form which i want to render on a server as a HTML
form. My only problem is that when it's rendered as HTML i want to
expand the width of a Date field because of the icon (Red/Gray calendar
thingy) that shows up when it's HTML. So on initialize on the field i've
scripted:if(xfa.host.appType == "HTML 5") { date_field.w = "36mm";}else
{ date_field.w ="21mm";}But this wont work. It seems it is impossible to
change the Width with script. Allthough according to the Livecycle
documen...