Hello,
I have the following html fragment:
...
<td class="dataHeader" onclick = "javascript:doSort('<%=sCols.SORT_FCODE%>')"> Code </td>
...
I just want to add a code which will change the cursor type to hand when pointing on the column name.
How can I do it?
Thank you.
I have the following query to get my next available number from the table:
SELECT MIN(INT(A.CODE) + 1)
FROM TABLE_CODE A
WHERE INT(A.CODE) NOT IN (
SELECT INT(B.CODE) -1
FROM TABLE_CODE B
WHERE INT(B.CODE) = (INT(A.CODE) + 1))
It take about 15 sec to execute it.
Is there any way to...
I have an ActionClass and a JSP page.
What I want to do is just have a drop-down showing some values. Nothing complcated.
I created ArrayList in Action and put it to a request object as follows
ArrayList list = new ArrayList();
list.add("1");
list.add("2");
request.setAttribute("exsList"...
I have a jsp page, Action and ActionForm classes.
When sending parameters from JSP to Action, parameters are not being propagated to Action class.
Here is what I have:
struts-config file:
[COLOR=blue]
<form-beans>
<form-bean name="myForm" type="path_to_form.FormClass">
</form-bean>...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.