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

Notification

Icon
Error

Options
Go to last post Go to first unread
peter076  
#1 Posted : Sunday, December 2, 2007 10:01:54 PM(UTC)
peter076

Rank: Member

Groups: Member
Joined: 12/2/2007(UTC)
Posts: 1

Is it possible to somehow place the SEND button below the for upload selected images?

This is the feedback I get from many users, because this is where you would expect it.
Most people I know read from left to right, top to bottom. ;)
So the final step, actually sending the images, should be below the selection, not above it.

Can I do this myself?

Thank you,
Peter
Eugene Kosmin  
#2 Posted : Monday, December 3, 2007 5:56:10 PM(UTC)
Eugene Kosmin

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 9/19/2006(UTC)
Posts: 505

Was thanked: 41 time(s) in 41 post(s)
Hello Peter,

You can add your own send button anywhere you want.

1. Use ShowButtons property to hide standard upload buttons.

2. Add Send method calling as a handler of your own button.
Code:
<input type="button" OnClick="MySend()" value="MySend"/>

<script language="javascript">

function MySend()
{
	getImageUploader("ImageUploaderID").Send();
}

var iu = new ImageUploaderWriter("ImageUploaderID", 800, 600);
...
iu.addParam("ShowButtons", "false");
..
iu.writeHtml();

</script>

Edited by user Monday, February 25, 2008 2:29:55 PM(UTC)  | Reason: Not specified

Best regards,
Eugene Kosmin
The Aurigma Development Team
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.