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

    Radio button problem in IE

    I Have some script that creates radio buttons, it works fine in IE but not in FF. The problem is that I can't seem to select the radio button, I click on it but it doesnt become checked. Here is a snippet of my code var formComponent = document.createElement("input")...
  2. jdbolt

    Scrollable div (using iframe?)

    I found this: http://www.backbase.com/demos/google/ And really like how it works, I was wonering if someone could let me know how this could be done. I have manageed to write code to get a dragable div for another project, but for this one it would be cool if it had a scrolling pane in the...
  3. jdbolt

    Allocate an id to a cell which was created using JS

    Hi, I have some JS that creates a table var docBody = document.getElementsByTagName("body").item(0); docBody.appendChild(advancedSearchTable); var advancedSearchTable = document.createElement("table"); // Create a table row var row =...
  4. jdbolt

    A way to force line wrapping?

    Hi, I was wondering if there was a way to force line wrapping in css or html. I want a cell to be a maximum of 200px, but sometimes the cell wraps round if a really_long_word_without_any_sapces_in_it is put into the cell. So_for_example_it_would_wrap here_then_carry_on_with_the _word_here...
  5. jdbolt

    Better way to do if statment?

    I was wondeirng if there was a better way to do an if statement. I am looping thorugh an array, and I want to check to see if the current value is equal to a certain string. Here is my code: var advancedSearchTable = document.createElement("table"); var labels = new Array('Modifier'...
  6. jdbolt

    Creating a style object

    I was wondering if tehre was a way to create a style object and the use this to set the styles for a bunch of different components. For example: var styleObject = new style(); styleObject.backgroundColor = '#000000'; styleObject.text...... var advancedSearchTable =...
  7. jdbolt

    Align text to middle of radio button

    I was wondering if there was a way to align text to the center of a radio button, vertical-align:middle doesnt do anything, the text at the moment appears at the top or the bottom, and doesnt look great. Thanks!
  8. jdbolt

    View contraint

    I have inheritied a database from a previous developer, however they did not document the contraints. I can view the contraints using: select constraint_name, table_name, constraint_type from user_constraints; and i get the following CONSTRAINT_NAME TABLE_NAME...
  9. jdbolt

    PHP and a c++ backend

    Hi, I have writen a web app, but the users want another use case implemented for it. They want to be able to view files from LiveLink - this is a entrise web based file management system. To do this, I need to use functions in the LiveLink API, this can be done in either Java or C++. I was...
  10. jdbolt

    Get date 7 days from another date

    Getting date 7 days from another date. I am using use Date::Calc And I was wondering if there was a function to allow me to get the date in 7 days from another date (a string the user inputs input teh script) I have checked the documentation and can't really find anything and I am a bit...
  11. jdbolt

    Run functions when user stops typing

    I have been looking into how I can figure whether a user has stopped typing in a text box, but so far I havent found a decent solution. Basically I need a way to run a function after I am sure the user has stopped typing in the text box (but while the text box is still in focus)
  12. jdbolt

    Close on mousedown anywhere on page

    Hi, Is it possible to hide a div when the mouse is clicked anywhere on the page. Basically I have a div popup that hovers by a form field when it has not been filled out, so when the user clicks anywhere else on the page, the div will disappear. Thanks!
  13. jdbolt

    Detact if javascript is enabled without using javascript? :)

    Hi, I was wondering if there was a way to detect if javascript is enabled and if not, display a message, no matter how simple, just a message somewhere. I dont want to have a message telling the user javascript is required, just want to tell them it is when its not enabled. Is this even...
  14. jdbolt

    Replace line breaks with <br> in xsl?

    Hi, Is there a way to replace line breaks in xsl with <br> tags? Here is my template: <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <xsl:choose> <xsl:when test="count(root/child)...
  15. jdbolt

    Fragable div not working in IE but does in FF

    I have the following code, it seems to work fine in FF, but in IE the head of teh div doesnt render properly and I cant drag it round the screen - does anyone have any ideas? Thanks! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">...
  16. jdbolt

    Get windows login credentials for wep app on intranet

    Hi, I was wondering if there was a way to get the windows user credentials (user and password) and log them into an internal web app I am building. This will save the user having to log in each time, people often use different machines so using cookies is not a valid option. Plus I still need...
  17. jdbolt

    Assigning fucntion to event handler and passing event object

    I have the following code: [code] bar.onmousedown = function(){ dragStart(event, 'helpDiv'); }; [\code] But I get an error when running it that event is not defined. If I was 'this' then that works fine, it just wont allow me to pass the event object. I was wondering if there was a way to do...
  18. jdbolt

    Is there a way to check whether a variable exists, like isset() in php

    I want to check to see if a variable on an include page exists, is there an easy way to do this? at the oment I have: <% if (pageHeader != null) { %> <%= pageHeader %> <% } else { %> Doc ID Tool <% } %>
  19. jdbolt

    500 ConditionalTagSupport Error

    I am using JRUN and I get teh following error once I try to use for loops or if statemnts: 500 javax/servlet/jsp/jstl/core/ConditionalTagSupport Thats all I get, nothing else, so much for helpful error messages. Anyway, the code is well formed so its not that, any ideas? Thanks!
  20. jdbolt

    Which Event is best for google suggest type AJAX stuff

    I have a search field which fetches results and populates a div on the fly. I was wondering which event type would be best for this. At th emoment I have onkeyup, but if the user is typing a long word, it can be quite slow as it perfroms the search on every key stroke. I was wondering what...

Part and Inventory Search

Back
Top