Hi ,
Am new to this Jqwidgets, In my project am using Jqxinput search function which i need to search the whole Jqxgrid content when user types in a textbox.
var source =
{
datatype: “json”,
datafields: [
{ name: ‘CompanyName’ },
{ name: ‘ContactName’ }
],
url: url
};
var dataAdapter = new $.jqx.dataAdapter(source);
// Create a jqxInput
$(“#jqxInput”).jqxInput({ source: dataAdapter, placeholder: “Contact Name:”, displayMember: “ContactName”, valueMember: “CompanyName”, width: 200, height: 25, theme: theme });
Here is the code which i use, in my code i have binded the souce in dataadapter as same like below.In jqxInput method i have assigned my source as dataadapter.. but i cant able to get the searched text in list. displaymember which assigned is working. i cant able to get all content here.Please help me.. Its very urgent.
Thanks in advance
Regards
Iyanar K