I'm playing with Stripes and I wonder if it is possible to send Javascript generated data to ActionBean. To be more specific, when I click with my mouse on certain element on page, I want to send ID of that element back to ActionBean after clicking on stripes:link. Providing I already have that ID saved in a JS variable id, how do I do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Are you using parameterised link?
Which would most probably generate: Note: Suggestion unverified. I've no dev tool installed on this old lappie. Edit: On second thought, why not just write some javascript to append |
||||
|
|
|
create a hidden input element in your html
use javascript to set the value of it
and the value will be posted with your form submission. |
|||||
|