Hello,
Will look at this and notify what I can do.
Best Regards
Tony
Hello,
Could you please put a simple response from the server – I mean the json reasponse. You can do this easy when you use FireBug.
Regards
Tony
Hello,
If you use php maybe you should check how you obtain values – when using GET a $_GET array is used, when used POST a $_POST array is used – if you do not want to have problems you maybe need to use $_REQUEST.
Regards
Tony
Hello,
A link to the problem is highly recommended.
Regards
Tony
Hello,
I never test this but. Here is the main direction – after posting the data to server you can reedit the row – that is after calling svaeRow you can call editRow again for this id.
Regards
Tony
Hello,
Use the latest 3.5 version. This is not a bug, but feature
. This is enabled in the latest build.
Regards
Tony
Hello,
I'm sure that this bug is corrected
http://github.com/tonytomov/jqGrid/commit/87ceefede8dcc4f69ce39766741fe87ea5b76700
Try to clear your cache.
Regards
Tony
Hello,
Thanks. Will test this.
Regards
Tony
Hello,
You can construct your own form and then use following two methods – FormToGrid and GridToForm. See demo – there is a such example.
Regards
Tony
Hello,
I think you should use autocomplete plugin for this purpose.
Regards
Tony
Hello,
If you know the id of the row you can do:
$(“#rowid”+ ” #jqg_”+rowid, '#mygrid').attr(“readonly”,true);
or remove it
$(“#rowid”+ ” #jqg_”+rowid, '#mygrid').remove();
Regards
Tony
Hello,
You can make your own array like this
MyColNames = ['bg']['Име1','Име2'…];
MyColNames = ['en']['Name1','Name2'…];
and the call
var lang = 'bg';
$(“#mygrid”).jqGrid ({
colNames : MyColNames[lang],
….
});
Regards
Tony
Hello,
Yes you can do what you want.
Best Regards
Tony
Hello,
In 3.5 version we pass the request to the loadComplete event.
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top