If set to true stop event propagation when event occur.
Examples
sample
<table id="grid" data-source="/Players/Get"></table>
<script>
$('#grid').grid({
uiLibrary: 'bootstrap',
columns: [
{ field: 'ID', width: 34 },
{ field: 'Name', events: { 'click': function (e) { alert('name=' + e.data.record.Name); } } },
{ field: 'PlaceOfBirth', stopPropagation: true, events: { 'click': function (e) { alert('name=' + e.data.record.Name); } } },
{ title: '', field: 'Edit', width: 32, type: 'icon', icon: 'glyphicon-pencil', events: { 'click': function (e) { alert('name=' + e.data.record.Name); } } }
]
});
</script>