Re: How I can get Image Path from the Gallery Browser of Image Gallery

  •  12-18-2013, 9:31 AM

    Re: How I can get Image Path from the Gallery Browser of Image Gallery

    Hi narendrababu,

     

    Please open file "\CuteSoft_Client\Gallery\Editor\Explorer\Code.js"

     

    Find section below

     

    1. div.ondblclick=ToDelegate(scope,function()  
    2.         {  
    3.             browser.ShowViewer(photo);  
    4.         });  
     

    Change it to the code below, then double click on the image will hide the admin dialog. Also, you can get the image path by photo.Url.

     

    1. div.ondblclick = function ()  
    2.         {  
    3.             //get photo url by photo.Url  
    4.             //alert(photo.Url);  
    5.             closebtn.click();  
    6.         }  
     

    Regards,

     

    Ken 

View Complete Thread