source: Dev/branches/rest-dojo-ui/client/rft/ui/_PageController.js @ 263

Last change on this file since 263 was 263, checked in by hendrikvanantwerpen, 13 years ago
  • [Client] Finished page framework. See rft/ui/content.js or test files for details.
  • [Client] Allow login by pressing Enter.
  • [API] On exception include details in json response.
  • [Server Use Exceptions when save() fails, iso return values.
File size: 352 bytes
Line 
1define(['dojo/_base/declare'],
2    function(declare) {
3        return declare('rft.ui._PageController',null,{
4            /** Event fired after startup of all widegts is complete */
5            onVisit: function(){},
6            /** Event fired before leaving the page. Return false to prevent */
7            onLeave: function(){}
8        });
9    });
10
Note: See TracBrowser for help on using the repository browser.