Hi All,
I have not got much expousre into JS.I have been trying to work
Ajax with Java through DWR.
I have a code like this
<%@ taglib uri="/tags/spring-form" prefix="form" %>
<body>
<h6> Saurav </h6>
<br>
<h3>Aquofusion Testing</h3>
<form:form commandName="contact">
<table>
<tr>
<td>Hey Saurav</td>
<td><form:input path="firstName"/></td>
</tr>
<tr>
<td><form:input path="lastName"/></td>
</tr>
<td><form:input path="title"/></td>
<tr>
<tr>
<td>skills:</td>
<td><form:select path="leadSource"/></td>
<td><input type="button" value="submit" onclick="javascript:saveContact()"/></td>
</tr>
</table>
</form:form>
</body>
<script type="text/javascript" src="/servlet/dwr/util.js"></script>
<script type="text/javascript" src="/servlet/dwr/interface/Contact.js"></script>
<script langauge="JavaScript">
function callSaurav()
{
alert("hey saurav u r done man");
}
function saveContact()
{
var text=dwr.util.getValue("firstName");
alert(text);
}
</script>
</html>
i am getting the error fo dwr not found.
Fair enough it cant the reference for dwr.
Please let me know how we can include the DWR.
I have set the necessary web.xml and dwr.xml.