Hi-
Sorry, one more question. I tried to change the class names "up" and "down" to something a little less generic and then tried to access these via the "SpinUpCssClass" and "SpinDownCssClass" property, but they doesn't seem to have any effect, e.g. :
| <style type="text/css"> |
| .radspinnerup |
| { |
| display: block; |
| padding:0 0 0 5px; |
| text-indent: -9999px; |
| width: 16px; |
| height: 8px; |
| line-height: 8px; |
| background: transparent url('../Images/rad_spin_button_sprites.gif') no-repeat; |
| font-size:1px; |
| position:relative;/*FF*/ |
| z-index:2;/*Opera*/ |
| _position:static;/*IE*/ |
| outline:none;/*FF*/ |
| background-position: center 1px; |
| } |
| |
| .radspinnerdown |
| { |
| display: block; |
| padding:0 0 0 5px; |
| text-indent: -9999px; |
| width: 16px; |
| height: 8px; |
| line-height: 8px; |
| background: transparent url('../Images/rad_spin_button_sprites.gif') no-repeat; |
| font-size:1px; |
| position:relative;/*FF*/ |
| z-index:2;/*Opera*/ |
| _position:static;/*IE*/ |
| outline:none;/*FF*/ |
| background-position: center -7px; |
| } |
| </style> |
| |
| <radi:RadNumericTextBox |
| ID="nbSublists" |
| runat="server" |
| MaxValue="200" |
| MinValue="0" |
| Type="Number" |
| ShowSpinButtons="true" |
| SpinDownCssClass="radspinnerdown" |
| SpinUpCssClass="radspinnerup" |
| Width="100px" |
| > |
| <NumberFormat DecimalDigits="0" /> |
| </radi:RadNumericTextBox> |
Did I miss something, or are those attributes not working quite right? (The class names don't show up in the generated code.)
Thanks!
-Mike