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

Notification

Icon
Error

Options
Go to last post Go to first unread
p.shirykalova  
#1 Posted : Thursday, October 11, 2012 6:46:19 PM(UTC)
p.shirykalova

Rank: Advanced Member

Groups: Member
Joined: 7/13/2011(UTC)
Posts: 286

Thanks: 6 times
Was thanked: 31 time(s) in 31 post(s)
Photo Order 3.3.0 plug-in for Joomla & VirtueMart is available for download!

This version is based on Upload Suite 8 control. It contains major Java 1.7 capability bug fixes and some others, please pay your attention on What's new in ActiveXUploader and Java Uploader sections.

IMPORTANT!

Unfortunately Photo Order 3.3.0 still doesn't support the latest versions of Joomla and VirtueMart.

Most probably we will add it in the next major release, but there are no any time estimates at the moment.

We are very sorry for the inconvenience.

Edited by user Thursday, October 11, 2012 6:46:51 PM(UTC)  | Reason: Not specified

Best regards,

Pauline Shirykalova

Aurigma Technical Support

taravasya  
#2 Posted : Thursday, October 17, 2013 6:36:11 AM(UTC)
taravasya

Rank: Member

Groups: Member
Joined: 4/8/2010(UTC)
Posts: 28

Thanks: 1 times
Tell me please, what syntax using in new version, instead of "iu.addparam" in old versions?

How i can specify all this parameters in new version:

Code:
iu.addParam("PaneLayout", "ThreePanes");
iu.addParam("ShowButtons", "false");
iu.addParam("FolderView", "Thumbnails");
iu.addParam("DescriptionsReadOnly", "true");
iu.addParam("UploadPaneBorderStyle", "None");
iu.addParam("TreePaneBorderStyle", "None");
iu.addParam("FolderPaneBorderStyle", "None");
iu.addParam("AllowMultipleRemove", "true");
iu.addParam("AllowRotate", "true");
iu.addParam("MessageUploadCompleteText", "");
iu.addParam("DropFilesHereImageFormat", "url=components/com_aurigmaphotoorder/assets/<?php echo $dropfileshereImage; ?>;width=609;height=187");
//iu.addParam("DropFilesHereText", "Drop photos here you want order or click Add photos... button.");
iu.addParam("DropFilesHereText", "");
iu.addParam("FolderPaneHeight", "450");
iu.addParam("PreviewThumbnailSize", "140");
iu.addParam("AllowMultipleSelection", "true");
iu.addParam("AllowMultipleRotate", "true");
iu.addParam("ButtonSelectAllImageFormat", "");

Edited by moderator Wednesday, February 12, 2014 5:53:32 AM(UTC)  | Reason: Not specified

Andrew  
#3 Posted : Thursday, October 17, 2013 7:24:49 PM(UTC)
Andrew

Rank: Advanced Member

Groups: Member, Administration
Joined: 8/2/2003(UTC)
Posts: 876

Thanks: 2 times
Was thanked: 27 time(s) in 27 post(s)
Instead of iu.addParam, new uploader uses JSON-based syntax, like this:

Code:
var u = $au.uploader({
                
	// ... params go here
	
	paneLayout: "TreePanes",
	borderStyle: "None",
	enableRotation: true,
	folderPane: {
		previewSize: 140,
		height: 450,
        viewMode: "Thumbnails"
    },
	messages: {
        uploadCompleted: "",
    },
	uploadPane: {
		dropFilesHereText: "Drop files here...",
		dropFilesHereMacText: "Drop files here...",
        dropFilesHereImageFormat: "url=components/com_aurigmaphotoorder/assets/<?php echo $dropfileshereImage; ?>;width=609;height=187",
        dropFilesHereMacImageFormat: "url=components/com_aurigmaphotoorder/assets/<?php echo $dropfileshereImage; ?>;width=609;height=187"
    }
	
/*
Those are no longer availale: 
	
iu.addParam("ShowButtons", "false");
iu.addParam("DescriptionsReadOnly", "true");
iu.addParam("AllowMultipleRemove", "true");
iu.addParam("AllowMultipleSelection", "true");
iu.addParam("AllowMultipleRotate", "true");
iu.addParam("ButtonSelectAllImageFormat", "");	
*/

    });
u.writeHtml();

Full list of API changes from version 6 to 8

Hope this helps.

thanks 1 user thanked Andrew for this useful post.
taravasya on 10/23/2013(UTC)
taravasya  
#4 Posted : Wednesday, October 23, 2013 12:37:51 AM(UTC)
taravasya

Rank: Member

Groups: Member
Joined: 4/8/2010(UTC)
Posts: 28

Thanks: 1 times
OK! Thank you for answear.

I have one more question. After photo added to the upload pane, I can`t see a multiselection of this photos, for example, to specify a format for multiple selected photos. They visually just "all selected".

UserPostedImage

It is very inconvenient....

What can I do with this?

taravasya  
#5 Posted : Wednesday, October 23, 2013 12:40:37 AM(UTC)
taravasya

Rank: Member

Groups: Member
Joined: 4/8/2010(UTC)
Posts: 28

Thanks: 1 times
OK! Thank you for answear.

I have one more question. After photo added to the upload pane, I can`t see a multiselection of this photos, for example, to specify a format for multiple selected photos. They visually just "all selected".

http://s18.postimg.org/u56alvwe1/image.jpg

If I uncheck some photo, is removed from the upload pane..

It is very inconvenient....

What can I do with this?

Edited by user Wednesday, October 23, 2013 12:47:17 AM(UTC)  | Reason: Not specified

taravasya  
#6 Posted : Wednesday, October 23, 2013 1:24:15 AM(UTC)
taravasya

Rank: Member

Groups: Member
Joined: 4/8/2010(UTC)
Posts: 28

Thanks: 1 times
Sorry. I found paneItem.checkedSelectionColor Property, and looks my problem solved....
taravasya  
#7 Posted : Tuesday, February 11, 2014 6:58:53 AM(UTC)
taravasya

Rank: Member

Groups: Member
Joined: 4/8/2010(UTC)
Posts: 28

Thanks: 1 times
-

Edited by user Tuesday, February 11, 2014 7:05:25 AM(UTC)  | Reason: Not specified

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.