BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<script>
function buttonClick() {
var gridObj = document.getElementById('FlatGrid').ej2_instances[0];
gridObj.selectionSettings.type = 'Single'; //change the selection settings for particular grid component
}
</script>
|
function buttonClick() {
var gridObj = document.getElementById('FlatGrid').ej2_instances[0];//get the grid instance
gridObj.setProperties({ selectionSettings: { type: 'Single' } }, false); //dynamically the change the selection type for particular grid component using set properties method
} |