Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: piterskiy
  • Content: Threads
  • Order by date
  1. piterskiy

    How to change cursor?

    Hello, I have the following html fragment: ... <td class="dataHeader" onclick = "javascript:doSort('<%=sCols.SORT_FCODE%>')">&nbsp;Code&nbsp;</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.
  2. piterskiy

    GETTING NEXT AVAILABLE INDEX

    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...
  3. piterskiy

    drop-downs in Struts

    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"...
  4. piterskiy

    Cannot propagate data from struts form to an Action Class

    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>...

Part and Inventory Search

Back
Top