Attached an addon that adds a numeric text box to the chart trader. Problem is that I can't type anything in the box.
Also how would I go about removing the small 'Qty Pad' in the quantity up down control? I've tried setting the style to null but it doesn't work for this control.
I like that it has built in mouse wheel support so I don't have to manage the events myself, and also the up and down buttons are useful, but when adding it to a chart trader the Qty Pad is taking up too much space in my layout.
Thanks

In the example after each key pressed the code of key (not the original char!) adds to the textbox content. But default behaviour is much more complex: it should add right chars, it should react on cursor moves, highlighting, deleting chars (forwards and backwards) and so on. That what I want from the custom textbox. And I think that manual implementation of the full default logic is not a good idea because it should just work from the box, I just can't understand how.
Comment