Can you interface the bokeh server with a Javascript library such as JQuery on the client side?
I want to implement an advanced form, and already have a Bokeh server app running.
However, as more and more work were being done I faced many issues with the Bokeh API, such as missing features (callbacks, options, ...), unresolved bugs, instabilities, and so on.
I came to the conclusion that it would be better that some part of the application are in Bokeh (graphs) while others, such as forms, are implemented with a more dedicated API, for example in pure Javascript.
Is this doable or even recommended? If so, how to do it?
I saw that there exists an Ajax data source in bokeh, however I'm not sure it's made for communication between the Bokeh server and a client JS page.
Any advice, explanations or examples appreciated,
Thanks