I have a page with a variable number of inputs on screen.
I create them as input types with a cssClass called numeric.
Once all the inputs are created I load them into the input manager
| elements = $('input.numeric', someContextDiv); |
| var numericSettings = $find('RadInputManager').get_inputSettings('NumericSettings'); |
| generateInputIds(elements); |
| for (var idx = 0; idx < elements.length; ++idx) { |
| numericSettings.addTargetInput(elements[idx].id); |
| } |
Is there a way to now dynamically enable the SpinButtons on these inputs?
I'd like to set ShowSpinButtons = true & ButtonsPosition="Right"
cheers
