Event fires when detail row is showing
Parameters
Name | Type | Description |
---|---|---|
e | {object} | event data |
detailWrapper | {object} | the detail wrapper as jQuery object |
id | {string} | the id of the record |
Examples
sample
<table id="grid"></table>
<script>
var grid = $('#grid').grid({
primaryKey: 'ID',
dataSource: '/Players/Get',
detailTemplate: '<div></div>',
columns: [ { field: 'ID', width: 56 }, { field: 'Name' }, { field: 'DateOfBirth', type: 'date' } ]
});
grid.on('detailExpand', function (e, $detailWrapper, id) {
var record = grid.getById(id);
$detailWrapper.empty().append('<b>Place Of Birth:</b> ' + record.PlaceOfBirth);
});
</script>