Hi,
I'm using Lotus Domino's inbuilt functionality to render a view of data in JSON (in the domino world: nameofview?openview&outputformat=json).
The generated JSON looks like this (I have no control over the format that is generated):
{
“@toplevelentries”: “65”,
“viewentry”: [
{
“@position”: “1”,
“@unid”: “033087497B8C279B882574B8007D1F25”,
“@noteid”: “9CA”,
“@siblings”: “65”,
“entrydata”: [
{
“@columnnumber”: “0”,
“@name”: “AssignedTo”,
“text”: {
“0”: “Don Green”
}
},
{
“@columnnumber”: “1”,
“@name”: “$73”,
“text”: {
“0”: “033087497B8C279B882574B8007D1F25”
}
},
{
“@columnnumber”: “2”,
“@name”: “ITOwner”,
“text”: {
“0”: “George Thomas”
}
},
{
“@columnnumber”: “3”,
“@name”: “Form”,
“text”: {
“0”: “Ticket”
}
},
{
“@columnnumber”: “4”,
“@name”: “TitleShort”,
“text”: {
“0”: “Add a new hard drive to PC”
}
}
]
},
{
“@position”: “2”,
“@unid”: “0AB9D255471131B0882574B8007D1F06”,
“@noteid”: “94E”,
“@siblings”: “65”,
“entrydata”: [
{
“@columnnumber”: “0”,
“@name”: “AssignedTo”,
“text”: {
“0”: “Bela Lugosi”
}
},
{
“@columnnumber”: “1”,
“@name”: “$73”,
“text”: {
“0”: “0AB9D255471131B0882574B8007D1F06”
}…
I'm new to JSON and jquery, and was wondering if anyone could show me the correct jsonreader and colmodel for the above json? Is it possible to use the json as generated above?
My attempt looks like this:
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top