JQuery JQGrid Lokales Datenbelastungsproblem

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: JQuery JQGrid Lokales Datenbelastungsproblem

by Anonymous » 03 Apr 2025, 10:11

Ich habe ein Problem mit dem folgenden Code < /p>


var mydata = [ {id:"1",name:"foo"},{id:"2",name:"bar"} ];

jQuery(document).ready(function() {
jQuery("#lgrid").jqGrid({ data: mydata,
datatype: "local",
height: 150,
width:600,
rowNum: 10,
rowList: [10,20,30],
colNames:['id','name'],
colModel:[ {name:'id',index:'id', width:60, sorttype:"int"},
{name:'name',index:'name', width:60}],
pager: "#pgrid",
viewrecords: true,
caption: "Contacts" });

});


< /code>

Und im Körper .... < /p>



< /code>

Mit diesem Code zeige ich die Daten nie in das Raster an. Jemand hat eine Idee zu diesem Problem?

Thanks.

Top