Forum: JavaScript / DHTML / AJAX Aug 14th, 2009 |
| Replies: 1 Views: 431 Just to make it clear here is the code for what the user clicks on a menu option a sub menu shows up with the following options.
<div id="rampsMenu">
<a href="javascript:;"... |
Forum: JavaScript / DHTML / AJAX Aug 13th, 2009 |
| Replies: 1 Views: 431 Hello all,
I have run into an issue with an JavaScript expand menu (you click a menu option a sub-menu shows, moving the other main navigation menu options down).
Well I have designed a nice... |
Forum: ColdFusion Apr 22nd, 2009 |
| Replies: 13 Views: 3,714 Humm... Maybe I do not understand what you are trying to do, because if you have two products with the same ingredient you will get duplication of that ingredient. I am not sure that is avoidable,... |
Forum: ColdFusion Apr 20th, 2009 |
| Replies: 13 Views: 3,714 Let me re-phrase what you are saying to see if I get it.
You have a table called recipes and a table called lots. These two tables are linked by ingredients. What you want is the user to be able... |
Forum: ColdFusion Apr 20th, 2009 |
| Replies: 13 Views: 3,714 Can you not just join the two tables using an inner join?
I suspect you can do what you need with one query, but I have to know more about your table design with the primary and foreign keys. |
Forum: JavaScript / DHTML / AJAX Apr 20th, 2009 |
| Replies: 10 Views: 2,169 You had a few problems with your code. First you still had the OR statement in the javascript area that checked to see if someone had put either their telephone or cellphone number. This should be... |
Forum: ColdFusion Apr 20th, 2009 |
| Replies: 13 Views: 3,714 Like I said there are a few different ways to do this. The following is what put together for you.
Put the following in the document head:
<cfquery datasource="yourDatasource" name="menu1">... |
Forum: JavaScript / DHTML / AJAX Apr 17th, 2009 |
| Replies: 10 Views: 2,169 You know I spent about a half hour (maybe longer) trying to figure out what you were doing wrong. I cut your code down to the min and just had the if statement that checked to see if one OR the... |
Forum: Database Design Apr 14th, 2009 |
| Replies: 4 Views: 781 Perfect! This is what i was thinking, but just wanted to make sure I fully understood why and when I would need an intermediate table.
Thanks again for the help.! |
Forum: Database Design Apr 12th, 2009 |
| Replies: 4 Views: 781 Posted this in the wrong area... Sorry!
I know this should be in the database design area, however I was too quick to select MySQL as that is what I am using. |
Forum: ColdFusion Apr 12th, 2009 |
| Replies: 9 Views: 1,481 What do you see in the wwwroot under:
C:\ColdFusion8\wwwroot\
I suspect your problem is you have either put the files into the wrong folder or are looking in the wrong folder. |
Forum: ColdFusion Apr 12th, 2009 |
| Replies: 13 Views: 3,714 You have to do a few different things. First ColdFusion being a Server Side Programming language, there is no way to do what you want using ColdFusion directly. You will have to use Javascript to... |
Forum: Database Design Apr 12th, 2009 |
| Replies: 4 Views: 781 Hello everyone,
I have a fairly simple question about database design. I have a database for county voting equipment. Each county has multiple pieces of voting equipment. I currently have two... |