Add Awesome Controls Dynamically

I want to add awesome controls dynamically: for example: in view in have a table:
 <table id="tbldynamicadd"></table>
Auto Complete control:
@(Html.Awe().Autocomplete("Categories").Url(Url.Action("Getvalues", "AutoController")))
download
function(){
       $("#tbldynamicadd> tbody").html("");

        $.ajax({
                ****ajax call***
            },
            success: function (data) {
         
                for (= 0; i < data.length; i++) {
                    var item = data[i];
                    var row =  "<td align='center' > ****Want to add AutoComplete Control here**** </td>";

                    var newrow = $(row);                

                    $("#tbldynamicadd").append(newrow);
                }
            }
        });
}
owner
warlok
asked at 21 Mar 2016

Answers 

please Sign In to leave an answer

By accessing this site, you agree to store cookies on your device and disclose information in accordance with our cookie policy and privacy policy .
contact us