Hi,
hopefully this is trivial/a silly question, but I’m wondering how I put a checkbox in a list?
Eg:
view:“multiview”,
cells:[
{
id:1,
view:“list”,
url:“fetchdata.asp?BaseTab=AptAts&ID=x&stat=s”,
template:"#Firstname# #Surname# - #Company#",
datatype: “xml”
},
{
id:2,
view:“list”,
url:“fetchdata.asp?BaseTab=AptAts&ID=x&stat=g”,
template:"#Firstname# #Surname# - #Company#",
datatype: “xml”
}
Do I define a template somehow that includes the checkbox? Obviously then I want to iterate through the list and find all rows with a check and act on them, but that’s no problem, I think…
Thanks!