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: aleci
  • Order by date
  1. aleci

    Making a poup calendar inline

    Thanks for responding guys. Ill definately look into these options. Alex
  2. aleci

    Making a poup calendar inline

    Hi, Im hoping this will prove simple to a JavaScript programmer however it is giving us a real headache: We have a gift website and on the checkout page is a link to a popup calendar so users can easily enter a delivery date for their gift(s). The link to the calendar is on the page...
  3. aleci

    Upload a whole folder of images

    Thanks webmigit, I was afraid of that. Do you know any methods for selecting multiple images, like a SELECT ALL function, which would then allow all the images in the folder to be uploaded together in one shot? Basically i'm looking for any method faster than individually selecting images in...
  4. aleci

    Upload a whole folder of images

    I am looking for a way to upload a whole folder/directory of images to the CF server in one shot. I have experience of multiple file uploads - using multiple input fields - with the CFFILE tag, but need to be able to upload a whole folder/directory without selecting each image individually...
  5. aleci

    Checking for duplicate values in a list

    Solved - This does the job: <cfset mylist=&quot;5,8,9,10,105,9,15&quot;> <cfset sorted_list = ListSort(mylist,&quot;numeric&quot;)> <CFSET first = ListGetAt (sorted_list, 1)> <cfset last_item = FIRST - 1> <cfloop list=&quot;#sorted_list#&quot; index=&quot;current_item&quot;> <cfif...
  6. aleci

    Checking for duplicate values in a list

    Hi tony, Yes the list will always be numeric and can contain double characters: 1,2,3,4,5,6,7,8,9,10,11,12. Also 33,717,344 would be allowed since no number in the list is repeated. Yes i can identify the last number but how would this help? Also to note - the numbers un the list may not...
  7. aleci

    Checking for duplicate values in a list

    For my purposes a valid list cannot duplicate values: <cfset list1 = &quot;1,2,3,4,5&quot;> <cfset list2 = &quot;1,2,3,3,5&quot;> Therefore how can i check these to allow list1 but not list2? Been looking at listfunctions all day and now im fed up. Thanks in advance.
  8. aleci

    Keeping a background image constant

    Hi, I have a cfm page which calls a background image the in the <body> tag. Within the template is a query which outputs data depending on a variable set on the page. I have NEXT and PREVIOUS links on this page to either increase/decrease this variable, and the href of the links is the same...
  9. aleci

    Popup within &lt;CFIF&gt; statement

    Thanks guy
  10. aleci

    Popup within &lt;CFIF&gt; statement

    Hi MG, I have limited JavaScript knowledge so i may be confused with the word 'popup'. Forget about passing variables etc, what im trying is to automatically generate a new browser window (which is a simple cfm page) IF the variable defined in the CFIF statement exists. So the page is run, and...
  11. aleci

    Popup within &lt;CFIF&gt; statement

    A simple one i hope, <cfif isdefined(&quot;variable&quot;)> I want a popup window to be generated here (passing the variable into new window) <cfelse> Nothing </cfif> Is this possible using javascript seeing as the user wont be physically clicking a link or submitting a form? thanks
  12. aleci

    Refreshing a particular frame

    Hi, My site consists of 3 frames; a top frame, a lhs frame and a main frame. The problem i am encountering is that if I click the broswers' refresh button, the whole frameset is reloaded and the user is returned to the index page (as defined in the frameset), regardless of the page they were...
  13. aleci

    A JS popup problem

    Sorry Furan, re-reading my post I realise i havent made it too clear: The problem is not with Netscape but with IE4.0; I need the popup to be NON resizable in both browsers, and in Netscape this is fine, but IE4.0 seems to be ignoring the resizable = no command. Do you know of any other syntax...
  14. aleci

    A JS popup problem

    Hi all, I have the following code to generate a popup window containing the file terms.htm: function topWindow4(){ popup = window.open(&quot;terms.htm&quot;,&quot;&quot;,&quot;height=500,width=600,resizable=no,scrollbars,screenX=50,screenY=100,top=30,left=50&quot;); } The problem is that in...
  15. aleci

    A JS popup problem

    Hi all, I have the following code to generate a popup window containing the file terms.htm: function topWindow4(){ popup = window.open(&quot;terms.htm&quot;,&quot;&quot;,&quot;height=500,width=600,resizable=no,scrollbars,screenX=50,screenY=100,top=30,left=50&quot;); } The problem is that in...
  16. aleci

    Netscape Frame Problem

    Thanks once again Tom! It works fine; you dont even notice it
  17. aleci

    Netscape Frame Problem

    Hi all, Can anybody see anything wrong with the following code ? I use it to create a single frame covering the whole page: <html> <head> <title>Netscape Frame</title> </head> <frameset border=&quot;0&quot; frameborder=&quot;0&quot; framespacing=&quot;0&quot;> <frame...
  18. aleci

    Netscape TAble Background Image

    Thanks Tom, it worked great.
  19. aleci

    Netscape TAble Background Image

    Hi all, This should be a simple one for any Netscape experts out there. I want to know if I have to do anything particular to the syntax when trying to include a Background image in a table. Its the same old story: All works well in IE but when i come to view my table in N4.78 the background...
  20. aleci

    Netscape Scrollbar Problem

    not to worry guys, missing comma. Netscape is cruel.

Part and Inventory Search

Back
Top