list template close icon click

Hi webix team,

i have a requirement in the list like on the close button i need to remove the item and on the remaining part of the list itemclick i need to go to another page can you give me the solution

Thanks

Hey @sriram, you can add the wanted icon via the template property and add a custom handler referring to the CSS class name of that icon via the onClick property of the current view.

As for the pagination, I don’t quite understand where you want it to be located, so I’ve included an example of an apiOnly usage, where you can control the paging via the API using any elements to do so (placed wherever you want them to be). You can read more about paging here - https://docs.webix.com/desktop__paging.html.

Here’s the end result: https://snippet.webix.com/wyq10td2.

Hi @Dzmitry the snippet you have given is fine but i need a click on list item also means i need a click on close icon and another click on list item can you suggest the solution

Do you mean you want to remove a list item when you simply click on it as well? If so, you can use a onItemClick event and apply the same function, also please note that you’ll have to return false in the onClick of the icon, so that you don’t trigger the onItemClick event while clicking on your icon. Here is an example: https://snippet.webix.com/pxxswq1c.

Thanks @Dzmitry its working