mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-04-20 20:13:40 +03:00
22 lines
354 B
JavaScript
22 lines
354 B
JavaScript
define( [
|
|
"lib/common",
|
|
"ui/widgets/checkboxradio"
|
|
], function( common ) {
|
|
|
|
common.testWidget( "checkboxradio", {
|
|
noDefaultElement: true,
|
|
defaults: {
|
|
classes: {
|
|
"ui-checkboxradio-label": "ui-corner-all",
|
|
"ui-checkboxradio-icon": "ui-corner-all"
|
|
},
|
|
disabled: null,
|
|
icon: true,
|
|
label: null,
|
|
|
|
// Callbacks
|
|
create: null
|
|
}
|
|
} );
|
|
|
|
} );
|