[jQuery] Re: need help with jqGrid

2009-04-17 Thread Tony

Hello,
Already replayed. Please check your code - you have a unneeded coma in
colModel
Regards
Tony

On Apr 17, 1:33 pm, led l.r@sapo.pt wrote:
 I' m trying to use the jquery jqGrid plugin but i can't see it working
 with ASP code.
 this is the xml generated file.

 rows
   page /page
   total /total
   records114/records
     row id=191
       cell191/cell
       cell15/cell
     /row
     row id=192
       cell192/cell
       cell15/cell
     /row
     row id=193
       cell193/cell
       cell15/cell
     /row
 /rows

 and this is the html:

 html
 head
 titlejqGrid Demo/title
 link rel=stylesheet type=text/css media=screen href=/jqgrid/
 themes/basic/grid.css /
 link rel=stylesheet type=text/css media=screen href=themes/
 jqModal.css /
 script src=/jqgrid/jquery.js type=text/javascript/script
 script src=/jqgrid/jquery.jqGrid.js type=text/javascript/
 script
 script src=/jqgrid/js/jqDnR.js type=text/javascript/script
 script src=/jqgrid/js/jqModal.js type=text/javascript/script
 script type=text/javascript
 jQuery(document).ready(function(){
   jQuery(#list).jqGrid({
     url:'listDisponibilidade.asp',
     datatype: 'xml',
     mtype: 'GET',
     colNames:['id','Cdigo'],
     colModel :[
       {name:'id', index:'id', key:true, width:55},
       {name:'cod_casa', index:'cod_casa', width:55},
      ],
     pager: jQuery('#pager'),
     rowNum:10,
     rowList:[10,20,30],
     sortname: 'id',
     sortorder: desc,
     viewrecords: true,
     imgpath: '/jqgrid/themes/basic/images',
     caption: 'My first grid'
   });});

 /script
 /head
 body
 table id=list class=scroll/table
 div id=pager class=scroll style=text-align:center;/div
 /body
 /html

 I can't see what i'm doing wrong. Please help.


[jQuery] Re: need help with jqGrid

2009-04-17 Thread Led

tony , check that is not that.

On 17 Abr, 11:46, Tony t...@trirand.com wrote:
 Hello,
 Already replayed. Please check your code - you have a unneeded coma in
 colModel
 Regards
 Tony

 On Apr 17, 1:33 pm, led l.r@sapo.pt wrote:



  I' m trying to use the jquery jqGrid plugin but i can't see it working
  with ASP code.
  this is the xml generated file.

  rows
    page /page
    total /total
    records114/records
      row id=191
        cell191/cell
        cell15/cell
      /row
      row id=192
        cell192/cell
        cell15/cell
      /row
      row id=193
        cell193/cell
        cell15/cell
      /row
  /rows

  and this is the html:

  html
  head
  titlejqGrid Demo/title
  link rel=stylesheet type=text/css media=screen href=/jqgrid/
  themes/basic/grid.css /
  link rel=stylesheet type=text/css media=screen href=themes/
  jqModal.css /
  script src=/jqgrid/jquery.js type=text/javascript/script
  script src=/jqgrid/jquery.jqGrid.js type=text/javascript/
  script
  script src=/jqgrid/js/jqDnR.js type=text/javascript/script
  script src=/jqgrid/js/jqModal.js type=text/javascript/script
  script type=text/javascript
  jQuery(document).ready(function(){
    jQuery(#list).jqGrid({
      url:'listDisponibilidade.asp',
      datatype: 'xml',
      mtype: 'GET',
      colNames:['id','Cdigo'],
      colModel :[
        {name:'id', index:'id', key:true, width:55},
        {name:'cod_casa', index:'cod_casa', width:55},
       ],
      pager: jQuery('#pager'),
      rowNum:10,
      rowList:[10,20,30],
      sortname: 'id',
      sortorder: desc,
      viewrecords: true,
      imgpath: '/jqgrid/themes/basic/images',
      caption: 'My first grid'
    });});

  /script
  /head
  body
  table id=list class=scroll/table
  div id=pager class=scroll style=text-align:center;/div
  /body
  /html

  I can't see what i'm doing wrong. Please help.- Ocultar texto citado -

 - Mostrar texto citado -


[jQuery] Re: need help with jqGrid

2009-04-17 Thread Tony

Hello,
The version of jquery  1.3.1 that you use is not compatible with
jqGrid version 3.4
Download the latest 3.4.3 version of jqGrid

