jQWidgets Forums
Forum Replies Created
-
Author
-
Hi
According you previous post:>The adapter’s filter option should be used only when the Grid is in Virtual Mode. Otherwise, you can overwrite the built-in filtering so basically setting the adapter’s filter is wrong approach.
>Regards,
>Peter Stoevit’s not good practice to overwrite filter option on data aadpter.
But in your example this approach is usedas I mentioned in my previous posts
http://www.jqwidgets.com/community/topic/grid-keyboard-navigation-stops-working-when-showfilterrow-singlecell-used/
there are some problems in cellselection grid mode behavior and one of sugesstion was to not use this option.
I’m not using virtual mode of the gridRegards,
Turchaninov MaximMarch 23, 2015 at 3:15 pm in reply to: Grid keyboard navigation stops working when showfilterrow, singlecell used Grid keyboard navigation stops working when showfilterrow, singlecell used #69013Hi
I’m using server side filtering.
Here is your instruction
http://www.jqwidgets.com/jquery-widgets-documentation/documentation/phpintegration/php-server-side-grid-filtering.htm
This example uses filter option on dataAdapterDoes your answer means I can’t use server side filtering. If it doesn’t how server side filtering can be released without using filter option on dataDadapter in cellselection mode?
I don’t want to send very log record set to the web browser. The only way to do this to use server side filtering & pagingRegards,
Turchaninov MaximMarch 22, 2015 at 11:13 pm in reply to: Grid keyboard navigation stops working when showfilterrow, singlecell used Grid keyboard navigation stops working when showfilterrow, singlecell used #68949Hi
My previous post was not quite right.
My walkaround doesn’t work right.
I have to specify filter option on dataAdapter but it breakes right behaviour jqxGrid in cellSelection mode.
Without this option everything is working right.Could you help me to figure out this problem?
Regards
Turchaninov MaximMarch 22, 2015 at 3:04 pm in reply to: Grid keyboard navigation stops working when showfilterrow, singlecell used Grid keyboard navigation stops working when showfilterrow, singlecell used #68946Hi
I’ve investigated the problem.
The problem appears when ‘filter’ function specified on dataAdapter. Content of the function actually doesn’t metter.
filter: function () {
// update the grid and send a request to the server.
// $(“#grid”).jqxGrid(‘updatebounddata’, ‘filter’);
}I’ve changed my configuration to
$(“#grid”).on(“filter”, function (event)
{
$(“#grid”).jqxGrid(‘updatebounddata’, ‘filter’);
});and removed filter option on dataSource
Regards
Turchaninov Maxim -
AuthorPosts