Note that there are some explanatory texts on larger screens.

plurals
  1. POJavafx webview integration spagobi
    primarykey
    data
    text
    <p>I try to integrate spagoBi in a javaFX application so I load an url directly from spagoBI You can see that the legend is not properly displayed. You can run the code below to see the problem. Configuration : javafx 2.2.x and java 7. Have you any idea ? A workaround ? I need to work on java 7 so I can't use java 8.</p> <p>Thanks in advance !</p> <p>Best regards, Florian</p> <pre><code>package javafxapplication3; import java.io.IOException; import java.util.logging.Level; import java.util.logging.Logger; import javafx.application.Application; import static javafx.application.Application.launch; import javafx.geometry.HPos; import javafx.geometry.VPos; import javafx.scene.Node; import javafx.scene.Scene; import javafx.scene.layout.HBox; import javafx.scene.layout.Priority; import javafx.scene.layout.Region; import javafx.scene.paint.Color; import javafx.scene.web.WebEngine; import javafx.scene.web.WebView; import javafx.stage.Stage; import javax.script.ScriptException; import org.apache.axis.AxisFault.*; public class JavaFXApplication3 extends Application { private Scene scene; @Override public void start(Stage stage) { // create the scene stage.setTitle("Web View"); try { scene = new Scene(new Browser(), 750, 500, Color.web("#666970")); } catch (IOException ex) { Logger.getLogger(JavaFXApplication3.class.getName()).log(Level.SEVERE, null, ex); } catch (ScriptException ex) { Logger.getLogger(JavaFXApplication3.class.getName()).log(Level.SEVERE, null, ex); } stage.setScene(scene); //scene.getStylesheets().add("webviewsample/BrowserToolbar.css"); stage.show(); } public static void main(String[] args) { launch(args); } } class Browser extends Region { final WebView browser = new WebView(); final WebEngine webEngine = browser.getEngine(); public Browser() throws IOException, ScriptException { //apply the styles getStyleClass().add("browser"); // load the web page webEngine.load("http://spagobi.eng.it/SpagoBI//servlet/AdapterHTTP?" + "NEW_SESSION=true&amp;ACTION_NAME=EXECUTE_DOCUMENT_ACTION" + "&amp;user_id=biuser&amp;OBJECT_LABEL=DOC_CRT_009" + "&amp;TOOLBAR_VISIBLE=true&amp;SLIDERS_VISIBLE=TRUE"); //webEngine.loadContent(null); //webEngine.load(ur); //add the web view to the scene getChildren().add(browser); } private Node createSpacer() { Region spacer = new Region(); HBox.setHgrow(spacer, Priority.ALWAYS); return spacer; } @Override protected void layoutChildren() { double w = getWidth(); double h = getHeight(); layoutInArea(browser, 0, 0, w, h, 0, HPos.CENTER, VPos.CENTER); } @Override protected double computePrefWidth(double height) { return 750; } @Override protected double computePrefHeight(double width) { return 500; } } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload