Row Select

Row selection is a configurable feature. Developer can specify whether he wants to turn it on or off.

Example
row-select.js
$('#jquery-row-select-grid').guiGrid({

	columns: [{
		header: 'Number',
		field: 'number',
		width: 65
	}, {
		header: 'Name',
		field: 'name',
		view: 'ITALIC'
	}, {
		header: 'Position',
		field: 'position',
		view: 'GuiCellView.'BOLD'
	}, {
		header: 'Team',
		field: 'team'
	}],

	source: [...],

	rowSelection: false

});

Row Select - options

OptionsTypeDefaultDescription
rowSelectingbooleantrue Enables / disables row selection.

Related articles: