jsgrid
jsgrid copied to clipboard
Move control column to first column
Hi, I have too many columns in table. So for editing and deleting user has to scroll to right. so, I want to move the control column to first.
Please help asap
just specify the type "control" as the first field : fields: [ { type: "control" }, { name: "Nome", type: "text", width: 150, validate: "required" }, { name: "Age", type: "number", width: 50 }, { name: "Address", type: "text", width: 200 }, { name: "Country", type: "select", items: countries, valueField: "Id", textField: "Name" }, { name: "Married", type: "checkbox", title: "Is Married", sorting: false } ] look at documentation for field