extending TTMSFNCKanbanBoardItem

Hello,


i'm currently developing a web application with the Kanbanboard component.

Is there an easy way to add visible controls to a Kanbanboarditem? for example a WebButton.

Thanks in advance.

Hi,


This is unfortunately not possible. The kanban board is rendered on a HTML 5 canvas and does not allow adding buttons. We have added this on our feature request list to see what can be done about this.

Thank you very much for your quick response.


It would be about a TWebComboBox in particular, but I guess adding support for one control allows the use of most if not all, if it gets implemented.

just one more question on that regard, is this the same for the VCL?

Yes, this is the same for VCL

ok thanks. i just came across an issue finding the right item with a middle mouse button click.


the following code only works for the first column, should work for every column right?

for column in kanbanboard.Columns do
begin
item := column.XYToItem(x,y);
if (item = nil) then
continue;
.... do some stuff with the right item.

Yes, that should work, but the coordinates need to be relative to the column, not the kanbanboard.

works perfectly after offsetting the mouseinput. thanks alot.