Ok still not replies from anybody. I found the solutions.
Actually it is bug in GWT - ext. To generate it. Make one panel. Set its visible property false. Create one GridPanel. Add that to first panel. put some data into grid so that it can force the first panel to show scrollbar. Now make that first panel visible. It will never show you scrollbar in there. Solutions. Dont make panel invisible initially. Do that stuff at the end of rendering. On Jan 11, 7:11 pm, DH <[email protected]> wrote: > Hi, > > I am able to dynamically update the contents of a gridpanel via an RPC > call, but when I update my store and refresh the gridpanel, the > vertical scrollbar doesn't render and it should since I have more > content than the height of my gridpanel. > > I specify a specific height for my gridpanel. At construction it has 0 > rows. Later on in my processing, I make a RPC call that retrieves data > and then I update the store and refresh. The contents are loaded, but > no vertical scrollbar. I've tried specifying the autoscroll attribute > but no luck. > > The GridPanel is a child of a basic panel having a FitLayout. > > Here is what I'm calling after I update (remove all existing entries > and add new records) my store.... > > gridStore.commitChanges(); > gridPanel.getView().refresh(); > > I do not call the reconfigure because the ColumnConfig is not changed, > only the row information. > > Any ideas? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GWT-Ext Developer Forum" 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/gwt-ext?hl=en -~----------~----~----~----~------~----~------~--~---
