Thank you very much for such a prompt response.
I already found the solution myself on
http://www.permadi.com/tutorial/cssCustomCursor/
However your quick response is very appriciated.
Thank's again.
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.
Thank you for your reply, Frederico
The reason I'm using INT is that the CODE field is a character field in a table. That's the business rules since a long long time ago.
Unfortunately, I need to work around that problem.
Eugene.
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 just misspelled the variable.
In fact that is an _strValue.
The reason for me to have a javascript function on click event of the button is, that I have multiple buttons on my form that submit different parameters to the form.
The code that I sent it is just a fragment of the whole picture...
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.