Hi all,
I am working on a .net core project in with blazor.
I am facing a issue in loading TelerikListView. When datasource is null, TelerikListView not displaying. There are so many controls like dropdown, textbox, radio buttion are there inside this. I have assigned a IEnumerable class to this Listview. When it has data, the Listview is displaying thus all controls also.
<TelerikListView Data=@Contractors @ref="@InspectionListView" Pageable="false" PageSize="1" Page="1"> <Template> <div class="k-form-field" Pageable="false"> <table> <tr> <td>
The inside controls value are binding from another datasource. Pls help me to solve this issue