home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************\
- * *
- * Select.cc -- Generic IntraBuilder Custom Controls *
- * (used by the TMD project) *
- * *
- * *
- * Updated 9/18/96 by IntraBuilder Publications Group *
- * $Revision: 1.0 $ *
- * *
- * Copyright (c) 1996, Borland International, Inc. All rights reserved. *
- * *
- \****************************************************************************/
- class FieldSelect(FormObj) extends Select(FormObj) custom {
- this.rowset = null; // Create new custom properties
- this.field = "";
-
- function onServerLoad()
- {
- if ( this.rowset != null ) {
- this.aOptions = new Array();
- this.rowset.first();
- while ( !this.rowset.endOfSet ) {
- this.aOptions.add( this.rowset.fields[ this.field ].value );
- this.rowset.next();
- }
- this.options = "array this.aOptions";
- }
- }
- }
-