Hi Selvamani,
thanks for your answer. Yes, I need further assistance ;-)
Query: Is the structure (template/css) for the default layout available, so I can use and customize it?
Unfortunately the template of your sample looks not exact the same like the default style. You can see it in the picture below. Thats what I meant with "it seems it's much effort to rebuild the default". Is a template available that contains the full default style ?
Query: Will the event be fired when the card was already rendered and I have to change the html of the card or is there a way to manipulate e.g. the data for the title before the card is rendered?
"Yes, you can use this event to change the title before appended to the Kanban board."
That's what I tried, but it didn't worked. I've changed the Property in args data but the changes were not considered. I've modified your sample project, so you can see what I've done. Can youu please modify the code so the Title shows "Hello" instead of "Title".
Regards,
Patrick
|
function queryCellInfo(args) {
$($(args.card).find(".e-primarykey")).html("Hello"); // you can pass which you need to change
} |