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

Notification

Icon
Error

Options
Go to last post Go to first unread
Ublo  
#1 Posted : Tuesday, December 15, 2009 2:42:11 AM(UTC)
Ublo

Rank: Member

Groups: Member
Joined: 7/29/2009(UTC)
Posts: 21

Hello,

I'm using a "ThreePanes" layout.
When using parameter "FolderView" with value "Details", the upload pane is no more displayed (even if I set a height to FolderPane).

Upload pane invisible (hidden) :
Code:

....
  iu.addParam("BackgroundColor", "#FFFFFF");
  iu.addParam("PaneLayout","ThreePanes");
  iu.addParam("FolderView", "Details");
  iu.addParam("UploadView", "List");
  iu.addParam("TreePaneWidth","220");
  iu.addParam("FolderPaneHeight", "220");
....


If you change :
Code:

  iu.addParam("FolderView", "Details");

to

  iu.addParam("FolderView", "List");


... it works fine...
Tamila  
#2 Posted : Tuesday, December 15, 2009 9:54:14 PM(UTC)
Tamila

Rank: Advanced Member

Groups:
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hi,

I reproduced your problem. Unfortunately it is a bug, our developers will fix it in future releases.
As workaround I recommend you to use the following code:
Code:
iu.addEventListener("InitComplete", "ImageUploader1_InitComplete");

//....
function ImageUploader1_InitComplete() {
	getImageUploader("ImageUploader1").setFolderPaneHeight("220");
}

Aurigma Support Team

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.