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

Notification

Icon
Error

Options
Go to last post Go to first unread
onethumb  
#1 Posted : Friday, May 26, 2006 4:35:31 AM(UTC)
onethumb

Rank: Member

Groups: Member
Joined: 5/24/2006(UTC)
Posts: 3

Hi there, new customer of yours, and we've found a few bugs in the Java version:

- In three-pane mode, if Rotation is enabled, and you rotate a photo and then drag it to the third pane, it loses it's rotation.

- Same with Descriptions.

- If you enabled the dropdown to select FolderView options, the "Details" option (value: 3) shows thumbnails.

Any idea if these could be fixed?

Thanks!

Don

onethumb  
#2 Posted : Friday, May 26, 2006 6:45:40 AM(UTC)
onethumb

Rank: Member

Groups: Member
Joined: 5/24/2006(UTC)
Posts: 3

Also, the Java one doesn't seem to get the "PaneResize" event fired.
onethumb  
#3 Posted : Friday, May 26, 2006 7:21:42 AM(UTC)
onethumb

Rank: Member

Groups: Member
Joined: 5/24/2006(UTC)
Posts: 3

Quote:
onethumb (5/26/2006)
Also, the Java one doesn't seem to get the "PaneResize" event fired.


Hmm, actually, we seem to have gotten it working, but there seems to be a race condition or something where events fire before the applet is fully loaded, causing javascript errors that things like getTreePaneWidth() aren't set.

Anyone else seen this?
Fedor  
#4 Posted : Friday, May 26, 2006 9:51:09 AM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
Hello,

Quote:
- In three-pane mode, if Rotation is enabled, and you rotate a photo and then drag it to the third pane, it loses it's rotation.

- Same with Descriptions.


We have fixed it in upcoming Image Uploader 2.0 for Java.

Quote:
- If you enabled the dropdown to select FolderView options, the "Details" option (value: 3) shows thumbnails.


"Details" view mode is not supported in current stable Java version, however we have implemented it in upcoming new release.
Best regards,
Fedor Skvortsov
Fedor  
#5 Posted : Friday, May 26, 2006 11:41:13 AM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
Quote:
Hmm, actually, we seem to have gotten it working, but there seems to be a race condition or something where events fire before the applet is fully loaded, causing javascript errors that things like getTreePaneWidth() aren't set.

Anyone else seen this?


I recommend you to process all event handlers only after fullPageLoad event fire. It is special event of ImageUploaderWriter object.

Here is code example:

Code:
<script language="javascript">
var imageUploader1;

function function fullPageLoad() {
    imageUploader1 = document.getElementById("ImageUploader1");
}

function ImageUploader1_PaneResize() {
    if (imageUploader1){
        //...your code...
    }
}

var iu = new ImageUploaderWriter("ImageUploader1", 610, 500);

iu.addEventListener("PaneResize", "ImageUploader1_PaneResize");

iu.fullPageLoadListenerName="fullPageLoad";

iu.writeHtml();
</script>


We have to use this trick as Java applet and page loading is asynchronous.

Edited by user Wednesday, October 29, 2008 12:46:38 PM(UTC)  | Reason: Not specified

Best regards,
Fedor Skvortsov
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.