I have a scheduler
that updates value every 10 seconds. This scheduler
is used inside a droplet
. This droplet is used on a jsp
page
<dsp:droplet name="/path/to/droplet/Droplet">
<dsp:oparam name="output">
<dsp:valueof param="myParamName"/>
</dsp:oparam>
</dsp:droplet>
Also there's a dsp:input
, that calls to javascript function whenever it's pressed. Droplet
shows correct values before input is pressed and after, but in order to show new value, I have to reload the page.
My question is - how to update droplet
value with ajax, without reloading the page?