Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
FinalSpirit  
#1 Posted : Sunday, May 6, 2007 9:14:41 PM(UTC)
FinalSpirit

Rank: Member

Groups: Member
Joined: 5/6/2007(UTC)
Posts: 2

Hello,

Sorry for my bad english but i'm french.

I work for lillelanuit.com.
I want delete the description & title textarea in the preview window.

For instance :
UserPostedImage

I just want see the thumbs and the link to del. What the code ?

Thanks.

Edited by user Monday, December 21, 2009 2:54:52 AM(UTC)  | Reason: Not specified

FinalSpirit attached the following image(s):
preview.gif
Alex Makhov  
#2 Posted : Monday, May 7, 2007 1:29:19 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups: Member
Joined: 8/3/2003(UTC)
Posts: 998

Hello,

Why wouldn’t you use the EnableRemoveIcon property? From Image Uploader Dual 4.5 this property will be supported by both versions of Image Uploader.

Edited by user Monday, February 25, 2008 7:03:54 PM(UTC)  | Reason: Not specified

Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
FinalSpirit  
#3 Posted : Monday, May 7, 2007 8:38:52 PM(UTC)
FinalSpirit

Rank: Member

Groups: Member
Joined: 5/6/2007(UTC)
Posts: 2

I've this code :
Code:

<script type="text/javascript">
//Create JavaScript object that will embed Image Uploader to the page.
var iu = new ImageUploaderWriter("ImageUploader1", 650, 250);

//For ActiveX control full path to CAB file (including file name) should be specified.
iu.activeXControlCodeBase = "../imageuploader/ImageUploader4.cab";
iu.activeXControlVersion = "4,0,33,0";

//For Java applet only path to directory with JAR files should be specified (without file name).
iu.javaAppletCodeBase = "../";
iu.javaAppletCached = true;
iu.javaAppletVersion = "2.0.35.0";

iu.showNonemptyResponse = "off";

//Configure appearance.
iu.addParam("PaneLayout", "ThreePanes");
iu.addParam("FolderView", "Thumbnails");
iu.addParam("EnableRemoveIcon", "true");


iu.addParam("BackgroundColor", "#eff1f9");
iu.addParam("ShowUploadListButtons", "true");
iu.addParam("ButtonRemoveFromUploadListText", "");
iu.addParam("ButtonRemoveAllFromUploadListText", "");

iu.addParam("ShowDescriptions", "false");
iu.addParam("EnableRotate", "false");
iu.addParam("ShowButtons", "false");

//Hide standard upload pane.
iu.addParam("FolderPaneHeight", "-1");

//Configure thumbnail settings.
iu.addParam("UploadThumbnail1FitMode", "Fit");
iu.addParam("UploadThumbnail1Width", "120");
iu.addParam("UploadThumbnail1Height", "120");
iu.addParam("UploadThumbnail1JpegQuality", "60");

//Configure URL files are uploaded to.
iu.addParam("Action", "imageuploader/upload.php");

//Configure URL where to redirect after upload.
//iu.addParam("RedirectUrl", "gallery.php");

//Add event handlers.
iu.addEventListener("UploadFileCountChange", "ImageUploader_UploadFileCountChange");
iu.addEventListener("BeforeUpload", "ImageUploader_BeforeUpload")
iu.fullPageLoadListenerName = "fullPageLoad";

//Tell Image Uploader writer object to generate all necessary HTML code to embed 
//Image Uploader to the page.
iu.writeHtml();
</script>


But the description and title in the thumb aera is always show.

What's the problem ?

I use the Aurigma Image Uploader 4.0.

Edited by user Monday, February 25, 2008 7:04:11 PM(UTC)  | Reason: Not specified

Alex Makhov  
#4 Posted : Wednesday, May 9, 2007 12:46:27 PM(UTC)
Alex Makhov

Rank: Advanced Member

Groups: Member
Joined: 8/3/2003(UTC)
Posts: 998

Hello,

MultipleDescriptions sample which you are trying to use has been made to allow any custom field addition. If you want the ordinary upload list (which will be the part of Image Uploader window), try to check any other sample, for example Localization sample. As I understand, you don’t need any customization so Image Uploader supports all your needs without any additional JavaScripting.
Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.