Managed to find a solution: updating it below.

I am adding a handler to the celltable when the celltable updates it rowdata 
automatically a valueChange event is fired, so making use of it. Had to go 
thru the source code for this.

.addHandler(new ValueChangeHandler<MyDTO>() {

        @Override
        public void onValueChange(
                ValueChangeEvent<MyDTO> event) {
            CellTable<MyDTO> table 
                = (CellTable<MyDTO>) event.getSource();
            

            String height = 231 + table.getOffsetHeight() + "px";
            
            Window.alert("Value Change Height " + height);
            
        }
        
    },ValueChangeEvent.getType() );

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/DFvW8UQ8ge4J.
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