Hello,
I am using Paramquery v8.5.0. I am working on a functionality to add radio button to each row of the table, which will enable user select only one row from the list. Data from the select row will be used for further processing.
Below is the code we are currently using for checkbox, need to update this to Radio button functionality
obj.colModel = [
{title: "Select", dataIndx: "flag", type: 'checkbox', maxWidth: 30, align: "center", cls:'checkboxColumn',
resizable: true, editor: false, sortable: false ,editable:true, cb: { all: false, header: true, check: "Y", uncheck: "N" }
},
{ title: "Employee No", dataIndx: 'empNo', minWidth: 50,maxWidth: 100, align: "center" },
{ title: "First Name", dataIndx: 'firstName' , minWidth: 100,maxWidth: 400, align: "center" }
]
Screenshot attached, need help to update the checkboxes highlighted in yellow to Radio buttons.
Any help on this would be much appreciated