Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    RPCManager exportImage don't work with smartgwtpro-6.0p

    Hi,
    How can I make rpcmanager.exportimage work? My codes have no any reponse !

    ToolStripButton exportButton = new ToolStripButton();
    exportButton.setTitle("ExportImage");
    exportButton.setIcon("toolbar/arrowright.png");
    exportButton.addClickHandler(new ClickHandler() {

    @Override
    public void onClick(ClickEvent event) {
    // TODO Auto-generated method stub
    String format = "png";
    DSRequest requestProperties = new DSRequest();
    requestProperties.setExportDisplay(ExportDisplay.DOWNLOAD);
    requestProperties.setExportFilename("test_panel1");
    requestProperties.setExportImageFormat(EnumUtil.getEnum(ExportImageFormat.values(), format));
    RPCManager.exportImage(panelDrawPane.getSvgString(), requestProperties);


    }

    });
    toolStrip.addMember(exportButton);

    Thanks!
    Kingdom

    #2
    Hi,
    When I add idacall setting in web.xml ,it occur error! Shown attached pictures.
    And I don't find 'isomorphic' directory in smartgwtpro-6.0p. How to make it works?

    Thanks!
    Kingdom
    Attached Files

    Comment


      #3
      We're not sure what you did to install SmartGWT Pro (and you didn't say), but you need to follow the Installation instructions, and after that if you have trouble, look at the troubleshooting section.

      Comment

      Working...
      X