JavaFX and Smart GWT

Hi,
I have a requirement to use Smart GWT component in JavaFX.
I have a basis question..
1. Can we integrate Smart GWT components in JavaFX?
2. If we integrate Smart GWT in JavaFX then how the perfomance would be..will be fast or slow? I mean loading the GWT components in JavaFX Application.
3. Is there any RAD Plugins for JavaFX and Smart GWT? there is one plugin called efxeclipse for JavaFX.. but it didn't work..  ( I tried in RAD).
Fredrick

> 1. Can we integrate Smart GWT components in JavaFX?
Yes, display your GWT component in a WebView.
> 2. If we integrate Smart GWT in JavaFX then how the perfomance would be..will be fast or slow? I mean loading the GWT components in JavaFX Application.
Use the 32 bit JVM which includes a JIT compiler for JavaScript in WebView.
Performance is going to be similar to displaying a GWT component in any web browser.
> 3. Is there any RAD Plugins for JavaFX and Smart GWT?
JavaFX has a RAD tool (SceneBuilder), but that is focused on JavaFX component use, not GWT component use so it will not assist you.
If there is any GWT RAD tool (I don't know of any), you can use that - you don't need anything JavaFX specific because if you are developing GWT, you are not developing JavaFX, the most you would be doing is wrapping the GWT component in a JavaFX WebView with some (hopefully minimal) communication between the GWT component and the JavaFX application.
> efxeclipse for JavaFX.. but it didn't work
e(fx)clipse works very well for JavaFX development, it just has absolutely nothing to do with GWT, so it is not a tool for GWT development.

Similar Messages

  • What is the diff b/w Sap Scripts and Smart Forms

    Hi,
          Whats the diff b/w SAP Scripts and Smart Forms..
             I need the internal explanation for both Smart Forms and SAP Scripts mean when we execute what happens whether Print Program r Forms starts execution 1st  and SIMILARLY FOR SMARTFORMS WHETHER FM'S  R FORMS.
    Thanks & Regards,
    Gopi.

    Hi
    Difference with SMARTFORMS vs. SapScript(SE71)
    The Following are the differences :-
    a) Multiple page formats are possible in smartforms which is not the case in SAPScripts
    b) It is possible to have a smartform without a main window .
    c) Labels cannot be created in smartforms.
    d) Routines can be written in smartforms tool.
    e) Smartforms generates a function module when activated.
    f) Unlike sapscripts (RSTXSCRP), you cannot upload/download Smartform to your local harddisk.
    It was said that it was provided in CRM 3.0 version, but not available in R/3. You can download smartforms into Local PC in a XML format. In the same way you can upload this XML format into Smartform. From the smartform editor itself you can call download option, if you are working in CRM 3.0 environment.
    In R3 also, you can download into XML format. However, it's not sure about uploading. Refer to the program 'SF_XSF_DEMO'.
    In 4.7 Enterprise, other have seen this utlity which is completey missing in 4.6c. There is functionality to downlaod a complete form or only a particular node. (Utilities -> Download form). It will create a XML file and save it in the hard disk.
    For others, if you want to download/upload the Smartforms source, you will need the help from the Basis people. What you can do is to create a Transport and then FTP down to your local harddisk. When you need the Smartform source in another system, you have FTP up the Smartforms file back to the SAP server. Finally, the Basis team, will tp it into your system.
    g) The protect and endprotect command in sapscript doesn't work with smartforms. For example on a invoice: First data of position no 80. is printed on page one, other data of position no 80 is printed on page 2. And there's nothing you can do about it. Actually, there is something you can do about it. By using a folder node and checking the 'protect' checkbox, everything in that folder will be page protected.
    check out this link:
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    Reward points if helpful.
    Regards,
    Swathi.

  • Excel 2007 and Smart View 9.3.1.4.041

    Dear Experts,
    We are now working with Excel 2007 and Smart View 9.3.1.4.041, and encounter the problem that ervery time open the protected excel file there would be the warning message "Drawing Objectes in one or more sheet(s) in the workbook are protected. Please unprotect them and try to save again."
    Can any one suggest with;
    1. How to set the Excel security settings for Excel 2007 to work for smart view?
    2. How to avoid the message mentioned above while working with Excel 2007?
    3. How to create a protected Excel file to work with Smart View 9.3.1.4.041 both in Excel 2003 and Excel 2007?
    Tks
    Edited by: Moonlight on May 19, 2010 10:00 AM

    I've experiencied similiar problems, though other users may have found a better solution, I've unlocked the spreadsheat, refreshed, and then relocked via a VBA macro. A button object at the top of the spreadsheet was added to make it easier for the users use as well. If there is a better solution I am very interested in this as well.
    JTF

  • Characters such as apostrophes and smart quotes turning into boxes or question marks

    We recently upgraded from CF5 to CF7 and are having a problem
    with previously saved text that no longer displays correctly. Some
    characters (apparently, non-ASCII characters such as curly
    apostrophes and smart quotes) are rendering as boxes or question
    marks. We recently upgraded to Oracle 10g from Oracle 8i, but this
    problem appears to be independent of the database that the text is
    stored in. Here is sample code that will illustrate the problem:
    <CFSET string1="Department’s">
    <CFSET string2="hey—there">
    <CFOUTPUT>
    string1 is #string1#
    <BR>
    string2 is #string2#
    </CFOUTPUT>
    output looks like this:
    string1 is Department?s
    string2 is hey?there
    These are rendered as boxes when viewed in Internet Explorer.
    (They show up as question marks when I copy and paste them here.)
    The Demoronize UDF helps *some* of the time, but this is
    still happening with a lot of text, especially text that gets
    pasted from a website into a form, then saved to a database. Does
    anybody have a solution for this? This is breaking my applications
    and is incredibly annoying. I'd like to either replace the
    problematic characters at the time they are displayed, or replace
    them when they are input in the database in the first place (and go
    back and update all the previously saved data to replace the
    problematic characters with plain text equivalents).
    Any suggestions appreciated.

    I finally isolated the problematic characters so I edited the
    DeMoronize UDF (available at cflib.org) by adding the following
    text replacements at the bottom:
    text = Replace(text, chr(8208), "-", "ALL");
    text = Replace(text, chr(8209), "-", "ALL");
    text = Replace(text, chr(8210), "&ndash;", "ALL");
    text = Replace(text, chr(8211), "&ndash;", "ALL");
    text = Replace(text, chr(8212), "&mdash;", "ALL");
    text = Replace(text, chr(8213), "&mdash;", "ALL");
    text = Replace(text, chr(8214), "||", "ALL");
    text = Replace(text, chr(8215), "_", "ALL");
    text = Replace(text, chr(8216), "&lsquo;", "ALL");
    text = Replace(text, chr(8217), "&rsquo;", "ALL");
    text = Replace(text, chr(8218), ",", "ALL");
    text = Replace(text, chr(8219), "'", "ALL");
    text = Replace(text, chr(8220), "&ldquo;", "ALL");
    text = Replace(text, chr(8221), "&rdquo;", "ALL");
    text = Replace(text, chr(8222), """", "ALL");
    text = Replace(text, chr(8223), """", "ALL");
    text = Replace(text, chr(8226), "&middot;", "ALL");
    text = Replace(text, chr(8227), "&gt;", "ALL");
    text = Replace(text, chr(8228), ".", "ALL");
    text = Replace(text, chr(8229), "..", "ALL");
    text = Replace(text, chr(8230), "...", "ALL");
    text = Replace(text, chr(8231), "&middot;",
    "ALL");

  • List of script and smart forms(except TNAPR) with output type or print prog

    How to find out List of SAP SCRIPT and SMART FORMS (except TNAPR)with output type or print program..I like to chk in output type WMTA  whch form should use.kindly help on this

    Hi
    WMTA is special msg and doesn't create any print: so you can't find a sapscript or smartform to link to it.
    WMTA is a message for delivery, so you can find it by NACE trx or TNAPR table (It's the same): infact here it can find only all messages of logistic modules (SD & MM).
    The routine ENTRY of RLAUTA20 is called by WMTA and creates a Transfer Order (for WM, Warehouse Management, module), so if you need to create a print for that msg you need to change prg RLAUTA20,
    Max

  • ACR and Smart Objects

    ACR and Smart Objects...
    Ok, I'm trying to take the plunge into Smart Objects. I want to control localized luminance as well as localized contrast adjustments (using masks in PS CS3) in a non destructive and flexible way. Instead of the usual: bringing into PS multiple exposures of a single Raw image, or bringing into PS multiple bracketed images (landscape) I am exploring the idea of bringing these images into PS as Smart Objects.
    I have figured out how to work with multiple copies of a single Raw image as Smart Objects, but can not figure out how to get different bracketed Raw files layered into PS as Smart Objects...
    Would someone offer some assistance, if it is possible?
    Thank you!

    >Would someone offer some assistance, if it is possible?
    If you have multiple images (as opposed to multi versions of the same image) you'll need to open each of the images as separate SO's and separate documents, then drag them into one document.

  • ? MSWORD as EDITOR in sap script and smart forms ?

    Hi friends,
    How to use MSWORD as EDITOR in sap script and smart forms.
    Edited by: Julius Bussche on Jul 17, 2008 12:45 PM

    hi,
    Call transaction I18N
    go to I18N Customizing -> MS Word as Editor.Choose the Help-Button and follow the instructions.
    If transaction I18N is not available in your system yet (see SAP Note 848036), you can also enable this feature via program RSCPINST.
    Call transaction SE38, enter program RSCPINST and press F8. On the next screen,select Goto -> Set MS Word as Editor.

  • Sync Smart Groups and Smart Mailboxes across network

    Is there a way to Sync my Smart Groups in Addressbook and Smart Mailboxes in Mac Mail across my Macbook and My iMac? I have iCloud.
    It would be nice if I did not have to duplicate these "Smart" groups on each computer.
    Thanks Mac Community.

    Can you just type out the criteria of the smart group, or post a screen shot of the smart group.
    With all the editorializing, I can't figure out what you want to do.
    Where are the contacts in the groups, iCloud or On My Mac?

  • Debugging a script and smart form

    Hi   Can u explain me How to Debug a Script and Smart from in Real time

    hi,
    for smartforms
    1. use transaction SMARTFORM_TRACE
    2. in the SMARTFORMS, use utilities to show the function name. You can analyze this function in SE37 and set dynamic breakpoints as required. Lok at the SMARTFORM_TRACE to decide where to set break points.
    3. BREAK-POINT can be used only in own program lines in smartform - not very helpful because it always stops until removed and generated again.
    for scripts
    from SE71 enter form name
    from Menu Utilities->ACTIVATE DEBUGGER
    then execute the script from the Application Transaction
    it will stop in the script and check for the Values you need
    or
    Execute RSTXDBUG.
    ~~Guduri

  • How do I remove LG Health and Smart Tips ?

    How do I remove LG Health and Smart Tips ?

    Please note that any discussion of rooting/hacking is a violation of the Verizon Wireless Terms of Service
    Message was edited by: Admin Moderator

  • Support for ActiveSync Smart Forward and Smart Reply still missing?

    Hi,
    am I right that current device OS (tested 10.3.1.1565) is still *not* supporting ActiveSync options "Smart Forward" and "Smart Reply"?
    If so, is there an ETA when these options will be supported?
    Thanks in advance,
    Frankl

    Hi, anyone being able to answer these questions? Thanks, Frank

  • Hello, failing miserably here,  cant import nef files from aperture 3.1.2 to iphone 4.  I am syncing with the projects and smart albums and I am only able to sync the jogs and psd's   Anyone out there to aid this frustrated photographer??

    hello, failing miserably here,  cant import nef files from aperture 3.1.2 to iphone 4.  I am syncing with the projects and smart albums and I am only able to sync the jogs and psd's   Anyone out there to aid this frustrated photographer??

    See my reply to a later simplified version of your question. I don't think that either iPhone or iPad recognize RAW files such as NEFs. And the iPhone is not designed to be a mass storage device like a portable flash or portabel hard drive for temporary storage of files, if that's what you're after.  As I mentioned in my previous reply, I have an iPad and have been experimenting with it as a tool for photography, hoping that it would be a nice travel tool for backing up and viewing photos from my Nikon dslr. But both the iPad and iPhone just are not set up to do that well. Both show photos nicely, but organization of photos is very frustrating since you can't create albums on the iPhone or iPad, but only back on your sync computer. (There is one very powerful photo organization app called SortShots, but you import photos to it and it organizes and stores the images wtihin the app not using the native photo app. It doesn't work with NEFs either.) I don't know of any RAW processing software for either device.

  • Smart-Forward and Smart-Reply

    Love the iPhone but we have noticed in our business that it simply doesn't support all the ActiveSync protocols. The most notable one is Smart-Forward and Smart-Reply.
    The net result of this is (1) we risk losing formatting when forwarding emails (particularly "embedded" or attached emails, which get mixed in to the main email body on forward); (2) large attachments need to be forwarded in full locally on the handset rather than on the server side (as with BlackBerrys and other devices), resulting in huge data bills when roaming, long sending times and also difficulty when in spotty reception areas; and (3) header information is not maintained as with Outlook.
    We have been submitting feedback to Apple from the outset, with no resolution in sight or acknowledgement that this is even a problem. It also does not appear to be fixed in the forthcoming iOS 4.1.
    Does anyone know of a workaround to get Smart-Forward or Smart-Reply working on a iOS device? Everyone in our company has been forced back to their BlackBerrys for the time being as IT have said the iPhones are too unreliable for business email and that Apple are doing nothing to rectify the issue. It's a shame as we like the devices for everything save for their rubbish business email support.
    Thanks

    You are not alone. - The missing of SmartReply/SmartForward is the biggest disadvantage of iOS for business users.
    All mobile devices with ActiveSync use the SmartReply protocol, so the mail never really leaves Exchange and mails are replied/forwarded in seconds. The devices only send their answer texts to the server and the server compiles the reply. Apple left out this protocol and uses the standard SendMail protocol. This means: to forward an attachment you have to download it to the iPhone/iPad and upload it again. Since mobile devices are used mobile it becomes nearly impossible to forward a bigger attachment. Worst, the iPhone only allows 9 MB to download. So forwarding a file bigger than 9 MB is just not possible.
    We as a record company need to forward big attachments (MP3s, TIFs…) from our mobile devices all the time and none of the other mobile OS’s is as easy to use as the iPhone OS. We have tried Android, WebOS, etc. But when it is getting hectic and you have to rely on the hard- & software to do its job the iPhone is the only accepted device (except BB and WM that have no entertainment factor which is important too because this let the employee stay connected to the team even in the free time.
    The reply behavior of the iPhone Mail.app is unfortunately similar to most of the IMAP mailers:
    The source code of a HTML mail is modified when replying and codes which Outlook has put there for reason are deleted or transformed so that the original mail comes back with a different layout.
    You can test it by yourself, if you have Outlook (2007/2010). Send yourself a HTML e-mail with two lines and reply it once from iPhone and once from Outlook, OWA or any ActiveSync device except iPhone OS. Then compare the source codes. You'll see the difference. The most obvious effect is the double line space in Outlook now. You sure know that the HTML code for "new line" is "br". But when you hit Enter in Outlook it generates a special Office paragraph "o:p" instead of a standard line break "br".
    As long as all users communicate with Outlook it doesn't matter, because "o:p" are shown as "new line". But as soon as the conversation leaves Outlook/OWA/ActiveSync (e.g. iPhone) and comes back "o:p" has become "p" which means that all lines are now double spaced.
    SmartReply would solve all this. Forwarding a 50 MB is done in no time and all Office codes are being kept.
    Our workaround so far: We have set up our own Exchange server and installed the Exchange add-on “OWA for PDA” (http://www.leederbyshire.com/OWA-PDA.asp). We redesigned it to be iPhone friendly, use HTML and some other things. We now have a fast and reliable webmailer for the iPhone’s Safari which also allows access to (really) everything that is supported by the Ex210 Outlook Web Access. 99% of all features like flagging of emails are possible with the add-on.
    We are currently working on an offline Web App based on jQTouch, so that the webmailer becomes similar to the (well designed) Mail.app in iOS and stores as many information as possible for offline access.
    We are currently looking for partners to return some of the cost of developing all this. So if you or anyone is interested in a cooperation please contact me.
    Sebastian

  • Mail: search and smart mailboxes stopped working

    Hi folks,
    In mail the search and smart mailboxes have stopped working.  I have a hunch it's something to do with iCloud as my partner is now logged onto iCloud using iTunes etc. Can you help?

    My accounts are POP. But I have managed to fix the problem. When you mentioned Spotlight, I went into System Preferences thinking I may had accidentally turn off emails as a search option in Spotlight. It was on, but I turned it OFF and then ON again, and now search works in mail as usual. And my Smart Mailboxes too.
    It's one of those things
    Thanks for your help

  • Future of JavaFx and commitment from Sun

    Hi All,
    I wanted to get some insight into the level of investment an organization could make into adopting JavaFX as the preferred UI technology for their products/applications. Is Sun committed to promoting JavaFX and making it production quality and implementing with time all the missing UI components? What is th efuture of JavaFx after the Sun-Oracle merger?
    thanks
    Sanjeev

    Hi Sanjeev
    in my opinion:
    JavaFX is a promising technology but it is currently too green to consider use in a serious application. To my knowledge, only one company has so far released a serious product written in JavaFX (Indaba), but I've never used it and they themselves describe it as "alpha". I believe Indaba went with JavaFx because they were reliant on Java APIs (they were originally going to use Flash)
    The JavaFX team seem to be working hard on improving the technology, particularly around performance, however it is still quite buggy, and this will hamper efforts to produce a serious application. Also, as you mention, there are gaps in the components available for use in applications. There is also work going on for tooling.
    There are very little public facts available on the future of JavaFX (aside from sporadic marketing pushes). Oracle made a public commitment to JavaFX at JavaOne, but I don't know whether you can bet a corporate strategy on that alone. We know that future releases are coming, albeit at a slow pace.
    It would be great if Sun/Oracle could come up with something more detailed, as I think that (alongside a stable platform) would do a lot to increase the confidence of developers.
    My guess is that it will end up as a stable technology, though I've no idea how long this will take. To that end, I would closely monitor the progress of the technology but maybe not adopt it as the preferred technology just yet.

Maybe you are looking for

  • Missing MSVCR80.dll and can't download itunes

    I have removed ITunes and tried to download again, but it won't download.  Received a message that I was missing a program MSVCR80.dll.  How do find and install from a safe site?  Thank you for your help.

  • Sending with email with excel attachment.

    I am using FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' . Its is working fine but I want display header on the top of list in excel. I tried with  inserting a row in the Internal Table (obviously the first row with index 1) with all the header contents. And af

  • Mac Book not detecting iPhone 4 wirelessly

    My Mac Book has recently stopped detecting my iPhone wirelessly.  When I first got my iPone, it was detected in the 'devices' section of iTunes, however recently this seems to have stopped working. Not sure if this is related, but Vuse has also stopp

  • Suggestions for Apple?

    Sorry if this exists someplace in another thread, but I did not see it. I love Apple and iTunes and want it to keep getting better, it changes the way we live and experience music. My idea? I love to listen to iTunes radio while doing other things. W

  • Turn Windows Features on or off presents empty

    Hi, We are using Windows 7 32 bit enterprise edition and. Turn On and Off feature is empty. I have run System readiness tool and that did not fix the problem. Please help to solve the issue. Regards, Boopathi S