Hello,
Will be good if I have a link to the problem. Mostley the reason for this is in the events when you delete the row. Please check your events code if you return the correct values in the events.
Regards
Tony
Hello,
Yes I confirm this bug. It happen only in FireFox 3.0.x.
Investigationg little the problem it seems that (not fully sure) there are combination of bugs in FF 3.0.x and sortable.
Best Regards
Tony
Hello,
Thanks for this. Fixed.
Best Regards
Tony
Hello,
Sorry – you are right. I do not have work long time with MSSQL, so this was first that I have in mind.
Googling it I found this:
Hello,
Do not know – sorry. The last chance – could you please replace
with just
Hello,
Be a sure that you load the language file grid.locale-en.js before the jquery.jqGrid.min.js
Regards
Tony
Hello,
I will just give you the point – you will do the rest:
So let suppose that we want to emulate the following mysql sql
select * from mytable limit 10, 20
In MSSQL this can be done like this:
select top 20 *
from
(select top 30 *
from mytable
order by sortname)
order by sortname sortorder
If you use MSSQL 2005 you can read more here
http://www.select-sql.com/mssql/how-to-make-limit-from-to-in-mssql-2005.html
Regards
Tony
Hello,
Thanks Mark.
I think that the case is to use multiboxonly set to true in grid options
Best Regards
Tony
Hello,
Do not understand. Describe your problem again.
Regards
Tony
Hello,
I think this is not jqGrid Problem.
Check your encoding into the html page.
Regards
Tony
Hello,
Fixed. Regards
Tony
Hello,
The solution is a little bit tricky.
onSortCol: function(index,iCol,sort){
var postpage = jQuery(”#list”).getGridParam('postData');
jQuery(”#list”).setGridParam({page:postpage.page});
}
Regards
Tony
Hello,
Will try to fix it, because of the new method gridResize.
Best Regards
Tony
Hello,
You can
var mysuccessfunc = function(resp) {
// resp.responseText – will give you what you want
}
Regards
Tony
Hello,
Read carfully – the missing DOCTYPE causes this.
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:how_to_install
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top