jQWidgets Forums
Forum Replies Created
-
Author
-
September 19, 2017 at 6:24 am in reply to: Problem with 100% width and autoresizecolumns Problem with 100% width and autoresizecolumns #96116
I am calling
autoresizecolumns
without any params which defaults to all.
Do you see the empty space in the screen shot? Is that suppose to happen? I consider this a bug, where columns gets smaller but grid stays the same size …
Here I updated your fiddle to show my problem
http://jsfiddle.net/Exlord/uf7o7h3z/
How can I tell it NOT to shrink to less than the size of the grid itself?September 17, 2017 at 5:27 am in reply to: Problem with 100% width and autoresizecolumns Problem with 100% width and autoresizecolumns #96074Anybody? Is this the default and intended behavior?
September 12, 2017 at 6:29 am in reply to: Applying Custom Filtering With remote data leaves empty rows in grid Applying Custom Filtering With remote data leaves empty rows in grid #95949Wooooops sorry the problem was on my server side filtering, I was getting the total row count before applying the filters :D, that was messing up the pager …,
But this is still a bug, if my data contains only 1 row after filtering the grid should NOT create extra empty rows just because totalRowsCount says so!
September 9, 2017 at 2:01 pm in reply to: Applying Custom Filtering With remote data leaves empty rows in grid Applying Custom Filtering With remote data leaves empty rows in grid #95920Anyone?
I just noticed the the pager is not getting updated either, it still thinks that the grid has the full set of the rows!!!September 8, 2017 at 8:44 am in reply to: jqxGrid Server Paging, Sorting and Filtering jqxGrid Server Paging, Sorting and Filtering #95896The code in the .Net sample is INCORRECT, do whatever you wish with it, I am done explaining it to you.
September 7, 2017 at 11:25 am in reply to: jqxGrid Server Paging, Sorting and Filtering jqxGrid Server Paging, Sorting and Filtering #95864Check the php code please
if ($tmpfilteroperator == 0)
in the ASP.NET version you always comparing the operator to a empty stringtmpFilterOperator == ""
.tmpFilterOperator == ""
IS NOT EQUAL totmpFilterOperator == 0
NOR TOtmpFilterOperator == "0"
, You don’t care WHAT valuetmpFilterOperator
has only that its empty or not???tmpFilterOperator == ""
will always equals FALSE after the first loop!!!!September 7, 2017 at 10:49 am in reply to: jqxGrid Server Paging, Sorting and Filtering jqxGrid Server Paging, Sorting and Filtering #95862The php code seems to be valid :
if ($tmpfilteroperator == 0)
September 7, 2017 at 10:37 am in reply to: jqxGrid Server Paging, Sorting and Filtering jqxGrid Server Paging, Sorting and Filtering #95860This is the only place you have ever used it :
if (tmpFilterOperator == "") { where += " AND "; } else { where += " OR "; }
correct me if I’m wrong, but you are not actually using its value!!!
Shouldn’t it be something like this :
if (tmpFilterOperator == "0") { where += " AND "; } else { where += " OR "; }
March 14, 2017 at 11:07 am in reply to: Custom DropDown key value filter using label insted of value for filtering Custom DropDown key value filter using label insted of value for filtering #92236when i choose a option from the filter dropdown,grid is filtered with
Status=="خوانده نشده"
which results in a empty grid becauseStatus
is0
or1
in the data source and no rows are rendered.
Can you tell me how to fix it? -
AuthorPosts