[Bug?] Defer Panel Update not working when changing scale property

Hi,
I found that Defer Panel Update [when True] does not work properly when changing the scale fit property of an intensity graph.
Try the VI.
When Defer Panel Update is True, and you change the Numeric controls, the Intensity graph is not updated (as expected).
But now change the "Z Scale.Scale Fit" button and.... the Intensity graph is updated (only the Z-color, not the axis).
This looks to be a bug to me!
Nicolas
Attachments:
[Bug] Defer Panel Update not working when changing scale property.vi ‏27 KB

Hi Nicolas,
This indeed looks like a bug. I will do more research on it and file a bug report if it's not already filed.  Thank you for posting this information!
Yi Y.
Applications Engineer
National Instruments
http://www.ni.com/support

Similar Messages

  • Defer Panel Updates not working for XY graph

    I am using an XY Graph in Labview 8.2.  I am making a lot of color changes and want to improve execution time by defering the panel updates while changing the colors.  I set the VI/Panel/DeferPanelUpdates to true and do the updates.  I can see the other controls on the panel are deferred, but the XY graph continues to redraw.  I can't see a way to defer the updates separately to the XY Graph.
    I am only doing the defers for the color changes, if I defer the initial data input the color changes throw an error,

    How about this for a work-around?
    After defering the FP update, set the graph invisable then set the plot colors.
    Prior to undefering, set the graph visable.
    This works for me. Does it help your application?
    Ben
    Message Edited by Ben on 03-15-2007 06:00 PM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    set invisable.JPG ‏6 KB

  • Adobe Exchange Panel Update not working?

    Hello:
    My OS is Windows 7 64 bit and I have Ps and Ia installed on my laptop.
    I downloaded and installed the Adobe Exchange roughly two months ago and everything worked great at first.
    I installed a few things such as the Paper Textures and a game Level Up (can't recall the others at the moment).
    The game worked three times but then it just stopped responding. I never had an issue with the other extensions.
    Yesterday I went to try out the game again but when i opened the Exchange panel it said there was a new update and so i (sadly) opted to click 'Update'
    After clicking the update button I received a message:
    Also, Norton said the link or what have ya was NOT trusted and is Unknown. So, I clicked on the Norton message and got this info:
    Heuristic virus? um, what?  
    http://www.pctools.com/security-news/heuristic-virus-definition/
    I went ahead and Removed all the extensions I had downloaded/installed from the Exchange panel but I would very much like to be able to use them again.
    Any ideas as to the issue? Is there a solution?
    I have shut off Norton to see if that would work but I still get the above message  "... valid signature ... "
    Sure would appreciate some input.
    Thank you in advance
    ps. could the Heuristic virus detection be a False Positive?

    Hello:
     You are totally misunderstanding me. I have Windows 7 64 bit and I did have the Exchange Panel already installed. When I went to use the Exchange PanelIT had an update. I didNOT update to Windows 8.
    I clicked on the UPDATE IN the Exchange Panel which is what would NOT install because NORTON said it IS MALWARE.
    I tried to update the Exchange Panel and NOT my operating system.
    The attempt to Update the Exchange Panel caused the older version of the Exchange Panel to not work. So, I had to Uninstall the Exchange Panel and then when I went to Reinstall the Exchange Panel it would NOT install. And now I cannot use it at all.
    Again, I DO have Windows 7 and NOT Windows 8.
    Please, I would very much like to be able to use the Exchange Panel again because I would like to install some extensions, let me know when this issue is resolved.
    Thank You,
    Kara A. Rowe
    [email protected]

  • Delta update not working when i change material master data

    Hi SAP Guru's
    can any body help me in solving my issue.
    My issue is i created a data source with a function module to create delta in change date field LAEDA.
    .Full upload is working fine based on the selection screen but delta update is not working properly .
    it is working as full load run for every first run of the day.
    Please can any body help me in this.
    What i did in ECC.
    I copied the FM 'RSAX_BIW_GET_DATA_SIMPLE to Z function module.
    Done a select on three tables and passed the data into e_t_data
    In Rso2 i attached LAEDA filed after clicking generic delta field.
    after completing the steps in ECC
    Any help will be apperitiated .
    Thanks in advance

    Did you actually change the sold-to party though or just the payer?  The sold-to party's price list type controls the price list type value copied into the order header.  Even if the payer has a different value, it's not copied to the order header.  You can see this behavior in FV45KFKD_VBKD_FUELLEN.  If you switch sold-to's then you should get a pop-up that new pricing was carried out; you should also see your new price list type value in the order header and you can use the 'analysis' function at the item level to verify that the correct price was used.

  • TableView updates not working when ValueFactory returns a new Binding

    Hi,
    When a cell value factory returns a newly created expression or Binding cell values will stop receiving updates at some point. It seems that the cell that requests the observable value from the value factory does not keep a strong reference to the returned value so the cell will only receive updates from the the Observable value as long as it has not been garbage collected. The code below reproduces this issue:
    import javafx.application.Application;
    import javafx.beans.property.DoubleProperty;
    import javafx.beans.property.ReadOnlyStringWrapper;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.beans.value.ObservableValue;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TableColumn.CellDataFeatures;
    import javafx.scene.control.TableView;
    import javafx.scene.layout.HBox;
    import javafx.scene.layout.HBoxBuilder;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.layout.VBoxBuilder;
    import javafx.stage.Stage;
    import javafx.util.Callback;
    * Reproduce cell update bug. Compile and run the class. Press the update button a
    * couple of times and note how the values in the total column update. Press the
    * GC button a couple of times and then press the update button again. Note how
    * the values in the total column do not update anymore.
    * The Value Factory for the total column does not return a property that is
    * held by the Order object, it returns a Binding that is created on the fly.
    * The cell does not hold a strong reference to this object so it can be gc'd 
    public class CellUpdateTest2 extends Application {
         static class Order {
              String name;
              DoubleProperty price = new SimpleDoubleProperty();
              DoubleProperty qty = new SimpleDoubleProperty();
              Order(String n, double p) {
                   name = n;
                   price.set(p);
                   qty.set(1);
         final Order items[] = {
                   new Order("Item 0", 4.0),
                   new Order("Item 1", 5.0),
                   new Order("Item 2", 6.0),
                   new Order("Item 3", 7.0),
                   new Order("Item 4", 8.0),
                   new Order("Item 5", 9.0),
                   new Order("Item 6", 10.0),
                   new Order("Item 7", 11.0)
         @Override
         public void start(final Stage primaryStage) throws Exception {
              final Button updateButton = new Button("Update Values");
              updateButton.setOnAction(new EventHandler<ActionEvent>() {
                   @Override
                   public void handle(final ActionEvent actionEvent) {
                        for (Order i: items) {
                             i.qty.set(i.qty.get() + 1);
              final Button gcButton = new Button("System.gc()");
              gcButton.setOnAction(new EventHandler<ActionEvent>() {
                   @Override
                   public void handle(final ActionEvent actionEvent) {
                        System.gc();
              final TableView<Order> tv = new TableView<Order>();
              final TableColumn<Order, String> nameCol = new TableColumn<Order, String>("Item");
              final TableColumn<Order, Number> priceCol = new TableColumn<Order, Number>("Price");
              final TableColumn<Order, Number> qtyCol = new TableColumn<Order, Number>("Quantity");
              final TableColumn<Order, Number> totalCol = new TableColumn<Order, Number>("Total");
              nameCol.setCellValueFactory(new Callback<TableColumn.CellDataFeatures<Order, String>, ObservableValue<String>>() {
                   @Override
                   public ObservableValue<String> call(final CellDataFeatures<Order, String> d) {
                        return new ReadOnlyStringWrapper(d.getValue().name);
              priceCol.setCellValueFactory(new Callback<TableColumn.CellDataFeatures<Order, Number>, ObservableValue<Number>>() {
                   @Override
                   public ObservableValue<Number> call(final CellDataFeatures<Order, Number> cellData) {
                        return cellData.getValue().price;
              qtyCol.setCellValueFactory(new Callback<TableColumn.CellDataFeatures<Order, Number>, ObservableValue<Number>>() {
                   @Override
                   public ObservableValue<Number> call(final CellDataFeatures<Order, Number> cellData) {
                        return cellData.getValue().qty;
              totalCol.setCellValueFactory(new Callback<TableColumn.CellDataFeatures<Order, Number>, ObservableValue<Number>>() {
                   @Override
                   public ObservableValue<Number> call(final CellDataFeatures<Order, Number> cellData) {
                        return cellData.getValue().price.multiply(cellData.getValue().qty);
              tv.getColumns().addAll(nameCol, priceCol, qtyCol, totalCol);
              tv.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
              tv.getItems().addAll(items);
              final HBox hb = HBoxBuilder.create().children(updateButton, gcButton).build();
              final VBox vb = VBoxBuilder.create().children(tv, hb).build();
              primaryStage.setScene(new Scene(vb));
              primaryStage.setHeight(200.0);
              primaryStage.show();
         public static void main(final String args[]) {
              launch(args);
    } Is this expected behaviour?
    If so - what would the correct way to approach this?
    If not - is there an easy workaround?

    this seems to have worked....
         static class Order {
              String name;
              DoubleProperty price = new SimpleDoubleProperty();
              DoubleProperty qty = new SimpleDoubleProperty();
                    DoubleProperty total = new SimpleDoubleProperty();
              Order(String n, double p) {
                   name = n;
                   price.set(p);
                   qty.set(1);
                    public void updateTotal() {
                        total.set(price.get() * qty.get());
         }with
              qtyCol.setCellValueFactory(new Callback<TableColumn.CellDataFeatures<Order, Number>, ObservableValue<Number>>() {
                   @Override
                   public ObservableValue<Number> call(final CellDataFeatures<Order, Number> cellData) {
                                    System.out.println("in qty column");
                                    cellData.getValue().updateTotal();
                        return cellData.getValue().qty;
              });and finally
              totalCol.setCellValueFactory(new Callback<TableColumn.CellDataFeatures<Order, Number>, ObservableValue<Number>>() {
                   @Override
                   public ObservableValue<Number> call(final CellDataFeatures<Order, Number> cellData) {
                                    System.out.println("in total column");
                        return cellData.getValue().total;
              });I cannot explain why what you did did not work. I have a mistrust towards binding and I avoid it when ever possible.
    thanks
    jose

  • "Add to Shooping cart" button does not work when changing Product Category

    Dear all, we are running SRM 4.0 Classic scenario and we have a strange problem with Product Category field. When click on the "Describe Requirement", it opens the shopping cart page with the Product Category field and the default value is coming from favorites. As long as you dont change this value , enter the other fields and click on the "Add to shopping cart" button, then it works. If the users try to change this value on this page to select a different value from the drop down, then the "Add to Shopping Cart" button does not work. Has anyone encountered this problem before. Users are getting frustrated with this behaviour. Any help to fix this issue is appreciated. Thanks in advance.
    Regards
    Gabriel Bertrand

    Dear Disha, this is what is the behaviour.
    Suppose, if for a particular user, there are 4 items listed as favorites in the Product category and one of them is a default value. If you don't make any changes to this value and then click on Add to Shopping Cart, it works. If you try to select a different value other than the default from the favorites, then the Button does not do anything.You click on it nothing happens and cannot go to the next page. Also all the links are disabled (ie Describe Requirement / Old Purchase Order and Template)
    If we dont change the value for Product category and go to the next page (with default value) and then change the Product category here, it works (Continue button works and were able to Order or Hold).
    Thanks
    Regards
    Gabriel

  • Application is not working when changing of oracle server domain name

    Hi friends
    We decided to change oracle server domain name due to some reason .. we changed the domain name but application running on the other server cannot connect to this domain i don't know whats the problem . I change the enterprise manager ( emca -config dbcontrol db -repos recreate_) according to the new domain but some of the future not working like date,etc. can anyone help me how to rectify it plz.

    Mohd khalid wrote:
    Hi friends
    We decided to change oracle server domain name due to some reason .. we changed the domain name but application running on the other server cannot connect to this domain i don't know whats the problem . I change the enterprise manager ( emca -config dbcontrol db -repos recreate_) according to the new domain but some of the future not working like date,etc. can anyone help me how to rectify it plz.I am really confused that what's not working? What I have understood is that you recreated the EM repository. So where does "some of the future not working like date,etc." come into it? Are you checking date from EM ? Which application is not working, your application or EM or both or somethingn else? Tell us the complete version, error information and also post the output of
    emctl status dbconsoleHTH
    Aman....

  • Apply button not working when changing AP settings

    Hi Guys,
    I am working on installing a new 2500 Controller with 2 AIR-LAP1242G's attached to it.  I have both registered and on the controller but I am having trouble moving one of them to a new IPS AP group that I created.  Furthermore, I noticed the default gateway is missing from the static ip settings and I am unable to add that as well.  When I add the default gateway and hit apply, the controller does nothing. Same thing for when I try to change my WIPS device to monitor mode.  Has anyone ever seen behaivor like this?
    A couple other things that I noticed is that when I go to AP groups and try to remove the AP's from the default group, there is no remove button when you go inside the default group like  I see when i go into my IPS group.
    The AP's are on software ver 12.4(23c)JA3 Boot ver 12.4.13.0
    and the controller is at 7.0.22.0
    I have already power cycled the controller and both AP's.  Is there anything else that anyone can think to look at here?

    Grrr.....I tried everything but closing the browser out and opening a new session.  I logged out and back in without closing internet explorer completely but it turned out closing internet explorer solved this.

  • Shared font does not work when changed

    Hi, I am using a shared font in an eLearning course. The font
    is in a separate library file and is used in all pages. But if I
    change the font in the font properties, the text in the other pages
    does not show up. Has any one come across a solution for this
    issue?
    Thanks.

    A file called FlashPaper2PrinterPort was on the network under
    my personal folder. Is there a way to add this to my hardrive to
    allow me to convert at home?

  • Graph does not autoscale when it's value is updated in a subvi and Defer Panel Updates is on

    Hello,
    I have a main VI containing several xy grpahs, which I update from a sub vi. In order to cut down on front panel redraws I defer panel updates while the graph values are updated and then redraw the FP after this has been done. However when I do this the graphs do not autoscale properly. I've attached two vi's as an example. Run the Main vi, if the Defer Panel Updates boolean is false then everything works fine, if it is true then the graph does not autoscale.
    I have found a previous post that mentions something similar (here). Has this been fixed or is there a work around.
    I'm using LV 8.5
    Thanks
    David
    Attachments:
    Main3.vi ‏22 KB
    Sub1.vi ‏14 KB

    Hi Matthew,
    Thanks for your reply, it fixed the problem. However it has thrown up a different but related issue.
    In my application the user can select how many graphs to display and I
    programmatically calculate the size and position of each graph. If any
    of the graphs overlap, even slightly, and defer panel updates is on
    then only the topmost graph autoscales correctly, the others don't at
    all, although the data they display gets updated. Turning autoscale off
    and on again for a particular graph rescales that graph, presumably
    because it has been forced to.
    I have attached a test case with 4 graphs. The size and position of the
    graphs are set by the 'Offsets' cluster. Click 'Rearrange' to get it to
    recalcute the positions. If you change the Vertical Gap or Horizontal
    Gap values to 0 or negative then the graphs will overlap. With Defer
    Panel Updates off there is no problem. With it on only the topmost
    graph updates properly.
    My current workaround is to ensure the graphs don't overlap, but I'm guessing they shouldn't be doing this anyway.
    David
    Attachments:
    PositionsCalculator.vi ‏19 KB
    Main21.vi ‏50 KB
    Plot.vi ‏22 KB

  • [svn] 1720: Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints .

    Revision: 1720
    Author: [email protected]
    Date: 2008-05-14 14:50:06 -0700 (Wed, 14 May 2008)
    Log Message:
    Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints.
    QA: Yes
    Doc: No
    Details:
    Update to the TomcatLoginCommand to work correctly with NIO endpoints.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-304
    Modified Paths:
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    Revision: 1720
    Author: [email protected]
    Date: 2008-05-14 14:50:06 -0700 (Wed, 14 May 2008)
    Log Message:
    Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints.
    QA: Yes
    Doc: No
    Details:
    Update to the TomcatLoginCommand to work correctly with NIO endpoints.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-304
    Modified Paths:
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

  • Windows Update from COntrol Panel does not work??

    Hello,
    regardless if it is common way to do so or not: Does anyone have experience with the "Windows Update" functions in WE8S?
    I tried them upon a customers request, and I've seen that I could not get it to complete successfully when choosing the option in
    Control Panel. It either hanged during "Downloading..." or at the "Preparing to install..." screen - I waited for many hours. But when I using the "Windows Update"
    app from the start screen, updates were installed without any problems (OK, 1 has failed, but the process has completed). Of course, both methods have different look, maybe it is not the
    same...
    As per Sean Limings' book it is no good idea to update systems in the field this way - shall I remove the functions from the system? What are you doing?
    Thanks,
    Willi K.

    Maybe it was because of the number of updates (in my case there were 85 updates pending). After I succeeded installing via the "Windows Update" app from "Start Menu", there where two more updates, and update now worked when called from
    control panel (at least one of them, KB2973201 still stolidly fails to install).

  • I have i phone 4s i there is problem of wifi my wifi is not working when i go to the wifi there is no working on off when i update it as a 6.1 ios on that time again it was good but after 2 days again the same problem i am too tired

    I have i phone 4s i there is problem of wifi my wifi is not working when i go to the wifi there is no working on off when i update it as a 6.1 ios on that time again it was good but after 2 days again the same problem i am too tired and i also reset network setting but nothing gonna be worked

    Sounds like the device was dropped at some point and damaged as a result.
    Take it to Apple for evaluation and a replacement.

  • I tunes is not working. when i go to update apps nothing happens go to itunes page is blank

    itunes not working. when i go to update apps nothing happens. if i go to itunes store page is blank and does not go to the store

    http://support.apple.com/kb/ts1567

  • HT201413 Device does not work when I connect it to your computer to the iTunes program update requests and then gives me an error No. 21

    Device does not work when I connect it to your computer to the iTunes program update requests and then gives me an error No. 21

    Device does not work when I connect it to my computer to the iTunes program update requests and then gives me an error No. 21

Maybe you are looking for