jQWidgets Forums

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts

  • Vicky
    Member

    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


    Vicky
    Member

    hello

    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 faithfully

    Vicky


    Vicky
    Member

    hello 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

Viewing 3 posts - 1 through 3 (of 3 total)