jqGrid with JSON data renders table as empty

后端 未结 9 2279
孤独总比滥情好
孤独总比滥情好 2020-12-30 06:39

I\'m trying to create a jqgrid, but the table is empty. The table renders, but the data doesn\'t show.

The data I\'m getting back from the php call is:



        
9条回答
  •  -上瘾入骨i
    2020-12-30 07:32

    I don't think your ID is the correct type, I think it should be an int.

    For the given json you really don't need the jsonreader settings. What you have listed is the defaults anyway, plus you don't have a subgrid in your json.

    Try this:

    {
    "page":"1",
    "total":1,
    "records":"10",
    "rows":[
    {"id":1 ,"cell":["1","image","Chief Scout","Highest Award test","0"]},
    {"id":2,"cell":["2","image","Link Badge","When you are invested as a Scout, you maybe eligible to receive a Link Badge. (See page 45)","0"]},
    {"id":3,"cell":["3","image","Pioneer Scout","Upon completion of requirements, the youth is invested as a Pioneer Scout","0"]},
    {"id":4,"cell":["4","image","Voyageur Scout Award","Voyageur Scout Award is the right after Pioneer Scout.","0"]},
    {"id":5,"cell":["5","image","Voyageur Citizenship","Learning about and caring for your community.","0"]},
    {"id":6,"cell":["6","image","Fish and Wildlife","Demonstrate your knowledge and involvement in fish and wildlife management.","0"]},
    {"id":7,"cell":["7","image","Photography","To recognize photography knowledge and skills","0"]},
    {"id":8,"cell":["8","image","Recycling","Demonstrate your knowledge and involvement in Recycling","0"]},
    {"id":9,"cell":["10","image","Voyageur Leadership ","Show leadership ability","0"]},
    {"id":10,"cell":["11","image","World Conservation","World Conservation Badge","0"]}
    ]}
    

提交回复
热议问题