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 Chriss Miller 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: toolkit
  • Content: Threads
  • Order by date
  1. toolkit

    cross browser code for finding class attribute of anchors

    Hi there. Was wondering if anyone could help me on this (hopefully straightforward) question: I have a test function that accepts an element parameter, and attempts to use DOM to find all child anchor elements below this node, and then find the class attribute for each anchor. The code should...
  2. toolkit

    question regarding apache digester

    Hi there, just playing around with the apache digester. If anyone can point me to a good tutorial on its usage, or can make suggestions on code changes for my small test program, I would appreciate it: Say I have a simple class like: import java.util.Date; public class User { private String...
  3. toolkit

    Lazy XSLT question

    Suffering a mental block. Anyone have a quick template to turn "some.string.with.delims.foo" to "foo"? I don't think the substring-after function will do the trick unless I recurse it?
  4. toolkit

    Gantt Chart Bar Coloring based on resource

    A quick question for all of you project gurus... Is there an easy way of coloring tasks in the Gantt chart view according to the resource assigned to this task. Or since you can assign more than one resource, is this not possible? If not, then I guess I can use a custom flag to achieve a similar...
  5. toolkit

    Applet Tuning

    I am currently tasked with designing an Applet. One of the main risks I can see is that the applet is expected to require XML processing, RMI-IIOP, etc.. all of which leads to a HUGE number of classes to donwload. I want the applet to start up quickly. I am currently reading the excellent 'Java...
  6. toolkit

    brain teaser. submit a form to a new window of a specific dimension

    One for you javascript experts. I have a highly complex form. When the user clicks the submit button, I would like a new window to be opened with a specific width and height. In order to achieve this, I have been hand constructing my query string, appending to my URL, and then using window.open...
  7. toolkit

    Where to get the documentation

    http://jakarta.apache.org/ant/index.html :-)
  8. toolkit

    xsl:value-of

    I was wondering if anyone could explain how to achieve the following. In my XSL, I have a child element whose parent may or may not have specified a width attribute. I believe the following element will grab the value: <xsl:value-of select=&quot;../@width&quot;/> However, how do I assign a...
  9. toolkit

    quick applets question

    are the classes in an applet cached on the client side, so that subsequent revisits to the same applet start up quicker? thanks for any information, FAQ/RTFM links, etc... :-)
  10. toolkit

    JScript to imitate CTRL-N ?

    In IE, pressing CTRL-N creates a new window, containing the same contents as the old window. Does anyone know how to perform this in JScript? Thanks, Neil :)
  11. toolkit

    Problem with Java Web Start ActiveX

    Hi there, was wondering if anyone had experienced similar problems with Java Web Start ActiveX. I have inherited the following client side code to determine for Windows and Netscape if Java Web Start has been installed: <script language=&quot;Javascript&quot;> var javawsInstalled = 0...
  12. toolkit

    Appserver question

    Hi. I know this is the J2EE forum, but I can't seem to find any forum related to Borland Appserver. I was wondering if anyone who uses this on Solaris had ever encountered the following issue: $ console.sh & $ # # An unexpected exception has been detected in native code outside the VM.# Program...
  13. toolkit

    dropping a dbspace

    Hi there, a quick question hopefully: I'm just playing with a small test installation, and I've totally fragged a dbspace. And when I mean fragged, I mean removed the file ;-). I just want to completely drop it. The onspaces -d <dbspace> unfortunately hangs. Is there any way I can force the...
  14. toolkit

    Finding resource from other WAR

    I was wondring if any of you Enterprise gurus could help me out here? Basically, I'm working on a portal where clicking on specific links attempts to launch Java Web Start. A URL is constructed like: Launch?app=xyz which is passed to a single servlet in a centralised WAR. The servlet reads in...
  15. toolkit

    Any packages that model Perl regular expressions

    Just out of curiosity really, Are there any packages that provide similar regular expression functionality to Perl? Thanks, Neil
  16. toolkit

    password encryption

    [posted to JavaScript Forum also] Hi there, can anyone offer suggestions on the best approach to: 1) encrypt a password using client side JScript 2) post to the server 3) use enctypted password with Java login method Thanks for any advice, cheers Neil :-)
  17. toolkit

    password encryption

    [posted to Java Forum also] Hi there, can anyone offer suggestions on the best approach to: 1) encrypt a password using client side JScript 2) post to the server 3) use enctypted password with Java login method Thanks for any advice, cheers Neil :-)
  18. toolkit

    vi editor

    Folks, Does anyone know of a vi editor plugin for JBuilder? Thanks, Neil
  19. toolkit

    Pruning DOM Document

    I was wondering if any Java/XML gurus could help me out here. I wish to remove a subset of <item> elements from a Document, using code similar to: public static void pruneDocument( Document document, ItemFilter filter ) { NodeList items = document.getElementsByTagName( &quot;item&quot; )...
  20. toolkit

    reload approaches

    I am trying to reload a page created from a POST request. I have tried the following approaches: # using <meta> <meta http-equiv=&quot;REFRESH&quot; content=&quot;20&quot;> # using javascript: function dynamicPage() { setTimeout( &quot;countDown(10)&quot;, 1000 ); } function countDown(n)...

Part and Inventory Search

Back
Top