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. smichener

    Need to Simulate onClick From Select Menu

    Dan, Thanks for the input, I'll take a look at that site. My goal is to keep it as simple as possible. I need to identify exactly why clicking a link does not cause the popup blocker to act, yet selecting from a simple html select does. Too bad I can't merely use onClick from within the...
  2. smichener

    Need to Simulate onClick From Select Menu

    Hello all. I have a dropdown list: <select name="select" class="mapMenu" onChange="JumpToIt(this)"> <option selected value="none">Select a Tool --</option> <option value="javascript:onCreatePrintable()">Print Map</option> <option value="javascript:onFindLatLong()">Find Lat/Long</option>...
  3. smichener

    Change a CSS Selector Using Javascript

    Because I don't know what I'm doing. :-) I think they need a user level below (technical user) in my case. I didn't really understand Kaht's example. Where she has className in red she's not referring to the css class I assume. And I don't know what to do with (some condition). And I'm not sure...
  4. smichener

    Change a CSS Selector Using Javascript

    I've tried something very simple and almost have it working. Here's what I've got so far. At the top of the page: <style type="text/css"> .tab { color: black; } .tabActive { color: red; } </style> <script language="JavaScript"> var navMain = home; </script> Within the body as a test: <td...
  5. smichener

    Change a CSS Selector Using Javascript

    Thank you Kaht, I'll give that a try. Steve
  6. smichener

    Change a CSS Selector Using Javascript

    For a website I am trying to create I would like to utilize Javascript to save some duplication of work. I have an include file (siteNav.html) that contains the main website navigation tabs and would like the "active" tab to display as bold. I'm not sure how to accomplish this since I'm a...
  7. smichener

    Problem Collapsing Content in Firefox

    That's interesting, thanks. It now collapses but now the table itself is acting strange, cell widths are being completely ignored and vary row to row. Widths appear to be totally dependant on cell content. I imagine I'll have to find a CSS solution for this, and it appears my less that stellar...
  8. smichener

    Problem Collapsing Content in Firefox

    Well I found a hacked solution to this problem. Try typing any character at all right after the table within the div id=divRecentShares and you will see that the entire div collpases as it should in Firefox. Take it out and the white space will remian. Unbelievable!
  9. smichener

    Problem Collapsing Content in Firefox

    I want to stress that the code does what I need it to do in the absence of the table within the div id=divRecentShares. Adding that table prevents the desired "collpase" from occuring.
  10. smichener

    Problem Collapsing Content in Firefox

    Here's the code. <script> function toggleDiv1(){ var ndDiv = document.getElementById('divRecentShares') if(ndDiv.className == 'divRecentSharesHide'){ ndDiv.className = 'divRecentSharesShow'; } else{ ndDiv.className = 'divRecentSharesHide' } } function...
  11. smichener

    Problem Collapsing Content in Firefox

    I'm using Javascript "toggleDiv" functionality to expand and collapse content contained within a div. The solution works fine in IE but in Fireforx the following problem occurs. The div will expand/collapse properly if I merely put text and/or line breaks inside the div. But If I put a table...
  12. smichener

    Drop-Down Selection that Alters Form

    Thank you very much, both of you. That's all I needed to get going.
  13. smichener

    Drop-Down Selection that Alters Form

    I need to create a form on which a selection can be made from a drop-down menu which will in turn change the rest of the fields on the form. An example would be a form with two drop-downs (a State drop-down and a County drop-down), If a user selects Texas then the County drop-down would change...
  14. smichener

    smallDateTime Null Value Problem

    Thank you very much Vidru, it worked like a charm. Steve
  15. smichener

    smallDateTime Null Value Problem

    Hello All, I'm trying to run a query in Query Analyzer in which if a smalldatetime field isNull, I want ot to come back blank. Bu when I use - ISNULL(a.terminationDate, '') - all null values are returned as 1900-01-01 00:00:00. Does anyone know how to deal with this? Thank You Steve
  16. smichener

    White Space Around An Include

    looks like this one's a stumper.
  17. smichener

    White Space Around An Include

    Hi, When displaying a webpage with a jsp include, there is a white space above the area of the page that contains the include that I don't know how to get rid of. It's just like a line break and is making design very difficult. Does anyone know how to remove the white space around an include...
  18. smichener

    Query Analyzer &quot;Capture in Grid&quot;

    When obtaining Query Analyzer results in grid format, is there a way to capture the column headers using copy/paste? Thanks.
  19. smichener

    can't make changes to my own dbase

    Yeah that's definitley the problem. I am loggen into the database as user &quot;admim&quot; which does not have permission to make changes. I don't know why &quot;admim&quot; does not have these permissions and I don't know why I am no longer logging in a &quot;smichener&quot;. Do I have any...
  20. smichener

    can't make changes to my own dbase

    I am able to view the Users and Groups. I &quot;smichener&quot; am listed as a member of the &quot;admin&quot; group while the user &quot;admin&quot; is listed as a member of the &quot;user&quot; group that does not have design permissions. Is there a way I can see which user is currently using...

Part and Inventory Search

Back
Top