I'm experimenting with the WebDatePicker as a possible replacement for a control we are currently using (NetAdvantage 2010.2). In some places this will be used with a touch screen monitor where the system doesn't have a mouse. In order for this to be usable for the users I need to be able to make the size of the spin buttons larger. I can change the height of the buttons by makeing the height of the control larger but haven't found a way to make the width of the buttons larger.
Is there any way to do this?
Thanks, Dave
I finally stumbled onto how to us CSS to control the width of the buttons. This includes both the spin buttons and the custom button.
Adding the following to my CSS file does what I need.
.igte_ButtonSize{ width:50px; height:100%;}
Dave