I have a small list of items that i need to present on a form. The user can select multiple items with the help of checkboxes. And after the user is done he needs to save the form.
I have seen a similar example on telerik products but for ajax
https://demos.telerik.com/aspnet-ajax/listbox/examples/functionality/checkboxes/defaultcs.aspx
Is there a way to implement the same functionality in Asp.Net Core?
4 Answers, 1 is accepted
I have created a small sample which demonstrates how to achieve the same functionality as in the provided demo using Telerik for ASP.Net Core.
Attached you will find the sample. Please examine it and let me know how it works for you.
I look forward to your reply.
Regards,
Georgi
Progress Telerik

Hi Georgi,
Unfortunally right now my VS2015 does not work and have only VS2017 without .net core 1.0
Could you create a project with with .net core 2.0 that works in VS2017.
Thanks.
I have created a .Net Core 2.0 sample with the same content as the one from my previous message.
Attached you will find the sample. Please examine it and let me know if it helps.
Regards,
Georgi
Progress Telerik

Hi Geordi,
Indeed it does help me. However be aware that for me the getSelected was failing because of the "`" (grave accent), so I had to adapt the code to $('#selected-items').append('<li>'+ listbox.dataSource.at(x) +'</li>');