jQWidgets Forums

This topic contains 2 replies, has 2 voices, and was last updated by  Serdar 11 years, 2 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • Input jquery set text not working #51940

    Serdar
    Participant

    hello How can I do bind to into input text?
    because I do not see the text

    function InputDataBind(values) {
    alert(values.CrewTopDetail.Name); ( this here data working )
    $(‘#Name’).text(values.CrewTopDetail.Name);
    $(‘#LastName’).text(values.CrewTopDetail.LastName);
    }

    Input jquery set text not working #51943

    Peter Stoev
    Keymaster

    Hi Serdar,

    plaseholder is HTML5 attribute which displays Hint Text in modern Web Browsers that do have HTML5 support. It would not work in old browsers.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Input jquery set text not working #51949

    Serdar
    Participant

    I understand you, but How can I do bind into data ?
    Because I’m using jqxInput

    $(‘#Name’).jqxInput({ height: 25, width: 223, minLength: 1, theme: ‘Bootstrap’ });

    and I am using citrio,chrome,explorer 11

    edit :
    ok I tried that and is working
    thank you..

    $(‘#Name’).val(values.CrewTopDetail.Name);
    $(‘#LastName’).val(values.CrewTopDetail.LastName);

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

You must be logged in to reply to this topic.