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
|
|
|
|
Rank: Advanced Member
Groups: Member, Administration, Moderator Joined: 9/19/2006(UTC) Posts: 491
Was thanked: 30 time(s) in 30 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
|
|
|
|
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.