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

    MS SQL database schema

    Thanks for both answers! I will start with SSMS, cause I have it on my machine.
  2. heeeep72

    MS SQL database schema

    Hi Database Gurus, i work on a big MS SQL database, and I have no idea what the database schema looks like. I am kind of a visually learning type person. I don't understand what I don't see. Is there a tool / method to make the MS SQL database schema visible? Thanks in advance. heeeeeeeeeeeep
  3. heeeep72

    how to use either custom tags or jsp

    I suppose, that custom tags are good for the same goal, as "normal" tags, which are implemented in prefabricated tag libraries. E.g. for iterating through my beans I can use 'forEach'. It is implemented in the JavaServer Pages Standard Tag Library, short JSTL (http://java.sun.com/jstl/core) as...
  4. heeeep72

    how to use either custom tags or jsp

    Hi *, our system (a Tomcat Web-Application using DWR/AJAX for client-server communication) works like this: some JavaBeans are prepared on the server side. In the client side JavaScript there is a method initialiser(), which gets the existing beans, and they are handed over to some drawing...
  5. heeeep72

    can i set id from js ?

    Hey Adam0101 ! WOW this was fast! :-) The question is: how ? (because in the above mentioned way it did not work for me.... or have I made some stupid typo again ?) thx
  6. heeeep72

    can i set id from js ?

    Hi! can i set the id of an HTML element from javascript same way as f.e. the bordercolor?? function myFunct(myElement) { ... myElement.style.borderColor = '#DF5456'; // this works myElement.id = "blabla"; // this ? ... } thanks in advance!!! h
  7. heeeep72

    anything instead of getElementsByTagName(...)[14] ???

    Hi cLFlaVA and theniteowl, thank you for your quick answers! I think it was really a mistake, because this way the id for the row is simply useless. ...Even if so, my JS function finds the actual row itself, the problem is with the elements inside the row. I am thinking about the following...
  8. heeeep72

    anything instead of getElementsByTagName(...)[14] ???

    Dear JS-ers! On my page the row "row" repeats itself many times, and I want to refer to something on a certain row, and I want to make this stg. visible / invisible. I can not use the document.getElementById(), because then JS does not know, which row I am speaking about.. But in this way it is...
  9. heeeep72

    pass value from JSP to Javascript

    Hi all, I have a rather easy question: I use the following line in my jsp: <tr> <td> <fmt:message key="mc.page.errors.title"/> </td> </tr> the "mc.page.errors.title" i get certainly from a .properties file (several titles, for several languages) I want to give this value to a...
  10. heeeep72

    how to set the bordercolor of parent in js?

    Hi Dan, that did not solve my problem, because that was just a "surface error": I had it right in my own code, I just made a "typing error", when I copied it into here (cause i changed some names)... Probably both ways should be good and working, but the 1st one should be something like this...
  11. heeeep72

    how to set the bordercolor of parent in js?

    Hi, i have an input field, it sits in a <td>, on certain conditions i want to set the border of the surrounding <td> to red from js. How to do it? I tried these (without success): 1.) inputField.parentNode.style.borderColor='#FF0000';//red 2.) inputField.parentNode.className =...
  12. heeeep72

    how to change width of &lt;td&gt; from javascript?

    Thank you Fendal! heeeep
  13. heeeep72

    How to &quot;break&quot; a row? (maximizing number of &lt;td&gt;-s vertically)

    Just to let you know: the float worked out perfectly: it made just what i wanted . <div style="float:left;"> Thx to Vragabond for the idea and also to Chris Hunt for the example. heeeep
  14. heeeep72

    how to change width of &lt;td&gt; from javascript?

    Hi All, A simple question: Can I change the width of a <td>, from javascript? Is it possible? If yes, how? thx in advance
  15. heeeep72

    How to &quot;break&quot; a row? (maximizing number of &lt;td&gt;-s vertically)

    Hi, Sorry for mistakenly posting into the wrong forum. Is there a way to move this thread to the JSP forum? Anyway, I repeat my question there. Vragabond! thx for your suggestion! I will try to look after Floating heeeep72
  16. heeeep72

    How to &quot;break&quot; a row? (maximizing number of &lt;td&gt;-s vertically)

    Hi All, I have a row in a table, that uses "forEach" : <table> <tr> <c:forEach items="${something}" var="somethingelse"> <td> ... <td> </c:forEach> </tr> </table> I can have a very long row this way if there are many items. Let's...
  17. heeeep72

    i remain the editor - why ???

    Hello *, i use CVS for a while now and had no prolems with it so far.. But now there is a big problem. When i try to commit and unedit a source file, and afterwards i check who the editor of the file is (with editors), i get the answer, that i remained the editor. This happens without any error...
  18. heeeep72

    how to align table columns of two tables

    Hi It seems, that the col width element is not supported by the non MSIE browsers. Is there a browser independent way , that I can set column widths of tables ??? My solution has to work with MSIE and FF as well. thx in advance heeeep
  19. heeeep72

    how to align table columns of two tables

    Hi ...and a little more playing with the above resulted in almost aligning columns !! I do not know what can be that little difference, because the tables are the same otherwise. <html> <head> <script language="javascript"> function findColumnWidths(tableId) { var myTable =...
  20. heeeep72

    how to align table columns of two tables

    Thank you Dan, that script is really a good idea!!! But how can i reference my w variable inside the table? <script> var w = findColumnWidths('myTable'); </script> <table id="mySetTable" width="75%" cellspacing="2" border="Blue"> <col width=how can i reference my w variable here?> <col...

Part and Inventory Search

Back
Top