The issue is the href="##" is essentially saying "click me and I will
take you to Anchor Nothing.. or index.cfm#"

change this...

<a href="##" onclick="javascript:ColdFusion.Window.show('window#Section#')">Show
students that didn't complete an evaluation</a>

to

<a href="javascript:ColdFusion.Window.show('window#Section#')" >Show
students that didn't complete an evaluation</a>

and that should do it for you.

J.J.


On 9/11/07, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> Man I love this <cfwindow> tag. My only problem is, on a long page with a 
> vertical scrollbar, if you click the link that pops the cfwindow open, the 
> page jumps to the top.
>
> The window opens like it should, but you're back at the top of the page. Any 
> ideas on what I'm doin wrong?
>
> Here's my code. It's inside a cfoutput query:
>
> <td align="center">
> <a href="##" 
> onclick="javascript:ColdFusion.Window.show('window#Section#')">Show students 
> that didn't complete an evaluation</a>
>         <cfwindow name="window#Section#" width="150" draggable="true">
>         <h4>#Section#</h4>
>         <cfloop list="#incStudentList#" index="thisItem">
>         #thisItem#<br />
>         </cfloop>
>         </cfwindow>
> </td>
>
> Thanks,
> Will
>
>
>
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288226
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