1234567891011121314151617 |
- "use strict";
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: Cognos Analytics
- * Copyright IBM Corp. 2015, 2017
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define(['jquery', 'bi/admin/common/ui/input/RadioCheckBase'], function ($, RadioCheckBase) {
- 'use strict'; //NOSONAR: meant to be strict
- var CheckBox = RadioCheckBase.extend({
- widgetName: 'checkbox',
- inputType: 'checkbox'
- });
- return CheckBox;
- });
|