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

    Need Help with a grouping query

    Please see [link http://www.tek-tips.com/viewthread.cfm?qid=1791231]Thread Incorrectly Created in SQL Forum[/url] for start of thread. Still getting syntax error in query Select License.*, Applications.ApplicationYear From License, Applications Where License.ID=Applications.MasterID And...
  2. LyndonOHRC

    Need help with a grouping select query

    I have the query below that selects the correct data. We need to modify it for another output and it's beyond my skill level. This time I need to group it by License.AssignedAgent and only pull the "Top 50" of each group. Also, the "Order By" clause I'm using is important within each group; we...
  3. LyndonOHRC

    Need Help Toggling the Disabled Property

    I've tried onfocus/onblur and the mocvueover seen below; I've also tried using getelementbyid to set disabled back to false, but nothing seems to remove the disabled property. It seems to me like the onfocus and the onmouseout never fires once the input is disabled. Can this be accomplished...
  4. LyndonOHRC

    Need advice with printing on check stock

    I'm replacing an old dos application that is used to print checks on pre-printed check stock. My server script is ColdFusion. My idea is to pass html as a variable to the <cfdocument> tag which generates a PDF document that can them be printed. The check stock is 8.5in x 11in with three areas...
  5. LyndonOHRC

    getElementById is returning undefined

    In the function putPayeeSSN, the line "if (sel.options[sel.selectedIndex].value.length)", returns undefined in every browser except IE with compatibility view turned on. I'm sure my coding style is too old, but don't do it much anymore. The putPayeeSSN function populates the tag with...
  6. LyndonOHRC

    Can I select all child TD's using Parent TR's id?

    tr[id^="W9Data"] { border-bottom: 1px solid black; } I can select the tr's but I need to select it's child TD's. The Parent TR's have an id beginning with string "W9Data". I'm trying to select the child TD's to apply a bottom border to them. Any help much appreciated. Lyndon Lyndon
  7. LyndonOHRC

    Need help writing Count() query

    I have a table of horse birth records. One column has the DOBN number (Birth Mother ID), and another has the BYR (birth year). We need to know some stats about multiple births. I need to know, by birth year, how many dams had two foals, how many had 3... Output: Year foalQty, MareCount 2007...
  8. LyndonOHRC

    Text Input tag value not displaying

    I'm trying to dynamically change the value of this tag when clicking on another element on this document. It wasn't working and I wasn't getting an error. So, to trouble shoot I placed this alert in the onclick event of the tag. In example (1) I get an empty alert box. When I change it to...
  9. LyndonOHRC

    Single quote is breaking my onclick action

    I'm trying to populate an input tag when text is clicked. It works great until the data contains an apostrophe. i.e. The value (DANCER'S CALL) is placed in the function dynamically by my server side database code. I'm having trouble figuring out how to solve the unbalanced delimiters this...
  10. LyndonOHRC

    Help Using Bootstrap

    I'm just now learning bootstrap. I'm using the helper classes to design a responsive page. Given this HTML: <span id="CommissionersTableHeadingFlagUp" class="hidden-xs glyphicon glyphicon-triangle-top">Up arrow gliph</span> Does anyone know what property is changed when the visibility helper...
  11. LyndonOHRC

    How do I Hide/Show options elements by class

    I have a large select element and would like to filter its options with some radio buttons. I tried jquery .hide()/.show() but no luck. Any suggestions appreciated. <script type="text/javascript" language="JavaScript"> $( document ).ready(function() {...
  12. LyndonOHRC

    JQuery Autocomplete displaying empty select list

    I'm modifying a tutorial so I can learn to use auto suggest, can't seem to get it to work. The persons name is not displaying in the select, it is displaying an empty list with the correct row count??? Also, when a row is selected in this empty list the "Search" input tag is not being populated...
  13. LyndonOHRC

    CFpdf Tag Locking up my server

    I need to generate thumbnails of very small (100-130kb) PDF files. Every time I try to use the tag I have to restart the main ColdFusion 9.0 service; the "thumbnail" folder gets created, I never get any jpeg(s), and the server locks up completely. Even this most basic form of the tag usage...
  14. LyndonOHRC

    Javascript code will not execute if a cfdocument tag is in my document

    I have a popup form action page that opens by using the form/target="_blank" attribute. The new document does a database insert and then creates a PDF using the <cfdocument> tag. I'm trying update some elements on the parent/opener form page as it is common for the client to continue using...
  15. LyndonOHRC

    Need help using ImageCrop()

    I have passed an image and crop values to my form action page. I want to crop the image and then save it to disk. the imagecrop() function s returning this error: "The result of the method ImageCrop cannot be assigned because it does not return a value." Here's what I've tried: <cfset myImage...
  16. LyndonOHRC

    Can't get page-break-after to work

    I'm trying to design output for a badge card printer. I'm stuck trying to get a page break so I can design the back of the card. I've tried several ways to start page two but no luck. It always pushes the page two div to the top of page one and renders it behind that content. I've validated the...
  17. LyndonOHRC

    dBase III Plus files using SQL

    I have data stored in dbase III+ file format. The customer still adds and edits these data with a legacy clipper application. Changing to another database it is not an option. What I need to do is write some small modules that will add/edit/delete these records using ColdFusion as the...
  18. LyndonOHRC

    How do I Select the text in an input element

    I am giving focus to an input element but also want to select all the text that it contains so the user can easily replace it with a new value. Giving focus works fine but the select() method doesn't seem to work. No text ever gets selected. I've tested in IE 11 and Firefox 27.0.1 with same...
  19. LyndonOHRC

    specified CFC could not be found

    Googled this for several hours, hope I'm missing the obvious as usual... I'm using CF9 and IIS7. Followed/tailored simple autosuggest code from Ben Forta. Came up with HTML: <cfinput type="text" name="Employer" size="50" autosuggest="cfc:employer.lookupEmployer({cfautosuggestvalue})"> and...
  20. LyndonOHRC

    How do I pass an array of values from a form element

    I'm wanting to pass a dynamic set of values to a function from the option elements of a form. I'm am having trouble with my first idea, but if there's a better approach I'm surely open to other ideas. The original select options will be populated dynamically from a user maintained database. My...

Part and Inventory Search

Back
Top