def reorder_columns(data, order):
reordered = []
for row in data:
new_row = {key: row.get(key) for key in order if key in row}
reordered.append(new_row)
return reordered
rawPyData = system.dataset.toPyDataSet(value)
columns = value.getColumnNames()
data = []
for row in rawPyData:
# Hold the value of IsUsed for further processing
isUsed = str(row['IsUsed']).strip() == 'Y'
row_dict = {}
for k in columns:
v = row[k]
if k == 'Selection':
row_dict[k] = {
"value": False if isUsed else True,
"style": {"backgroundColor": "cyan" if isUsed else ""},
"props": {"enabled": False} if isUsed else {"enabled": True}
}
else:
row_dict[k] = {
"value": v,
"style": {"backgroundColor": "cyan" if isUsed else ""},
"editable": True if k in ('Length1','Length2','OD Size','Width') and not isUsed else False
}
data.append(row_dict)
data = reorder_columns(data, ['SL_No', 'SerialNo', 'Length1', 'Length2', 'OrderNo', 'Selection', 'IsUsed', 'DateAndTime'])
return data
Wrote a separate function to reorder the dataset…made a few changes to the script
Able to get disabling of columns, making Selection as false requirements. But, still not able to disable the checkbox of the highlighted row. Even though, the data is actually being changed to do so. Data - (Json for the highlighted row should be at SLNo 2)
[
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113369"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 1
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123533
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 300
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 46.55
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": "cyan"
},
"value": "1125113371"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": "cyan"
},
"value": 2
},
"Selection": {
"style": {
"backgroundColor": "cyan"
},
"value": false,
"props": {
"enabled": false
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": "cyan"
},
"value": "Y "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": "cyan"
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123580
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": "cyan"
},
"value": "6192208"
},
"Length1": {
"editable": false,
"style": {
"backgroundColor": "cyan"
},
"value": 298
},
"Length2": {
"editable": false,
"style": {
"backgroundColor": "cyan"
},
"value": 47.65
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113373"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 3
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123613
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 296
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 48.75
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113374"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 4
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123630
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 294
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 49.85
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113375"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 5
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123660
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 292
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 50.95
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113376"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 6
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123690
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 290
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 52.05
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113377"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 7
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123707
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 288
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 53.15
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113378"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 8
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123753
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 286
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 54.25
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113379"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 9
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123783
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 284
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 55.35
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113380"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 10
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123817
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 282
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 56.45
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113381"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 11
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123847
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 280
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 57.55
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113382"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 12
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123880
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 278
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 58.65
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113383"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 13
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123923
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 276
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 59.75
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113384"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 14
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123957
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 274
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 60.85
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113386"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 15
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285123987
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 272
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 61.95
}
},
{
"SerialNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "1125113387"
},
"SL_No": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": 16
},
"Selection": {
"style": {
"backgroundColor": ""
},
"value": true,
"props": {
"enabled": true
}
},
"IsUsed": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": " "
},
"DateAndTime": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": {
"$": [
"ts",
192,
1770701420477
],
"$ts": 1770285124020
}
},
"OrderNo": {
"editable": false,
"style": {
"backgroundColor": ""
},
"value": "6192208"
},
"Length1": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 270
},
"Length2": {
"editable": true,
"style": {
"backgroundColor": ""
},
"value": 63.05
}
}
]
Any ideas on how to disable the checkbox?