Thanks a lot, Dimo.
There's still another issue I've been meaning to mention.
So what I'm doing, as I tried to previously illustrate, is grabbing a bunch if input items using jquery and then loading those into a radInputManager. All these inputs are rendered in a radGrid using a column renderer all on the client-side.
A numeric input gets a numeric class so I can therefore grab all my numeric inputs using the line
I then generate a unique Id for each of the inputs before loading them into the numeric settings of my input manager
After I load my elements into the manager, the class is completely overwritten by
RadInputMgr_Vista.
Is this behaviour by design? I'd rather it append to any existing class so I don't lose the ability to grab all my numeric inputs.
I was thinking, immediately after loading my inputs into the manager, to do something like this to re-add my desired class
But that won't help me if after dealing with my numeric inputs I have to do the same work on my ascii ones.
At the end there, all of my
RadInputMgr_Vista inputs, including my numeric ones, will also get the ascii class...
Any thoughts?
Thanks.