jQWidgets Forums
Forum Replies Created
-
Author
-
August 28, 2013 at 7:25 am in reply to: jqxinput Value Not Fetch in asp.net jqxinput Value Not Fetch in asp.net #27836
hi team
Thank you for reply
But I Want To fetch Value On Textbox Change Event.
So Please Give Me Proper Suggestion For this.
Thanks
your
Vicky
August 26, 2013 at 9:58 am in reply to: jqxinput Value Not Fetch in asp.net jqxinput Value Not Fetch in asp.net #27683hello
thank you for reply
I Can’t Fetch Value From jqxinput Change Event .
So Tell me Any Method For Get Auto-complete value From Change Event of Textbox
Code Is :
function autocompleteOfSudent() {
var temdata = $(“#hdnStudent”).val();
$(“#txtStudentName”).jqxInput({ placeHolder: ‘Please Enter Name’, height: 25, width: 200, theme: theme,
source: function (query, response) {
var dataAdapter = new $.jqx.dataAdapter
(
{
datatype: “json”,
datafields:
[
{ name: ‘StudentId’, type: ‘number’ },
{ name: ‘FirstName’, type: ‘string’ },
{ name: ‘LastName’, type: ‘string’ },
{ name: ‘Instrumentid’, type: ‘number’ },
],
id: ‘id’,
localdata: temdata
},
{
autoBind: true,
formatData: function (data) {
data.name_startsWith = query;
return data;
},
loadComplete: function (data) {
if (data.length > 0) {
response($.map($.parseJSON(data), function (item) {
return {
label: item.FirstName + “, ” + item.LastName,
value: item.FirstName + “|” + item.StudentId + “|” + item.Instrumentid
}}));
}
}
}
);
}
});
}
Blue Color Line Value Fetch From Textbox Changed Event.So Give me Any Solution If You Have Please.
Thanks In Advance
your faithfullyVicky
August 23, 2013 at 8:20 am in reply to: jqxinput Value Not Fetch in asp.net jqxinput Value Not Fetch in asp.net #27527hello jqxwidgets Team
I Can’t Send You Any Project demonstrate Because i Am Fresher So I cant Have Any Permission For That So Please Give Me Solution For This Code.
I Want To Just Access Textbox Value That Give on Auto-Complete value Selected.
So Please Give me Any Solution.
And You Do Not Understand That Code Or not Find Any Solution Then Please Send me Demo For asp.net Auto-Complete With jqxInput.
Thanks In Advance
Your Faithfully
Vicky
-
AuthorPosts