Hello,
Maybe this is the problem, but if you open the demos and reloads all
is OK – right?
I will investigate this.
Thank you
Hello,
Sorry do not test the link that you write.
Yes there is problem. I will see what is this.
Thank you
Regards
Tony
Hello,
Just now I write this from Safari 3 Win. I do not see any error when testing
the demos
I'm sorry, but I do not have Mac to test.
Regards
Tony
Hello,
It is not exactly what you ask, but it is costumizable and can be put in
the toolbar. Maybe I will finish it at end of week.
Regards
Tony
Hello,
If you want to send some addition please send me via e-mail:
tony at trirand dot com
Regards
Tony
Hello,
I'm sorry for the bad post – this tottaly is wrong.
Also try in function autocomplete_field function just to put alert and see
if it lunches. If this is the case, then check the input parameters if they are
correct.
Regards
Tony
Hello,
I have put the 3.3 version for download. You should wait a little until the docs are ready.
In you case there is another option for this
cellurl :'someurl'
Use this and all wil be ok
Regards
Tony
Hello,
If I understand right your JSON data looks like this
“some_dt”: '1223140084550'
and you expect that the grid will format it in some date format.
Remember jqGrid is more server oriented and task like this should be done server side in most cases.
jqGrid does not have cellrendering features. (It uses already formated)
This is not trivial task
1. We need to known the source format and
2. We need to set our desired format.
Instead of this you can format data your own way – just use afterInsertRow event and setCell method – something like this
afterInsertRow: function(rowid, cellrow) {
jQuery(“#mygrid”).setCell(rowid,'some_dt',myformater(cellrow.some_dt));
}
…
function myformater(src)
{
//perform here your formt
return new_formated_value
}
Also refer to example pages for ths
Best Regards
Tony
Hello,
Not sure, but when you define the pager in gridparameters,
do not use
pager : jQuery(“#mypager”),
but
pager :”#mypager”
If this does not help try to store jQuery(“#mypager”) in variable.
Regards
Tony
Hello,
As I explain in my previous post the afterSubmit function should return
certain values. Just try this
afterSubmit: function(serverStatus, aPostData) {
Hello,
There will be similar method soon.
Regards
Tony
Hello,
try this
ondblClickRow:function(id){
Hello,
I will try to prepare example of this.
Regards
Tony
Hello,
Any help is welcome.
Regards
Tony
Hello,
You should not compare this way
if(ret[0]==false) since this is internal array instead use this
afterSubmit: function(serverStatus, aPostData){
var respuesta = serverStatus.responseText;
var mydata = eval(“(“+respuesta+”)”) ;
if (mydata[status] == false) { // or mybe mydata[status] == 'false'
…
return [false,mydata[message],””];
else { return [true,””,””]; }
}
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top