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

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

    Creating Objects for OOP

    I'm trying to figure out if I can use the OO capabilities in Oracle. I've had a little success but while trying to do a bit more I'm getting errors and don't know if I can do what I'm trying to do. I want to instantiate an object where the constructor loads a table with a small number of rows...
  2. dougalim

    <th> table element

    If cell = row.insertRow(-1) creates a new <td> element in a table row, is there an equivalent to create a <th> element?
  3. dougalim

    OO Problem

    I'm trying to encapsulate code in an object but I'm having problems with setTimeout and setInterval calling functions within an object. Heres a simple example that attempts to increment a number displayed in the browser: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  4. dougalim

    Long Raw Datatype

    A third party vendor stores a text file in a long raw datatype field in the database. In PL/SQL I can see the data in the Large Data Edior when I click on the box with ... after a running a simple 'select column from table' sql statement. How can I retrieve the column into a varchar2 in a...
  5. dougalim

    Firefox not loading CSS background image with XSL

    I have a simple HTML document like this rendered in Firefox and IE, it works with the background image: <html> <head> <style> body { background-image:url('background.jpg'); } </style> </head> <body> Page contents </body> </html> But if I combine this xml: <?xml version="1.0"...
  6. dougalim

    CDATA - FireFox and IE difference

    In Firefox I can store CDATA as javascript var.innerHTML and then render it exactly as intended. IE renders it as text. The follow xml and xsl should help to understand what I'm having a problem with: XML <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl"...
  7. dougalim

    Redirection to a .xsl

    I'm new to XML/XSLT but having great success transforming xml to display in a browser. My question is, say I want to build a home page using my xsl file would it work with index.xsl? I've tried redirecting from a html page with javascript using "window.location=file.xsl" but all that did was...
  8. dougalim

    Ajax post to PHP

    How can I post data from javascript using XMLHTTPRequest and then read the data in PHP. It works using POST with a form and hidden field but I want to send a large XML string without using a form and hidden field leaving the current page in the browser. What value do I need to use for send...
  9. dougalim

    HP GL/2 not working on Deskjet printers

    I have various HP Laserjet printers that work fine when entering HP GL/2 printing simple lines and fonts, but the same jobs that are sent to Deskjet 5550 and 930C printers do not interpret the HP GL/2 and just print the instructions. We've tried different drivers on the Deskjet 5550 but have...
  10. dougalim

    Image not displaying in IE

    I have a div that contains a small image and a span element with info about the image. I have a dynamic menu that changes the image src and the text for each option. This works the very first time I click on any of the menu items. The problem is after subsequent menu clicks the image and the...
  11. dougalim

    Adding attributes to table rows

    If I create a table with t=document.createElement('table') and then insert a row r=t.insertRow(0) how do you add onclick='func()' to the row?

Part and Inventory Search

Back
Top