Skip to content Skip to sidebar Skip to footer

Smart Gwt Components Are Not Rendered In Html Div Tag

I am using smart GWT to develop my application, to create the structure of the application I am using GWT components. The HTML code snippet is as below:

Solution 1:

Covered in the SmartGWT FAQ:

http://forums.smartclient.com/showthread.php?t=8159#aMix

Can I mix Smart GWT and GWT widgets?

Yes, with caveats.

Smart GWT has interoperability support that allows a Smart GWT widget to be added to a GWT container and allows a GWT widget to be added to a Smart GWT container, and it's appropriate to use this for:

  • incremental migration to Smart GWT, such as introducing singular, sophisticated Smart GWT components like the Calendar or CubeGrid to an existing GWT application

  • using sophisticated third-party GWT widgets within Smart GWT, where Smart GWT doesn't have corresponding built-in functionality

However it does not make sense to freely intermix Smart GWT and GWT (or other) components, that is, for example, you should not place GWT widgets within a Smart GWT container that is in turn within a GWT container. In general, don't intermix widgets unless the need for a feature forces you to.

The reason for this is that there are limits to the maximum degree that two Ajax widget kits (including GWT) can interoperate - there are no standards that allow interoperability in the areas of management of tab order, zIndex management, pixel-perfect layout, section 508 accessibility and multi-level modality.

Post a Comment for "Smart Gwt Components Are Not Rendered In Html Div Tag"