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

Notification

Icon
Error

Options
Go to last post Go to first unread
kevincal  
#1 Posted : Wednesday, April 27, 2005 12:48:00 AM(UTC)
kevincal

Rank: Member

Groups: Member
Joined: 4/27/2005(UTC)
Posts: 4

Is there a way to configure the image uploader javascript to stop the IE security pop-up regarding mixed (secure, insecure) content?

Also as a side issue: I have

Code:
iu.addParam("DescriptionsReadOnly", "True");
iu.addParam("EditDescriptionText", " ");

yet it still displays an editable 'description'...

Thanks!

-Kevin

Here is my code:

Code:
					<script language="javascript">
						var iu = new ImageUploaderWriter("ImageUploader", 655, 500);
						iu.activeXControlEnabled = false;
						iu.javaAppletEnabled = true;

						//For ActiveX control we specify full path for CAB file
						iu.activeXControlCodeBase = "../ImageUploader3.cab";
						iu.activeXControlVersion = "3,5,36,0";

						//For Java applet we specify only directory with JAR files
						iu.javaAppletCodeBase = "/lib/";
						iu.javaAppletCached = true;
						iu.javaAppletVersion = "1.0.14.0";

						iu.addParam("Layout", "TwoPanes");
						iu.addParam("LookAndFeel", "com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
						iu.addParam("DescriptionsReadOnly", "True");
						iu.addParam("EditDescriptionText", " ");
						iu.addParam("UploadThumbnail1FitMode", "Actual");
						iu.addParam("UploadThumbnail1Width", "");
						iu.addParam("UploadThumbnail1Height", "");
						iu.addParam("UploadThumbnail1JpegQuality", "100");
						iu.addParam("ShowButtons", "False");
						iu.addParam("ShowDebugWindow", "True");
						iu.addParam("Action", "processPhotoImport.php");
						iu.addParam("RedirectUrl", "importPhotos.php?s=<?=$SITE_KEY?>");
						iu.addParam("MaxFileCount", "<?=$AVAILABLE_NUMBER_OF_PHOTOS?>");
						iu.addParam("MaxTotalFileSize", "<?=$AVAILABLE_DISK_QUOTA?>");
						iu.addParam("Padding", "0");
						iu.addParam("TreePaneWidth", "165");
						iu.addParam("AdditionalFormName", "frmImport");

						iu.addEventListener("UploadFileCountChange", "ImageUploader_UploadFileCountChange");
						iu.addEventListener("ViewChange", "ImageUploader_ViewChange");

						iu.fullPageLoadListenerName = "fullPageLoad";

						iu.writeHtml();
					</script>

Edited by user Tuesday, February 26, 2008 5:21:45 PM(UTC)  | Reason: Not specified

Alex Makhov  
#2 Posted : Wednesday, April 27, 2005 11:28:00 AM(UTC)
Alex Makhov

Rank: Advanced Member

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

Hi, Kevin!

Is there a way to configure the image uploader javascript to stop the IE security pop-up regarding mixed (secure, insecure) content?

This behaviour can be changed through IE settings.

Code:
iu.addParam("DescriptionsReadOnly", "True");

This property is not yet supported in current version of Image Uploader for Java.

We are going to add almost all unimplemented properties in the version 1.1.

========================================================

02/14/2008, Fedor

Additional info

DescriptionsReadOnly property is supported in recent Java versions.

========================================================

Edited by user Tuesday, February 26, 2008 4:53:52 PM(UTC)  | Reason: Not specified

Sincerely yours,

Alex Makhov

UserPostedImage Follow Aurigma on Twitter!

Users browsing this topic
Guest
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.