Re: zoom with the mouse wheel

  •  10-18-2009, 11:56 PM

    Re: zoom with the mouse wheel

    Hi,
     
    We will add option for this request.
     
    Currently you can override the default implementation by this way :
     
    1. <dotnetgallery:gallerybrowser runat="server" id="GalleryBrowser1" Width="720" Height="430" />  
    2. <script type="text/javascript">  
    3. function GalleryCreateImage(url,width,height)   
    4. {   
    5.     var img=document.createElement("IMG");   
    6.     img.src=url;   
    7.     img.width=width;   
    8.     img.height=height;   
    9.     return img;   
    10. }   
    11. </script>  

    Regards,
    Terry
     
     
View Complete Thread