resizing

Enables column resizing in Shield UI Grid:

$("#grid").shieldGrid({
    dataSource: {
        ...
    },
    columns: [
        { field: "ID", title: "Unique Number", format: "{0:c}" },
        { field: "name", title : "Name", width: "300px" }
    ],
    scrolling: true,
	resizing: true
});

Resizing requires that scrolling is also enabled.

To see this setting in action, please refer to the Shield UI Grid Column Resizing demo.