CheckBox.js 535 B

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