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

Notification

Icon
Error

Options
Go to last post Go to first unread
ns  
#1 Posted : Sunday, September 9, 2007 4:04:22 AM(UTC)
ns

Rank: Member

Groups: Member
Joined: 8/19/2007(UTC)
Posts: 3

I am using the "ThreePanes" option and I would like to move the "Send" button from the top row to the middle row. I see options to change the look of the buttons, but no options to move them.

Also is it possible to add the image viewing pulldown menu (Thumbnails, List, Details etc.) offered in the "User Quota" style to the Three Pane style without having to right click and choose there?

Thanks in advance.
Alex Makhov  
#2 Posted : Monday, September 10, 2007 12:44:53 PM(UTC)
Alex Makhov

Rank: Advanced Member

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

Hello,

Here is a part of User Quota sample:
Code:
function selectView_change(){
	if (imageUploader1){
		var selectView = document.getElementById("selectView");
		imageUploader1.setFolderView(parseInt(selectView.options[selectView.selectedIndex].value));
	}
}
The code to change view in both panels in ThreePanes mode if the following:
Code:
 function selectView_change(){
	if (imageUploader1){
		var selectView = document.getElementById("selectView");
		imageUploader1.setFolderView(parseInt(selectView.options[selectView.selectedIndex].value));
		imageUploader1.setUploadView(parseInt(selectView.options[selectView.selectedIndex].value));
	}
}

There should be more changes made to your page but this code is the main part of it.
As about “Send” button move, there is no ability to move it to the upload buttons pane in the standard version of Image Uploader.

Edited by user Tuesday, February 12, 2008 12:52:57 PM(UTC)  | Reason: Not specified

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.