jQWidgets Forums
jQuery UI Widgets › Forums › Grid › 0 displaying in Numeric column on selecting filter option "null" or "not null"
This topic contains 1 reply, has 2 voices, and was last updated by Christopher 8 years, 9 months ago.
-
Author
-
October 18, 2016 at 4:06 pm 0 displaying in Numeric column on selecting filter option "null" or "not null" #88275
jqxversion = v3.7.1
I have button called search, on click of this button we are pulling the data from source and binding to JQXGrid.
When we select the filter value as “null” or “not null” from the numeric column, then upon click of the search button the value 0 is displaying unnecessarily in numeric column (search box) though the data loaded properly.
Search button click has the following JQXgrid settings.
$(errorReportSearchGrid).jqxGrid(
{
virtualmode: true,
rendergridrows: function (obj) {
return obj.data;
},
width: ‘100%’,
enablebrowserselection: true,
source: dataAdapter,
columnsresize: true,
autoshowfiltericon: true,
showfilterrow: true,
filterable: true,
pagesize: 50,
sortable: true,
pageable: true,
pagermode: ‘simple’,
pagerbuttonscount: 10,
columnsresize: true,
selectionmode: ‘multiplecellsextended’,
pagesizeoptions: [’10’, ’20’, ’50’, ‘100’],
columns: [
{ text: ‘ID’, columntype: ‘textbox’, filtertype: ‘number’, datafield: ‘ID’, width: ‘10%’, createfilterwidget: jqxGridHelper.restrictNumberFilter },
{ text: ‘Error’, columntype: ‘textbox’, filtertype: ‘input’, datafield: ‘Error’, width: ‘38%’ },
]
});Please let me know on this
October 19, 2016 at 7:39 am 0 displaying in Numeric column on selecting filter option "null" or "not null" #88295Hi VidyaIA,
We are not able to reproduce the issue that you’re having. Also you’re using an older version of jqxWidgets. Please update to the latest and see if the problem persists. You can download it from here http://www.jqwidgets.com/download/. If it still does, provide us with an example, a link to jsFiddle or jsEditor so we can investigate it.
Best Regards,
ChristopherjQWidgets Team
http://www.jqwidgets.com -
AuthorPosts
You must be logged in to reply to this topic.