Kanban card with hidden elements.

This is my first day using Webix.
I would like to use Webix Kanban with some custom information fields displayed on the card, the text hidden and the tags removed.

From what I’ve found so far it seems i need to use a template, but the only example i can find is very complicated to a newcomer (it loads an Avatar), are there any simpler examples (one extra information field and the text hidden would be ideal).

Thank you in advance.

Hello elbie,

Kanban view allows you to adjust the content of the card as you want.
And here you can find more detailed information about customization of the kanban cards.
Please check the snippet with the example: Code Snippet

Kanban has the default common sructure of the card (inner HTML) which includes colors, avatar, body, attachments and footer. But if you want to change the structure or exclude some element from this structure, for example, avatar or footer , you have to use the template function where you need to return the structure you want.

If you want to change the body of the card you need to use the templateBody function. By default it displays the card title (text). But if you want to display your custom fields, you need to create HTML you want and display it inside.

If you wan to delete tags from the card you can delete the whole footer from the template function.

But if you want to have footer in the structure of the card just without tags you need to use templateFooter function which displays tags and icons, and delete tags from there.

And all these functions you need to define inside the method type . Apply this method by its name ( name: "cards") to the kanbanlists you want.
Please take a look at the example: Code Snippet