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 Mike Lewis 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
  • 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

    Yeah thats works great, its wierd why it wasnt working before, maybe my crapping codin :) Thanks
  4. 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 =...
  5. 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...
  6. 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'...
  7. 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 =...
  8. jdbolt

    View contraint

    That worked great, not only can I see all the contraints but you have now confrimed that the previous developer was an idiot :) Thanks, this was great!
  9. jdbolt

    Align text to middle of radio button

    <input style="vertical-align:middle" type="radio" id="modifiersCheck" name="searchType" value="searchModifiers" checked /> <label>Portals</label> <input style="vertical-align:middle" type="radio" id="documentsCheck" name="searchType" value="searchDocuments" />...
  10. 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!
  11. 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...
  12. jdbolt

    PHP and a c++ backend

    Thanks alot for this, it will be very useful
  13. jdbolt

    Get date 7 days from another date

    great thanks for your reply, will let you know if this works for me!
  14. 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...
  15. 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...
  16. jdbolt

    Run functions when user stops typing

    > Use a setTimeout and reset it using the keyDown event on the text field. How would I do this?
  17. 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)
  18. 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!
  19. jdbolt

    Detact if javascript is enabled without using javascript? :)

    I didnt mean hide the <noscript> tag, I meant hide the rest of the page if javascript is not present Thanks!
  20. jdbolt

    Detact if javascript is enabled without using javascript? :)

    Cool, is there a way to hide content is script is enabled? <noscript>no javascript enabled</noscript> <scriptenabled> rest od document </scriptenabled>

Part and Inventory Search

Back
Top