Hi Brian,Thanks for contacting Syncfusion support.In our ListView component we have provided the AddItem method for adding new items. So, you can use this method to achieve your requirement. We have prepared sample for your convenience. Please refer to the below link for the sample.Sample link: https://www.syncfusion.com/downloads/support/directtrac/general/ze/ListviewAdd-1589099198.zipPlease let us know if you any concerns.Regards,Muthukrishnan K
<EjsButton OnClick="@Remove"> Remove Item</EjsButton> |
public void Remove()
{
CheckoutItem data = new CheckoutItem {
Id = 20,
Name = "name1",
Quantity = 0
};
list.RemoveItem(data);
} |