Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Mohamed Lakhdari

Pages: [1]
1
Help for ParamQuery Pro / jquery and jquery ui versions
« on: November 14, 2019, 03:45:08 pm »
Please

what is jquery and jquery ui best (recommanded) versions  to use with paramquery 6+ ?

thanks

2
Help for ParamQuery Pro / Update local data
« on: August 26, 2018, 07:51:15 pm »
Bonjour,

How to update  local data cache  (data Source) ?

sample :

dataSource= [
  {id:125, name: "Francois", age:25 },
  {id:126, name: "Alain", age:26 },
   ...
  ]


colModel : [
        {title : 'ID',   dataType : 'integer',   dataIndx : 'id'},
   {title : 'Name', editable : false, dataIndx : 'name'}
      ],

dataModel : {
   data : dataSource,
   recIndx : "id"
}


my need is to update name and age

$("#grid").pqGrid( "updateRow", {
    rowIndx: 2,
    newRow: { name:"Alain Legrand", age: 30 }
});



Pages: [1]