12345678910111213141516171819202122232425262728 |
- /*******************************************************************************
- * IBM Confidential
- *
- * OCO Source Materials
- *
- * A and PM: PD
- *
- * (c) Copyright IBM Corp. 2014
- *
- * The source code for this program is not published or otherwise divested of
- * its trade secrets, irrespective of what has been deposited with the U.S.
- * Copyright Office.
- ******************************************************************************/
- define([
- "dojo/_base/declare",
- "dijit/form/ComboBox"
- ],function(declare, ComboBox){
- var ComboBox = declare("pd/widgets/ComboBox", [ComboBox], {
- style: {width: "99%"},
- placeHolder: PDMSG.IPT.IDS_IPT_SEARCH_COMBOBOX_HINT,
- onChange: function() {
- this.columnGrid.pdToggleSelected(this.item.id);
- }
- });
-
- return ComboBox;
- });
|