If set to true stop event propagation when event occur.
Examples
sample
<table id="grid" data-source="/0_6/Grid/GetPlayers"></table>
<script>
$('#grid').grid({
uiLibrary: 'jqueryui',
columns: [
{ field: 'ID' },
{ 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: 20, type: 'icon', icon: 'ui-icon-pencil', events: { 'click': function (e) { alert('name=' + e.data.record.Name); } } }
]
});
</script>