Hi !

I'm using gridpnel to show some data... (simple array)
If I put the method to fill the grid within data in the PageLoad:

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
   FillGrid()
End Sub
it's ok, but if I try to call it from a CooliteButton:
Public Sub ajaxFillGrid(ByVal sender As Object, ByVal e As AjaxEventArgs)
   FillGrid()
end Sub
The grid remanis in blank... the grid is inside a panel, and the panel is inside a window - it's all visible on page load.

I'm sure that the ajaxFillGrid is called (tested with an alert).

What's missing ?

Thank's