Just an idea....try rearranging the select output by putting the cfoutput query 
and everything inside it on one line this will minimise the whitespace (I was 
going to write it out here but it will wrap), I've no idea weather it will work 
but it might.

Andrew.

<cfoutput query="getCourses" group="section"><option value="#sectionid#"<cfif 
ARGUMENTS.course EQ "#sectionid#"> 
> selected</cfif>>#section# - #title#</option>

> 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 robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

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

Reply via email to