jQuery Grid Columns
- Getting Started
- Setting Up ASP.NET Core MVC
- Accessibility
- Chart
- ASP.NET
- Overview
- Getting Started
- Design-time Support
- ItemTypes
- Chart Elements
- Chart Types
- Area Chart
- Bar Chart
- Bubble Chart
- Line Chart
- Pie Chart
- Sparklines
- Donut Chart
- Scatter Chart
- Spline Chart
- SplineArea Chart
- RangeArea Chart
- RangeBar Chart
- RangeSpline Chart
- StepLine Chart
- StepArea Chart
- PolarLine Chart
- PolarArea Chart
- PolarBar Chart
- PolarSpline Chart
- PolarSplineArea Chart
- PolarScatter Chart
- Combining Chart Types
- Data Binding
- Exporting
- Localization
- Selection
- Zooming and Panning
- Appearance and Styling
- Server Side Events
- Client Events
- Supported Browsers
- ASP.NET Core
- ASP.NET MVC
- JAVA Apache Wicket
- API
- allowUTCFormatting
- applyAnimation
- axisX
- axisTickText
- axisType
- categoricalValues
- decimalTicks
- drawColor
- drawWidth
- endOffset
- fixedEnd
- inverseOrder
- max
- min
- minorPlotStripColor
- minorPlotStripDashStyle
- minorPlotStripWidth
- minorTicksColor
- minorTicksHeight
- minorTicksRepeat
- minorTicksWidth
- offset
- plotBands
- plotLines
- plotStripColor
- plotStripDashStyle
- plotStripWidth
- startOffset
- swapLocation
- ticksColor
- ticksHeight
- ticksPlacement
- ticksRepeat
- ticksWidth
- title
- axisY
- axisTickText
- axisType
- decimalTicks
- drawColor
- drawWidth
- endOffset
- fixedEnd
- inverseOrder
- max
- min
- minorPlotStripColor
- minorPlotStripDashStyle
- minorPlotStripWidth
- minorTicksColor
- minorTicksHeight
- minorTicksRepeat
- minorTicksWidth
- offset
- plotBands
- plotLines
- plotStripColor
- plotStripDashStyle
- plotStripWidth
- startOffset
- swapLocation
- ticksColor
- ticksHeight
- ticksPlacement
- ticksRepeat
- ticksWidth
- title
- backgroundColor
- borderColor
- borderRadius
- borderWidth
- chartAreaBackgroundColor
- chartAreaBackgroundImage
- chartAreaBorderColor
- chartAreaBorderWidth
- chartAreaPaddingBottom
- chartAreaPaddingLeft
- chartAreaPaddingRight
- chartAreaPaddingTop
- chartLegend
- dataSeries
- enableAutoFit
- events
- exportOptions
- height
- isInverted
- margin
- primaryHeader
- secondaryHeader
- seriesPalette
- seriesSettings
- area
- bar
- bubble
- donut
- line
- pie
- polararea
- polarbar
- polarline
- polarscatter
- polarspline
- polarsplinearea
- rangearea
- rangebar
- rangesplinearea
- scatter
- spline
- splinearea
- steparea
- stepline
- seriesType
- theme
- tooltipSettings
- width
- zoomMode
- Getting Started
- Events
- How-To
- Methods
- Styling
- Supported Browsers
- ASP.NET
- Barcode
- QR Code
- TagCloud
- TreeMap
- Grid
- ASP.NET
- ASP.NET Core
- ASP.NET MVC
- JAVA Apache Wicket
- JavaScript
- API
- Settings
- altRowTemplate
- altRows
- columnReorder
- columns
- dataSource
- detailCollapseCssClass
- detailCollapseText
- detailExpandCollapse
- detailExpandCssClass
- detailExpandText
- detailTemplate
- editing
- exportOptions
- filtering
- grouping
- height
- maxHeight
- noRecordsTemplate
- noRecordsText
- paging
- resizing
- rowHover
- rowTemplate
- scrolling
- selection
- showHeader
- sorting
- toolbar
- Events
- Properties
- Methods
- addRow
- cancelEditing
- clearSelection
- collapseRow
- dataItem
- deleteRow
- destroy
- editCell
- editRow
- expandRow
- exportCsv
- exportExcel
- exportPdf
- filter
- hideColumn
- insertRow
- isHidden
- isLocked
- lockColumn
- page
- pageSize
- refresh
- reorderColumn
- revertChanges
- saveChanges
- scrollTop
- select
- selectedRowIndices
- showColumn
- sort
- ungroup
- unlockColumn
- Settings
- Getting Started
- Autogenerated Editors
- Binding to Data
- Cancel User Iteraction
- Change Options Dynamically
- Columns
- Custom Editors
- Exporting
- Filtering
- Footer Total Aggregates
- Grouping
- Hierarchy
- Paging
- RTL
- Scrolling
- Selection
- Sorting
- Templates
- Themes
- Validation
- API
- Accordion
- AutoComplete
- Button
- Calendar
- CheckBox
- ColorPicker
- ComboBox
- ContextMenu
- DataSource
- DatePicker
- DateTimePicker
- Draggable
- DropDown
- Droppable
- Editor
- ListBox
- LoadingPanel
- MaskedTextBox
- Menu
- MonthYearPicker
- NumericTextBox
- Pager
- ProgressBar
- RadioButton
- Rating
- RecursiveDataSource
- Slider
- SplitButton
- Splitter
- Switch
- Tabs
- TextBox
- TimePicker
- Timeline
- Tooltip
- TreeView
- Upload
- Window
Autogenerated columns
If the grid does not have specified column it will generate them on the fly by using the fields from the resolved data source:
$("#grid").shieldGrid({
dataSource: {
data: [
{ ID: 1, name: "name1" },
{ ID: 2, name: "name2" }
]
}
});
In this case the grid will create two columns with header texts:ID and name.
Developer defined columns
You can define the grid columns via its columns property:
$("#grid").shieldGrid({
dataSource: {
data: [
{ ID: 1, name: "name1" },
{ ID: 2, name: "name2" }
]
},
columns: [
{ field: "ID", title: "Unique Number", format: "{0:c}" },
{ field: "name", title : "Name", width: "300px" }
]
});
In this case you have more flexibility in order to set columns’ widths, format the values, add additional attributes, etc. More information about all available columns’ settings you can find into the related grid columns’s api
Column Resizing
ShieldUI Grid supports column resizing. Resizing is enabled through the resizing initialization option. Column resizing requires scrolling to be enabled in the Grid:
$("#grid").shieldGrid({
dataSource: {
...
},
columns: [
{ field: "ID", title: "Unique Number", format: "{0:c}" },
{ field: "name", title : "Name", width: "300px" }
],
resizing: true,
scrolling: true
});
When column resizing is enabled, hovering over the edges of the columns in the grid header changes the cursor to indicate columns can be resized.
By default, when resizing is enabled in the grid, all columns are freely resizable. Through additional options, columns may define their own resizing restrictions. This is possible through the resizable, minWidth and maxWidth initialization options for grid columns:
$("#grid").shieldGrid({
dataSource: {
...
},
columns: [
{ field: "ID", resizable: false },
{ field: "Name", minWidth: 40 },
{ field: "Description", maxWidth: 300 }
],
resizing: true,
scrolling: true
});
In the above code snippet, resizing of the first column is disabled, while the second and third columns define min and max width, respectively.
Column Reordering
Shield UI Grid additionally supports column reordering. To enable column reordering, use the columnReorder initialization option:
$("#grid").shieldGrid({
dataSource: {
...
},
columns: [
{ field: "ID", title: "Unique Number", format: "{0:c}" },
{ field: "name", title : "Name", width: "300px" }
],
columnReorder: true
});
When dropping a column on a new position, the grid fires the command event with commandName equal to columnReorder. The command can be canceled to prevent the reorder action.
$("#grid").shieldGrid({
dataSource: {
...
},
columns: [
{ field: "ID", title: "Unique Number", format: "{0:c}" },
{ field: "name", title : "Name", width: "300px" }
],
columnReorder: true,
events: {
command: function (e) {
if (e.commandName == "columnReorder") {
//cancel any column reorder command
e.cancel = true;
}
}
}
});
When column reordering is enabled, a single grid column can be dragged and dropped between other two columns. Additionally, Shield UI Grid provides the reorderColumn method that accepts two arguments - the zero-based index of the column and the new destination index - and reorders the column to the destination index:
var grid = $("#grid").swidget();
// change the position of the third column to first
grid.reorderColumn(2, 0);
