How to trigger an event using saxon ce
Replies (1)
Please register to reply
Forums » Saxon-CE help »
Added by Peter Rushforth almost 11 years ago
How can I trigger a click event on an input control? I am trying to develop a reasonable user experience using suggestions. The list is populated, but does not become visible until the user clicks on the list again. Wondering how to do that programmatically?
Thanks Peter Rushforth
I think the answer is, do it exactly how you would in Javascript (which I would have to look up!)
Alternatively, you can of course simulate the causing of the event by directly calling the template that reacts to the event, e.g by using apply-templates in the relevant mode. But this may not be an exact simulation, because although the same XSLT code will be executed, there may be different things happening at the Javascript level - e.g. changes in appearance caused by CSS.
Please register to reply