Hi,
> - Can views be created without necessarily having a ModelSQL ( to show > the external data as a tree view )? > > Well, I guess you can create a class that only extends ModelView and populate the data thru a wizard. To have it outside of a wizard I guess the way to go would be to have a "ModelMyRestApi" extend ModelStorage and have your class inherit from it. > > - In where or how can I perform custom actions other than *on_write > *within > my form (Maybe wizards?)? > > I'm not sure I understand what you mean, but there are on_change methods that you can use? You can also have buttons either launching wizards or calling object methods. > > - Can I create forms that do not write or store data, only for > displaying information, be it local or from > external sources? > > Well, for one you can simply set all fields read-only. I guess you could overwrite the write/create methods too so they don't perform any real action. Hope it helps -- [email protected] mailing list
