How to use jquery in reactwidget

Hi,
I want to use third jquery ui lib in react widget, but I am not sure where should I put the jquery code


I put jquery code in onAfterAttach and update, not work, I try to put it in init method, but still not work. who knows how to deal with jquery in react widget?

@wss You should be able to do the following in a more natively react way:

<button ref={element => $(element).kendoButton(...)}>My Button</button>

hi,
thanks, it is ok.