12345678910111213141516171819202122232425262728293031 |
- define( function() {
- "use strict";
- function PageModule()
- {
- };
- PageModule.prototype.load = function( oPage )
- {
- console.log( "PageModule.load" );
- };
- PageModule.prototype.show = function( oPage )
- {
- var oControl = oPage.getControlByName( "TEXT1" );
- var selection = [{'use': 'Camping Equipment'}];
- oControl.setValues(selection);
- alert("There cct is a hidden prompt on this page. When you press OK, the prompt value will be set and the Finish button 'clicked' for you");
- oControl.valueChanged();
- if ( bAutoSubmit )
- {
- oControl.next();
- }
- };
- return PageModule;
- });
|