2

I have a List<string> in my Model C# filled on runtime, called @Model.Names in my Views.

After filling that list I want to fill an array in javascript from values of that list, in order to do the following:

 var myArray = [];

//fill myArray with values from @Model.Names

 $("#tags").autocomplete({
   source: myArray 
  });

So when the user types in <input id="tags"> he will get an autocomplete with a list of the names I filled on runtime.

Any idea how to do so?

1

2 Answers 2

3

I prefer this way. No manual Looping, and you can do this with fairly complex viewmodels as well (as long as there are no recursive references within your types).

var myArray = @Html.Raw(Json.Encode(Model.Names))

$("#tags").autocomplete({
    source: myArray 
});
Sign up to request clarification or add additional context in comments.

Comments

2

you can try the following.

<script type="text/javascript">
    var myArray = [];
    @foreach (var name in Model.Names)
    {
        @:myArray.push("@name");
    }
</script>

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.