I love the new WEB UI builder interface and design

I absolutely love the "NEW" Web UI builder user interface. I wish they would make this the NORM for the LabVIEW environment. I love the WPF style control cutomization. I love the way it is laid out and how "EASY" it is to use. Everything is right in front of you. No right clicking to get this menu or that menu. I love the Ribbon on the top. Form layout is MUCH nicer and easier
OK LabVIEW developers lets get this for the regular LabVIEW Environment. The new controls for 2011 are a step in the right direction as far as the look and feel of the UI but the LabVIEW environment is YEARS behind other developement environments UI capability.
Joe.
"NOTHING IS EVER EASY"

Hi Joe_H,
Glad you like it! 
And the catch is that it's still an Early Access Release.  From the Web UI Builder FAQ:
"The term Early Access Release is a term NI uses to communicate that the initial version of new NI software has one or more caveats associated with it that potential customers should consider, and that the product is targeted at early adopters. For example, features that many customers might expect could be absent, or the usability of the product may be lacking."
In other words, there's even more to come!
For anyone else who is interested and to keep up with the latest Web UI Builder developments, visit the Web UI Builder Product Page.
Have a great day,
Chris V
Applications Engineer
National Instruments

Similar Messages

  • Best practice to develop the news web part to retrieve news data across the farms

    Hi,
    We have developed the News Web part. The functionality  it pulls the news from other SharePoint Farms and display it in the site. Currently we are using secure store service to  to connect to different FARM to retrieve the news from that FARM.
    The issue with this approach is that every time user hits the page it  will always hit the Secure Store service.There are almost 80K users who will be using this web part. Moreover this web part connects to multiple sites for multiple news from different
    division.What should be the best practice to develop such kind of web part without consuming the server resources and keep hitting the server till we get the new news.News does not change very often.
    Regards
    Rajaniesh

    Hi,
    According to your description, my understanding is that you want to know which is the best way  to handle the large complication of SharePoint cross farm retrieving data.
    If you are developing the custom web part to retrieve data from other farm, I suggest you can firstly create a custom timer job to get data hourly in the backend and restore the data in a list. Then you can create a web part to link to the list to display
    the data.
    For cross farm accessing data, I suggest you can create a custom web service to achieve it.
    Also, you can use ajax to display the web part data asynchronously. It will improve the performance and reduce the server pressure.
    Here are some detailed articles for your reference:
    Create and Deploy Custom Timer Job Definition in SharePoint Programatically
    Creating a Custom ASP.NET Web Service
    Create asynchronous web parts for Sharepoint
    Thanks
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jerry Guo
    TechNet Community Support

  • Love LOVE LOVE the new highlights treatment tool! But I do have a suggestion!

    I have been using plugs to get the kind of treatment I now see in Lightroom4!!! Love LOVE LOVE the new treatment panel! It really makes it much easier and significantly quicker to edit all the photos of a weding, etc. I was able to use the sync function to carry my settings of whites and highlights over to all pictures but I don;t know which control actually syncs this new feature... Can you add some distinction into the sync panel to be able to sync more specifically the desired selections? At the moment I see the exact same sync pad as I always have though the treatment panel has changed. I understand that you pulled some of the features from under Tone Control but the whites come from elsewhere (not sure actually from where). It would be nice to be able to sync JUST the whites or JUST the blacks, etc., without having to sync it all. Can you create a new sync panel?
    Thanks!!
    Angela

    On Windows, you can only open one at a time. Lightroom checks for another copy running at startup and simply transfers control to that one. Libraries don't matter. It worked that way with the last Beta.
    On Macs, you can run both simultaneously.
    Hal

  • Love the new forums... but

    love the new forums... but hate the performance.  Keep in mind my internet connection is 20MB/S download speed, there are times the pages wont even finish loading and you have to stop and reload again and/or very slow loading times.  Of course, there are times the performance is as expected, but rarely.  I hope Adobe plans to support the forums with better hosting.

    jon@cmiwebstudio wrote:
    love the new forums... but hate the performance.  Keep in mind my internet connection is 20MB/S download speed, there are times the pages wont even finish loading and you have to stop and reload again and/or very slow loading times.  Of course, there are times the performance is as expected, but rarely.  I hope Adobe plans to support the forums with better hosting.
    As an od adage says: "Don't feel like the Lone Ranger".
    which means everyone and his , brother, sister, Aunts, Uncles, mothers's and Father, and cousins on the Acrobat forums are complaing about the Speed.
    There is really we as Users of the Forums can do about it other than complain and hope adobe will do something about it when they get finished with their easter holiday. Maybe that will be before their 4th of July vacation.

  • I love the new form generation stuff in FB, but some problem here

    I love the new form generation stuff in FB and I've created a form from a create autogenerated service.
    When the user fills in the form I call the method I assign it to a token in a call responder
            createtbMysteryShopperResultsResult2.token = tbMysteryShopperResultsService.createtbMysteryShopperResults(tbMysteryShopperRe sults2);
    The service just a void one
    However if the users fills the form again and called the same service I get an error:
    Item with id 'tbMysteryShopperResultsRPCDataManager:#:0' already exists.  Error on destination 'tbMysteryShopperResultsRPCDataManager'
    The primary key column is auto incremented in the ms sql database so I do not understand this error?
    Any advice would be great, this problem has been bugging me for days now
    A lot of the code generated stuff I don't understand so I don't know where to look for errors

    Sorry for the late response, but I think I've found a workaround, I encounter exactly the same trouble in my application, very rare trouble but more often when the application runs on touch screen. I think It's like the user double-click on the button firing the action of create item twice, in my case it should not arised because i remove the button on click but ... sometimes  it seems it should :-/ By default the RemoteObject wrapps in the DataService is in multiple mode , see concurrency in RemoteObject source :
        [Inspectable(enumeration="multiple,single,last", defaultValue="multiple", category="General")]
        * Value that indicates how to handle multiple calls to the same service. The default
        * value is multiple. The following values are permitted:
        * <ul>
        * <li>multiple - Existing requests are not cancelled, and the developer is
        * responsible for ensuring the consistency of returned data by carefully
        * managing the event stream. This is the default.</li>
        * <li>single - Making only one request at a time is allowed on the method; additional requests made
        * while a request is outstanding are immediately faulted on the client and are not sent to the server.</li>
        * <li>last - Making a request causes the client to ignore a result or fault for any current outstanding request.
        * Only the result or fault for the most recent request will be dispatched on the client.
        * This may simplify event handling in the client application, but care should be taken to only use
        * this mode when results or faults for requests may be safely ignored.</li>
        * </ul>
    Then I add a test in my code and the problem seems to disappear  :
                                if ( createPersonResult.token == null )
                                    createPersonResult.token = personService.createPerson(person);
    HTH,
    Stephane

  • Love the new version! Just one small issue with pixelpoint stylus

    love the new version with different width strokes - makes a huge difference!
    one minor issue is the undo button on the Adonit pixelpoint stylus only works intermittently. I find when it doesn't work I do one or two more strokes after which it works. So its not entirely unworkable but is a bit annoying.

    love the new version with different width strokes - makes a huge difference!
    one minor issue is the undo button on the Adonit pixelpoint stylus only works intermittently. I find when it doesn't work I do one or two more strokes after which it works. So its not entirely unworkable but is a bit annoying.

  • I got a ipod touch original and i love the new games

    i got a ipod touch original and i love the new games but i realy hates that my software is outdated could you try to make an update for ipodtouch original plzz

    Johny-boy wrote:
    i got a ipod touch original and i love the new games but i realy hates that my software is outdated could you try to make an update for ipodtouch original plzz
    We are ipod users just like you.  We cannot make any updates at all.
    There will very likely no way that their will be any more updates for original or 2nd gen ipod touches.

  • Hi ! Today I see the new iMac, and I love the new floral wallpaper. Someone know I can found this new Wallpaper, Thank You

    Hi !
    Today I see the New iMac, and I love the new floral wallpaper in demonstration. Someone know where I can found this new floral Wallpaper,
    Thank You !!!

    It is a fair question and Apple have obviously used some original photography for the new product shots. Wait and see if they are included in Mac OS X 10.8.3..

  • Love the new pricing

    When BT Youview first launched I ordered the Unlimited Extra package at £15pm, when the extra channels launched I added them bringing the total to £18pm.
    A few days ago I heard about the extra channels for £3pm and though uh ho, more money. Pleasantly surprised to noticed that the Unlimited Package has been split up and I was able to take out kids and music as I never watched them. I've now added the HD extra channels and actually saved money.
    Well done to BT for making the packages separate and letting us choose what we want to watch.
    Here's the new order, HD extra channels and costs me less, noticed a £2 discount too

    Although at the moment I personally feel disadvantaged by the new pricing structure I do feel it is the right way to go as on Youview we do have optioins to effectively opt for additional player content from other suppliers. Thus it is sensible for BT to have a more flexible build your own package approach.

  • Buling a new Web Application using JSF and Ajax.

    Hello Group,
    I am a building a new web application using JSF and AJAX. Planning to use Myfaces Tomahawk, Dojo for Ajax, Hibernate, Spring,Eclipse IDE and Jetty Server.Can some one please suggest me will this be a right one for
    building complex UI and will it support for using the jsf features and would like to know any other free open
    source framework, ide, tools which support the best way for an agile project..?. There is restriction like i have to use java1.4

    jaisheela wrote:
    Hello Friends,
    I am also in the same situation.
    I am a building a new web application using JSF and AJAX.
    Requirement is I need to use IBM version of DOJO and JSF but I need to develop the whole application using Eclipse 3.3,2 and Tomcat 5.5.
    With IBM version of DOJO and JSF, will Eclipse and Tomcat help to speed up the development or do you suggest me to go for Rational Application Developer and WebSphere Application Server.
    If I need to go with RAD and WAS, then I am new to RAD and WAS, is it easy to use RAD and WAS for this kind of application and implement web applicaiton fast.
    Any feedback will be great help.Those don't sound like requirements of the system to me. They sound more like someone wants to improve their CV/resume
    From what I've read recently, if it's just fast you want, look at Ruby on Rails

  • What is the diffrence between My Runnable Interface and Java Runnable

    Hi folks
    all we know that interfaces in java just a decleration for methods and variables.
    so my Question is why when i create an interface its name is "Runnable" and i declared a method called "run" inside it.then when i implements this interface with any class don't do the thread operation but when i implement the java.lang.Runnable the thread is going fine.
    so what is the diffrence between My Runnable Interface and Java Runnable?
    thnx

    Hi folks
    all we know that interfaces in java just a decleration
    for methods and variables.
    so my Question is why when i create an interface its
    name is "Runnable" and i declared a method called
    "run" inside it.then when i implements this interface
    with any class don't do the thread operation but when
    i implement the java.lang.Runnable the thread is going
    fine.
    so what is the diffrence between My Runnable Interface
    and Java Runnable?
    thnxClasses and interfaces are not identified by just their "name", like Runnable. The actual "name" the compiler uses is java.lang.Runnable. So even if you duplicate the Runnable interface in your own package, it's not the same as far as the compiler is concerned, because it's in a different package.
    Try importing both java.util.* and java.awt.* (which both have a class or interface named List), and then try to compile List myList = new ArrayList();

  • Do the new iPod Touches shoot video and take pictures?

    Do the new iPod Touches shoot video and take pictures?
    The new Nanos shoot video. You'd think the Touch would.
    I spent maybe 20 minutes reading Apple info pages, an iPod comparison page, and even quickly searched the User Guide, but saw nothing about shooting video anywhere.
    Sure, it talked about video, but it wasn't clear to me if that was only for playback.
    I guess I am missing it, or else it doesn't do it, which would be strange.
    If it does, where is this info on the Apple Web site? That is, links to both video and photo shooting?
    Thanks!
    S.

    not yet....
    most people expected a camera to be added to the iPod touch, but that announcement didn't arrive.

  • I downloaded the new 6 software. Me and my boyfriend share the same iTunes account and now every time I text him I also get a copy of the text sent to my from my number. How do I get that to stop?

    I downloaded the new 6 software. Me and my boyfriend share the same iTunes account and now every time I text him I also get a copy of the text sent to my from my number. How do I get that to stop?

    Go to settings > messages > send & receive
    check or uncheck the correct phones numbers and/or email addresses

  • I just got the new ipod touch (5th generation) and it will show up on my computer but it will not show up on itunes and it won't connect. Please help!

    I just got the new ipod touch (5th generation) and it will show up on my computer but it will not show up on itunes and it won't connect. Please help!

    See:
    iOS: Device not recognized in iTunes for Windows
    You need iTunes version 10.7

Maybe you are looking for

  • How to use a USER_DATASTORE to index multiple columns in different tables

    I would appreciate if somebody can give an example or point to links with examples on how to use USER_DATASTORE on multiple columns in different tables. THe Oracle Text documentation only shows multiple columns in the same table. Thanks in advance.

  • Page not reloading even if page is marked as no cache

    Web pages will not reload on visit even if the meta information specifies: <meta http-equiv="Pragma" content="no-cache" /> and <meta http-equiv="Expires" content="0" /> Page shown is last visit from cache instead.

  • FCP to flv?

    I am ready to send my website programmers final video for my site. The end size is 617 x 411 - a proportionate reduction of 720 x 480. They want it in .flv. I am on a Mac with MPEG Streamclip & QT Pro. I am using FCP 6. What would be the best way (pr

  • Flash player will play multiple layers of the song...

    Has anybody run into this problem? Is this because of a setting on my flash media server? On SOME computers, the player will play multiple layers of the same song, making it impossible to listen to. Its ok on the PC not on some MACs. Please help!!!

  • Copy expression only not working

    I'm working on AE CC 2014. Copy expression only is not working, I'm not sure if it's not copying anything or not pasting what it copied. But no expression is being applied to the other layers as it used to be the case before.