I made the mistake of testing my mxAjax dropdown menus with FF. All works fine. 
The menu contains a few hundred options. 

I just checked with IE6 and IE7 and both bog down while loading the menu. It 
takes about 10 seconds and is kinda goofy. 

I tried <cfflush> with no luck. 

Here's my code:

 <cfsavecontent variable="showCourseMenu">
  <cfif getCourses.recordcount GT 0> 
  Course: <select name="course" id="course" onChange="populateInstructors()">
                <option value="All">All</option>
                  <cfoutput query="getCourses" group="section">
            <option value="#sectionid#"<cfif ARGUMENTS.course EQ "#sectionid#"> 
selected</cfif>>#section# - #title#</option>
                        
          </cfoutput>
  </select> 
  
  <cfelse>
  <input name="course" id="course" type="hidden" value="All">
  <p>No courses were found using the filters you selected.</p>
  </cfif>
  </cfsavecontent>   
  <cfreturn showCourseMenu>

Then mxAjax outputs it into a target span. 

Any ideas on how I could fix this? I'm at a loss. 

Thanks,
Will

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283024
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to