I'm using smartgwt-2.4 & IE 8.0 and facing a performance related issue specific to IE Browser. On mozilla firefox 3.6 this is working fine.
Issue:-
I'm experiencing a performance issues when using the IE browser.
There is a repeated request for an image when using a ListGrid in underneath scenario-
"GET /<myAppDir>/images/ToolStrip/button/button_start.png HTTP/1.1" 404 1108
It appears when a record is added/updated/removed in the ListGrid (which is also attached with datasource). Also it happens only when ListGrid is Grouped on some field. When ungrouped this won't happen at all.
This request tries to get the image from the applications image directory instead of GWT's SKIN directory which resulted in 404 - Not Found. However, on hovering/rollover the same record the it tries to get the image from the correct path.
It seems like this request is coming from the some smart gwt component.
What I believe is that when grid is grouped, grid internally creates a tree to group items in a tree form and
GWT is internally calling and displayed those state images.
Is there any way to suppress those image calls?
Can anybody help me out:-
1) Why its reuesting for a perticular image.
2) Why it tries to look for image into app image path instead of SKIN Dir.
3) Also, how to prevent happening this.
Issue:-
I'm experiencing a performance issues when using the IE browser.
There is a repeated request for an image when using a ListGrid in underneath scenario-
"GET /<myAppDir>/images/ToolStrip/button/button_start.png HTTP/1.1" 404 1108
It appears when a record is added/updated/removed in the ListGrid (which is also attached with datasource). Also it happens only when ListGrid is Grouped on some field. When ungrouped this won't happen at all.
This request tries to get the image from the applications image directory instead of GWT's SKIN directory which resulted in 404 - Not Found. However, on hovering/rollover the same record the it tries to get the image from the correct path.
It seems like this request is coming from the some smart gwt component.
What I believe is that when grid is grouped, grid internally creates a tree to group items in a tree form and
GWT is internally calling and displayed those state images.
Is there any way to suppress those image calls?
Can anybody help me out:-
1) Why its reuesting for a perticular image.
2) Why it tries to look for image into app image path instead of SKIN Dir.
3) Also, how to prevent happening this.
Comment