I have a page with date, time and description fields. Each is made up of two components, a label field and an input field. Initially I want the input field to be invisible and not take up space on the page, so I used css 'display:none;' and put it in a class called nodisplay.
I added nodisplay class to the three input components which then vanished from the design time display as expected. When I run it with test, however the three input components were visible:
I inspected the code and the input components do indeed have a class called nodiplay. Why are the input components visible?
The date input component also doesn't show the date that I passed into via the service response, although the date label component shows the right date.