Thanks for your instant reply.I reallly appreciate it.
The issue below has been solved after i updated to the latest version of
Pivot2.0.
Now I have a new question..
When I access the program from Html.Code is below:
var attributes = {
code:
"org.apache.pivot.wtk.BrowserApplicationContext$HostApplet",
width:"100%",
height:"100%"
};
var libraries = [];
...
attributes.archive = libraries.join(",");
var parameters = {
codebase_lookup:false,
java_arguments:"-Dsun.awt.noerasebackground=true
-Dsun.awt.erasebackgroundonresize=true",
...call my app...
version:"1.0.1",
};
deployJava.runApplet(attributes, parameters, "1.6");
Some err occurs in Java Console
An error occurred at line number 39 in file
http://localhost:8080/PivotWeb/WebApp/pivot-wtk-terra-2.0.jar!/org/apache/pivot/wtk/skin/terra/terra_file_browser_sheet_skin.bxml:
org.apache.pivot.beans.BindException: driveListButton is not accessible.
I checked the latest version of pivot-core-2.0.jar and found there is no
driveListButton in the terra_file_browser_sheet_skin.bxml or in the
filebrowser.class
Can you tell me how to solve it?
Thanks and regards
Hero
Greg Brown <[email protected]>
11/26/2010 09:24 PM
Please respond to
[email protected]
To
[email protected]
cc
Subject
Re: Issue about FileBrowserSheet
Are you possibly using an older version of 2.0? That style was removed at
one point, but it is back now - you shouldn't see that message if you are
using the latest 2.0 binaries.
On Nov 26, 2010, at 3:16 AM, [email protected] wrote:
Dear all
when i use FileBrowerSheet(pivot-wtk-2.0.jar) to download file ,a error
message is always showed in console.
error message:"keyboardFolderTraversalEnabled" is not a valid style for
org.apache.pivot.wtk.FileBrowser
the code where i used the filebrowersheet class is below:
somePushButton.getButtonPressListeners().add(new
ButtonPressListener() {
@Override
public void
buttonPressed(org.apache.pivot.wtk.Button arg0) {
try {
final FileBrowserSheet fileBrowserSheet = new
FileBrowserSheet(FileBrowserSheet.Mode.SAVE_AS);
fileBrowserSheet.open(window, new
SheetCloseListener() {
@Override
public void sheetClosed(Sheet sheet) {
if (sheet.getResult()) {
// file name
Sequence<File> selectedFiles =
fileBrowserSheet.getSelectedFiles();
// file output
...
}
}
});
} catch (Exception ex) {
System.err.println(ex);
}
}
});
the error message occured where is marked in red.
I am looking forward to your help.
If anything not clear.let me know please.
Thanks and regards.
Hero