Is it possible to create a jquery element with a spring taglib prefix?
In my jsp I have my taglib
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
And I would like to do:
$('<form:input/>', {type: "hidden", prefix: "form", path: "critList["+j+"].attrib", value : splitted[0] }).appendTo("form[name='cisManagerForm']");
$('<form:input/>', {type: "hidden", prefix: "form", path: "critList["+j+"].operator", value : splitted[1] }).appendTo("form[name='cisManagerForm']");
$('<form:input/>', {type: "hidden", prefix: "form", path: "critList["+j+"].value1", value : splitted[2] }).appendTo("form[name='cisManagerForm']");
but I get an error with the "form:input" notation when I try to deploy the page in Apache. And if I do not added the "form" prefix to the input, the input values do not seem to be sent to my server code on java/spring.
Any suggestions?
By the way, adding a little bit more context to the question. My goal is to be able to populate a AutoPopulatingList on the server side, based on data transformations I've did with javascript on the client side (at the same time I'm sending some other data to server with the same POST).