Re: How I can remove the delete option for picture uploaded on it's right click in the Image Gallery

  •  01-08-2014, 7:53 AM

    Re: How I can remove the delete option for picture uploaded on it's right click in the Image Gallery

    Hi,

     

    Please open file "\CuteSoft_Client\Gallery\Popup\Default\Code.js", find section below and delete/comment it.

     

    1. menu.Add(1,GalleryLocalize.CLICK_DELETE,null,ToDelegate(this,function Delete(){  
    2.         this.Confirm(FormatText(GalleryLocalize.CONFIRM_CLICK_DELETEPHOTO,photo.Title),function(res){  
    3.             if(!res)return;  
    4.             this.Browser.AsyncDeletePhoto({CategoryID:photo.CategoryID,PhotoID:photo.PhotoID});  
    5.         },this);  
    6.     }));  
     

    Regards,

     

    Ken 

View Complete Thread