Dear All,

  I am very new to GWT.

   I have a doubt.
     I have a page that contains a Grid and a Chart.The Grid has a button
that can filter the values of the grid according to the Date what i am
giving in FromDate and ToDate field.
     In the same page i have a FusionChart which is gererated from a
servlet.

     Currently if i am filtering the Grid, Grid is getting filtered,But
chart will be the previous chart that i loaded before.
     My requirement is when i am clicking on the filter button the changes
that i got in grid page shold be reflected in Chart also.

    this is what i am doing currently when clicked on Filter button,

     ButtonListenerAdapter listener = new ButtonListenerAdapter() {

                public void onClick(Button button, EventObject e) {

                    button.setText("Filter");

                    store.reload();
                }
            };


where store is a ' GroupingStore '.

Currently Chart is loaded along with the Grid in the first time. But when i
cahnged the Date that changes is reflecting only on Grid.I want to reflect
these changes to Chart also.

My Grid is working perfectly.


As i am new to GWT i dont know it is a simple or a difficult quesion.

 Please Help .......

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to