Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software.
Try it for free.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);
} |