Event fires when column is showing
Parameters
Name | Type | Description |
---|---|---|
e | {object} | event data |
column | {object} | The data about the column that is showing |
Examples
sample
<table id="grid"></table>
<script>
var grid = $('#grid').grid({
dataSource: '/Players/Get',
columns: [ { field: 'ID', width: 56 }, { field: 'Name' }, { field: 'PlaceOfBirth', hidden: true } ]
});
grid.on('columnShow', function (e, column) {
alert('The ' + column.field + ' column is shown.');
});
grid.showColumn('PlaceOfBirth');
</script>