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 SkipVought 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: *

  1. piterskiy

    How to change cursor?

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

    GETTING NEXT AVAILABLE INDEX

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

    Cannot propagate data from struts form to an Action Class

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

    Cannot propagate data from struts form to an Action Class

    Yes, absolutelly. That's an idea, so that value defines the feature logic flow. Thank you for your reply. Eugene
  8. 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