I need to set specific column ("Divider1") width to 6px. I have added below code but it is talking 13px. Please advise.
var colM =
[
{
title: "Token#",
dataIndx: "stInstrumentToken",
hidden: true,
align: "left",
tpCls: "header-css",
styleHead: {
"font-weight": "bold",
"color": "#fff",
"font-family": "Tahoma",
"background-color": "#666666",
"font-size": "10px"
},
},
{
title: "Series",
dataIndx: "Series",
hidden: true,
align: "left",
tpCls: "header-css",
styleHead: {
"font-weight": "bold",
"color": "#fff",
"font-family": "Tahoma",
"background-color": "#666666",
"font-size": "10px"
},
},
{
title: "",
width: 6,
minWidth: 5,
dataIndx: "Divider1",
editable: false,
sortable: false,
cls: "pq-divider"
},
{
title: "LotSize",
dataIndx: "inLotSize",
hidden: true,
align: "left",
tpCls: "header-css",
styleHead: {
"font-weight": "bold",
"color": "#fff",
"font-family": "Tahoma",
"background-color": "#666666",
"font-size": "10px"
},
},
];