On Apr 17, 2:51 pm, Led l.r@sapo.pt wrote:
 tony , check that is not that.

 On 17 Abr, 11:46, Tony t...@trirand.com wrote:

  Hello,
  Already replayed. Please check your code - you have a unneeded coma in
  colModel
  Regards
  Tony

  On Apr 17, 1:33 pm, led l.r@sapo.pt wrote:

   I' m trying to use the jquery jqGrid plugin but i can't see it working
   with ASP code.
   this is the xml generated file.

   rows
     page /page
     total /total
     records114/records
       row id=191
         cell191/cell
         cell15/cell
       /row
       row id=192
         cell192/cell
         cell15/cell
       /row
       row id=193
         cell193/cell
         cell15/cell
       /row
   /rows

   and this is the html:

   html
   head
   titlejqGrid Demo/title
   link rel=stylesheet type=text/css media=screen href=/jqgrid/
   themes/basic/grid.css /
   link rel=stylesheet type=text/css media=screen href=themes/
   jqModal.css /
   script src=/jqgrid/jquery.js type=text/javascript/script
   script src=/jqgrid/jquery.jqGrid.js type=text/javascript/
   script
   script src=/jqgrid/js/jqDnR.js type=text/javascript/script
   script src=/jqgrid/js/jqModal.js type=text/javascript/script
   script type=text/javascript
   jQuery(document).ready(function(){
     jQuery(#list).jqGrid({
       url:'listDisponibilidade.asp',
       datatype: 'xml',
       mtype: 'GET',
       colNames:['id','Cdigo'],
       colModel :[
         {name:'id', index:'id', key:true, width:55},
         {name:'cod_casa', index:'cod_casa', width:55},
        ],
       pager: jQuery('#pager'),
       rowNum:10,
       rowList:[10,20,30],
       sortname: 'id',
       sortorder: desc,
       viewrecords: true,
       imgpath: '/jqgrid/themes/basic/images',
       caption: 'My first grid'
     });});

   /script
   /head
   body
   table id=list class=scroll/table
   div id=pager class=scroll style=text-align:center;/div
   /body
   /html

   I can't see what i'm doing wrong. Please help.- Ocultar texto citado -

  - Mostrar texto citado -


[jQuery] Re: need help with jqGrid

2009-04-17 Thread Led

thanks tony, but is not loading the results ... and no error

On 17 Abr, 15:36, Tony t...@trirand.com wrote:
 Hello,
 The version of jquery  1.3.1 that you use is not compatible with
 jqGrid version 3.4
 Download the latest 3.4.3 version of jqGrid

 On Apr 17, 2:51 pm, Led l.r@sapo.pt wrote:



  tony , check that is not that.

  On 17 Abr, 11:46, Tony t...@trirand.com wrote:

   Hello,
   Already replayed. Please check your code - you have a unneeded coma in
   colModel
   Regards
   Tony

   On Apr 17, 1:33 pm, led l.r@sapo.pt wrote:

I' m trying to use the jquery jqGrid plugin but i can't see it working
with ASP code.
this is the xml generated file.

rows
  page /page
  total /total
  records114/records
    row id=191
      cell191/cell
      cell15/cell
    /row
    row id=192
      cell192/cell
      cell15/cell
    /row
    row id=193
      cell193/cell
      cell15/cell
    /row
/rows

and this is the html:

html
head
titlejqGrid Demo/title
link rel=stylesheet type=text/css media=screen href=/jqgrid/
themes/basic/grid.css /
link rel=stylesheet type=text/css media=screen href=themes/
jqModal.css /
script src=/jqgrid/jquery.js type=text/javascript/script
script src=/jqgrid/jquery.jqGrid.js type=text/javascript/
script
script src=/jqgrid/js/jqDnR.js type=text/javascript/script
script src=/jqgrid/js/jqModal.js type=text/javascript/script
script type=text/javascript
jQuery(document).ready(function(){
  jQuery(#list).jqGrid({
    url:'listDisponibilidade.asp',
    datatype: 'xml',
    mtype: 'GET',
    colNames:['id','Cdigo'],
    colModel :[
      {name:'id', index:'id', key:true, width:55},
      {name:'cod_casa', index:'cod_casa', width:55},
     ],
    pager: jQuery('#pager'),
    rowNum:10,
    rowList:[10,20,30],
    sortname: 'id',
    sortorder: desc,
    viewrecords: true,
    imgpath: '/jqgrid/themes/basic/images',
    caption: 'My first grid'
  });});

/script
/head
body
table id=list class=scroll/table
div id=pager class=scroll style=text-align:center;/div
/body
/html

I can't see what i'm doing wrong. Please help.- Ocultar texto citado -

   - Mostrar texto citado -- Ocultar texto citado -

 - Mostrar texto citado -