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

Notification

Icon
Error

Options
Go to last post Go to first unread
erik  
#1 Posted : Saturday, October 28, 2006 9:34:04 PM(UTC)
erik

Rank: Member

Groups: Member
Joined: 7/29/2004(UTC)
Posts: 24

In treepane this text suppose to be shown in the right buttom pane.

But if the top right pane is empty, its also show there. This is misleading.

Regards

George Ulyanov  
#2 Posted : Sunday, October 29, 2006 1:29:37 PM(UTC)
George Ulyanov

Rank: Advanced Member

Groups:
Joined: 7/26/2006(UTC)
Posts: 203

Hello Erik,

Quote:
erik (10/29/2006)

In treepane this text suppose to be shown in the right buttom pane.

But if the top right pane is empty, its also show there. This is misleading.

Regards

I can not reproduce this problem. Please, post the screenshots of Image Uploader with incorrect label.

You can use the following link for it:

http://www.aurigma.com/Products...neDemo.aspx#Localization

Edited by user Monday, February 25, 2008 4:44:05 PM(UTC)  | Reason: Not specified

Best regards,

George Ulyanov

erik  
#3 Posted : Wednesday, November 1, 2006 9:47:40 PM(UTC)
erik

Rank: Member

Groups: Member
Joined: 7/29/2004(UTC)
Posts: 24

OK, my setup is a little different, so the Print Screen is taken from my application.

Regards

erik attached the following image(s):
aurigma.bmp
George Ulyanov  
#4 Posted : Thursday, November 2, 2006 12:36:34 PM(UTC)
George Ulyanov

Rank: Advanced Member

Groups:
Joined: 7/26/2006(UTC)
Posts: 203

Erik,

I see the problem.

Please let us know also the version you use as well as please post the code you use to place image Uploader on page.

Edited by user Tuesday, February 19, 2008 4:36:00 PM(UTC)  | Reason: Not specified

Best regards,

George Ulyanov

erik  
#5 Posted : Thursday, November 2, 2006 10:28:23 PM(UTC)
erik

Rank: Member

Groups: Member
Joined: 7/29/2004(UTC)
Posts: 24

Version running: 4.0.47.0

The script:

Code:
var iu = new ImageUploaderWriter("ImageUploader1", 650, 550);

iu.activeXControlCodeBase = "/activex/ImageUploader4.cab";
iu.activeXControlVersion = "4,0,47,0";

iu.showNonemptyResponse = "off";
iu.addParam("LicenseKey", "7423-9486-8342-7494");

iu.addParam("PaneLayout", "ThreePanes");
iu.addParam("ShowDebugWindow", "false");
iu.addParam("ShowDescriptions", "false");
iu.addParam("TreePaneBorderStyle", "2");
iu.addParam("FolderPaneBorderStyle", "0");
iu.addParam("UploadPaneBorderStyle", "2");

iu.addParam("ButtonFontName", "Verdana");
iu.addParam("ButtonFontSize", "8");
iu.addParam("BackgroundColor", "#ffffff");
iu.addParam("ButtonPasteText", "x");
iu.addParam("ShowButtons", "true");

iu.addParam("ButtonPasteImageFormat", "width=66;height=23;URLnormal=images/paste.gif;URLdisabled=images/pastepassiv.gif");

da_resources.addParams(iu);

iu.addParam("EnableAutoRotate", "false");
iu.addParam("AdditionalFormName", "frm1");
iu.addParam("FileMask", "*.zip;*.pdf;*.swf;*.txt;*.wmv");
//iu.addParam("MinImageWidth", "100");
//iu.addParam("MinImageHeight", "100");
iu.addParam("UploadSourceFile", "true");
iu.addParam("DropFilesHereText", "Drop filer som skal overføres her");
iu.addParam("ButtonAddAllToUploadListText", "Tilføj alle");
iu.addParam("ButtonRemoveAllFromUploadListText", "Fjern alle");
iu.addParam("Action", "filSave.asp");
iu.addParam("FolderView", "Details");
iu.addParam("UploadView", "List");
//Info vedr. activeX installation
iu.instructionsEnabled=true;

iu.instructionsCommon="Image Uploader ActiveX kontrol er nødvendig for at overføre "+
                      "dine billeder/filer hurtigt og enkelt. Du vil blive i stand til at vælge et eller flere billeder/filer "+
                      "på en meget brugervenlig måde i stedet for den standard metode, som normalt anvendes. "+
                      "Installationen, som kun skal udføres føste gang, kan tage op til et par minutter. For at installere Image Uploader, ";

iu.instructionsNotWinXPSP2="opdatér siden (fra panelet i toppen af browseren) og vælg \"Ja\" knappen " +
                           "når du ser installations vinduet. Hvis din browseropsætning blokerer for installation af ActiveX kontroller, kan du vælge at foretage en traditionel installation ved klik <a href='/easyshow/install/iu.exe'><b>her</b></a>"

iu.instructionsWinXPSP2="klik på den gule Informations bjælke. Efter siden er opdateret, vælg \"Ja\" når "+
                          "når du ser installations vinduet. <br><br>Hvis din browseropsætning blokerer for installation af ActiveX kontroller, kan du vælge at foretage en traditionel installation ved klik <a href='/easyshow/install/iu.exe'><b>her</b></a>";

iu.addEventListener("Progress", "IU_Progress");

function IU_Progress(Status, Progress, ValueMax, Value, StatusText) {
switch(Status)
{

	case "COMPLETE":
		window.close()
		break;
	case "CANCEL":
		alert("Overførsel afbrudt")			
		break;
	case "ERROR":
		alert(StatusText);	
		break;
	}
}
iu.writeHtml();

Regards

Edited by user Tuesday, February 19, 2008 4:36:15 PM(UTC)  | Reason: Not specified

Users browsing this topic
Guest
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.