Forum: ColdFusion Jul 24th, 2009 |
| Replies: 13 Views: 3,573 I think his sql is working perfectly, as I read is that he is having a presentation issue, not relationship issue. His relationship looks like a one-to-many on ingredients to lots. He just does... |
Forum: ColdFusion Jul 23rd, 2009 |
| Replies: 13 Views: 3,573 You are going to have to control the grouping of the xyz data by either testing for changes in some control variable assigned that value, or using built-in's of whatever flavor of sql your are using.... |
Forum: ColdFusion Jul 23rd, 2009 |
| Replies: 4 Views: 1,065 I would test on MOD 2 of currentrow:
<cfquery name="blah" datasource="#dsn3">
select * from table
</cfquery>
<cfoutput>
<cfloop query="blah">
row:#CurrentRow# mod2:#CurrentRow MOD 2#<br>... |
Forum: ColdFusion Jul 23rd, 2009 |
| Replies: 2 Views: 759 Yes it does work, you must install required php on it. In addition, you have to live with page references to .php pages etc.. I have not tried to use cf_php with any of it yet, but it does work. ... |
Forum: ColdFusion Apr 14th, 2008 |
| Replies: 1 Views: 2,445 Ok, I figured it out. Turns out I was not paying attention to cfmail tag, I had put wraptext option in there, and it was actually spliting the line on the url (at the hash point), thus embedding the... |
Forum: ColdFusion Apr 14th, 2008 |
| Replies: 1 Views: 2,445 Hello again,
This may or maynot be proper thread for this topic, but here it is. I have a coldfusion 7 serve that I am running a page on, that uses hash(<email>,"MD5") all it well and good... |
Forum: JavaScript / DHTML / AJAX Mar 17th, 2008 |
| Replies: 10 Views: 3,064 Thanks, guys. So, let me make sure I have a full understanding. Is it correct to state that javascript does not allow access to rendered page elements pulled via ajax, inserted by dhtml into the... |
Forum: JavaScript / DHTML / AJAX Mar 15th, 2008 |
| Replies: 10 Views: 3,064 Well, since it the form elements I need to access to validate, I have tried passing the form name or id to it, or even hard coding the form name/id in the function. Nada, zip.. it's as if the form... |
Forum: JavaScript / DHTML / AJAX Mar 15th, 2008 |
| Replies: 10 Views: 3,064 My functions are loaded in the main page. They just do not see the dynamic pages loaded via xmlhttp, sigh. |
Forum: JavaScript / DHTML / AJAX Mar 15th, 2008 |
| Replies: 10 Views: 3,064 Thanks !!! That explains a lot, and this is a rather fundamental revelation for me. Wow, I had been developing discrete pages to allow to easy development, and then would incorporate them
into... |
Forum: JavaScript / DHTML / AJAX Mar 14th, 2008 |
| Replies: 10 Views: 3,064 Hello,
I am having an issue with a page that works fine in IE and not FF. Bascially it is a <div> loaded with a basic coldfusion input form that posts back to parent of the div page. Problem I... |