Hello,
The final release have something like
datatype : function(pdata){
// call your own function here
// use addXmlData or addJSONData methods
}
Regards
Tony
Hello,
There is onSortCol event, but this event fires before populating the
data. If you have set after the request to use local data type, this event
is right for you.
Regards
Tony
Hello,
At end of next week I will publish roadmap.
One of the priority task is to configure the grid from xml
and/or json data – that is – there will be import and export methods
Hello,
1. Yes – there is option in colModel hidedlg – when set to true,
this column does not apper in Hide/Show dialog.
2. You can use a new forceFit option, but this way you will no have
horizontal scrolbar – i.e. the grid will have the desired width.
Another possible solution is to set the width dynamically with the method
setGridWidth after each show and hide column.
Regards
Tony
Here is it
The problem is – there is no id for the checkbox.
This happen only when using json data – i.e. the id is obtained after constructing the check box – must be before – It is fixed.
Alse the second bug , which actuall was first for me is fixed too.
Thank you
Reagrds
Tony
But at all this is not the problem 🙂
The problem is that there is no id for the checkbox. I will look why?
P.S. This help me to find any other issue with this (My first post)
Hello,
sorry multikey is true and not false
Hello,
In the example is set in the options multikey: false and this work –
i.e – in the code there should be some additional checking for this options
Thank you
Regards
Tony
Hello,
It is definitley a bug. It will be corrected.
Thank you
Regards
Tony
Hello,
Multi select is disabled (instead that they apper) when cell edit is true.
Also use adding custom button and write your own code for deleting
using delRowData method.
Regards
Tony
Hello,
jqGrid does not support client side pagnagion. The primary purpose
for the grid is server side oriented. If you look into the examples I do
not think that it is complex.
For the second issue, could you please try without using navGrid
Hello,
For the second issue – it seems that your pager does not have class scroll.
For the first one – jqGrid displays the whole data returned from the server.
Regards
Tony
Hello,
It is not direct cell renderer but requires some little code.
Imagine we must known the input and output format for that cell –
(what we expect and what we put)
The reason that I do not put such renderer is the complexity and at first time the speed, but jqGrid have a lot of methods to do that.
use afterInsertRow event again with setCell method and you can do what you want here.
afterInsertRow : fiunction (rowid, adata) {
if( some_condition ) {
jQuery(“#gridid”).setCell(rowid,'cellname',myformater(adata.cellname));
}
}
function myformater(input) {
// do something here
return new_formated_value
}
Regards
Tony
Hello,
instead try
pager : 'mypager'
but not
pager : '#mypager'
Regards
Tony
Hello,
The problem maybe will remain the same. I will instead try to implemt
your work and ajust it to the next upcomming bug fix release this Sunday.
Thank you
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top