Hi Thiago, With SmartGWT (Pro and above), you can save screen definitions in XML and load them at runtime:
http://www.smartclient.com/smartgwtee/javadoc/com/smartgwt/client/rpc/RPCManager.html#loadScreen(java.lang.String , com.smartgwt.client.rpc.LoadScreenCallback, java.lang.String[]) So you could build some kind of editing interface that allows new screens to be designed, then save them to a database or file in XML, and be able to load them at runtime using loadScreen(). You can also dynamically generate XML DataSource definitions, which contain data validators and other business rule definitions, enforced on both client and server: http://www.smartclient.com/smartgwtee/server/javadoc/com/isomorphic/datasource/DataSource.html#addDynamicDSGenerator(com.isomorphic.datasource.DynamicDSGenerator ,java.lang.String) Sanjiv On Tue, Mar 5, 2013 at 10:58 AM, thiago borges martins < [email protected]> wrote: > Good afternoon, colleagues, > > I'm on a project where I need to create screens using smart-gwt, but the > creation of the screens will be in runtime system. > > This is possible using Smart-gwt? > > I thank everyone's attention. > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
