jQWidgets Forums
Forum Replies Created
-
Author
-
April 27, 2016 at 12:00 pm in reply to: jqxInput autocomplete scrollbar for the panel jqxInput autocomplete scrollbar for the panel #83926
Hi junhsieh,
The work around you gave is good one.
i am also able to view the scrollbar, but the scrollbar is not draggable/clickable, for scrolling i have to use mouse wheel.
how to enable the scrollbar so that i can drag/click on it.Thanks
April 4, 2016 at 6:01 am in reply to: jqxGrid filter condition not working in jqxWindow jqxGrid filter condition not working in jqxWindow #83094Hello Peter,
Sorry! Sorry! Sorry! from my side,
well the problem was, i was directly consuming data which was coming from service i did not QuickWatch it and problem was in Data coming from Db which was having spaces both before and after of it, as soon as our DB admin changed it and problem resolved.
i have checked it in all 3 browsers IE,Chrome and Firefox its working fine
Thanks
April 4, 2016 at 4:29 am in reply to: jqxGrid filter condition not working in jqxWindow jqxGrid filter condition not working in jqxWindow #83092hello peter,
i will prepare jsfiddle.net sample for you in the mean time have a look at my code snippet.
function ServiceSucceededGetData(result) {
try {var data;
if (result)
data = $.parseJSON(result);
else {
return;
}var source =
{
localdata: data,
datatype: “json”,datafields: [
{ name: ‘HPID’, map: ‘HPID’, type: ‘string’ },
{ name: ‘Manufacturer’, map: ‘Manufacturer’, type: ‘string’ },
{ name: ‘Material’, map: ‘Material’, type: ‘string’ },
{ name: ‘MaterialSpec’, map: ‘MaterialSpec’, type: ‘string’ },
{ name: ‘ShortDesc’, map: ‘ShortDesc’, type: ‘string’ },
{ name: ‘LongDesc’, map: ‘LongDesc’, type: ‘string’ },
{ name: ‘HPHPart#’, map: ‘HPHPart#’, type: ‘string’ },
{ name: ‘ManufUPC’, map: ‘ManufUPC’, type: ‘string’ }
]
};$(“#gridHP”).jqxGrid(
{
Height: 500,
Width: 500,
source: source,
filterable: true,
sortable: false,
pageable: false,
groupable: false,
autoheight: false,
columnsresize: true,
columnsreorder: false,
selectionmode: “singlecell”,
enabletooltips: true,
columns: [
{ text: ‘HPID’, datafield: ‘HPID’, width: 100, },
{ text: ‘Manufacturer’, datafield: ‘Manufacturer’, width: 100, },
{ text: ‘Material’, datafield: ‘Material’, width: 100, },
{ text: ‘MaterialSpec’, datafield: ‘MaterialSpec’, width: 100, },
{ text: ‘ShortDesc’, datafield: ‘ShortDesc’, width: 80, },
{ text: ‘LongDesc’, datafield: ‘LongDesc’, width: 100, },
{ text: ‘NominalSize’, datafield: ‘NominalSize’, width: 95, },
{ text: ‘HPHPart#’, datafield: ‘HPHPart#’, width: 100, },
{ text: ‘ManufUPC’, datafield: ‘ManufUPC’, width: 100, }
],
});
} catch (e) {
alert(e);
}
}if any thing is wrong in my above code snippet please let me know.
ThanksApril 1, 2016 at 12:35 pm in reply to: jqxGrid filter condition not working in jqxWindow jqxGrid filter condition not working in jqxWindow #83070hello peter,
Sorry for that code snippet, yes i saw the demos and now i have changed my code according to that.
but still the problem persist, filter condition “equal” works only in IE and that too for data like integer numbers 100,200…but if i have 10A or 10-C as my data then it doesn’t work in IE too, and in chrome it does not workThanks
April 1, 2016 at 10:25 am in reply to: jqxGrid filter condition not working in jqxWindow jqxGrid filter condition not working in jqxWindow #83061Hi Peter Stoev,
Ohhh! yes i was missing the datafield initialization done it,
but after mentioning the datafield initialization filter condition “equal” works in IE but not in Chrome.
please suggest,also for reference i am posting the sample code snippet of my jqxGrid initialization, please suggest.
$(“#grid”).jqxGrid(
{
Height: 500,
Width: 500,
source: source,
filterable: true,
sortable: false,
pageable: false,
groupable: false,
autoheight: false,
autowidth: false,
columnsresize: true,
columnsreorder: false,
selectionmode: “singlecell”,
enabletooltips: true,
columns: [
{ text: ‘HPID’, datafield: ‘HPID’, width: 100, type: ‘string’ },
{ text: ‘Manufacturer’, datafield: ‘Manufacturer’, width: 100, type: ‘string’ },
{ text: ‘Material’, datafield: ‘Material’, width: 100, type: ‘string’ },
{ text: ‘MaterialSpec’, datafield: ‘MaterialSpec’, width: 100, type: ‘string’ },
{ text: ‘ShortDesc’, datafield: ‘ShortDesc’, width: 80, type: ‘string’ },
{ text: ‘LongDesc’, datafield: ‘LongDesc’, width: 100, type: ‘string’ },
{ text: ‘NominalSize’, datafield: ‘NominalSize’, width: 95, type: ‘string’ },
{ text: ‘HPHPart#’, datafield: ‘HPHPart#’, width: 100, type: ‘string’ },
{ text: ‘ManufUPC’, datafield: ‘ManufUPC’, width: 100, type: ‘string’ }
],
});Thanks
-
AuthorPosts