Moderator: JIDE Support
pivotDataModel.calculate();
I have found another issue: If I drag and drop a row or column field (say "product") onto a field (say "sales") in the field list ...
I have another(!) issue/question: When I persist layout information using PivotTablePersistence, it appears not to persist which values have been ticked in the filter popups (ie. the filter settings). Is that correct?
You could give a test patch at http://www.jidesoft.com/downloads/jide.2.1.2.01.zip (or http://www.jidesoft.com/evaluation/jide ... 1.eval.zip if you are still evaluating) a try which should fix the filter popup disappearing problem.
I have found another issue: If I drag and drop a row or column field (say "product") onto a field (say "sales") in the field list ...
I couldn't reproduce this problem. Can you reproduce it it in our demo?
Further, I also notice that if the user is re-sizing a column or row when fieldsUpdated is called, the re-sizing is stopped and the user has to let go of the mouse and start again. I don't suppose there is any way around this issue?
The width thing should be fixed already in the latest release. If not, please let me know.
        panel.add(new JButton(new AbstractAction("Update") {
            public void actionPerformed(ActionEvent e) {
                Thread runnable = new Thread() {
                    public void run() {
                        try {
                            Thread.sleep(5000);
                        }
                        catch (InterruptedException e1) {
                            e1.printStackTrace();
                        }
                        Runnable runnable = new Runnable() {
                            public void run() {
                                System.out.println("updated");
                                _pivotTablePane.bothHeadersUpdated();
                            }
                        };
                        SwingUtilities.invokeLater(runnable);
                    }
                };
                runnable.start();
            }
        }));Further, I also notice that if the user is re-sizing a column or row when [bothHeadersUpdated] is called, the re-sizing is stopped and the user has to let go of the mouse and start again. I don't suppose there is any way around this issue?
The width thing should be fixed already in the latest release. If not, please let me know.
Users browsing this forum: No registered users and 288 guests