TPlannerItem.Hint supported?

I would like to have a custom hint for each planner hint. When I assign the Hint property, the items show one hint only: "Click here to make the item editable." Odd hint given I am making the items read only and have cleared the TIWWebPlanner.Hints.HintEditItem.

What properties should I be looking for to get item hints working?

There was an issue with the TPlannerItem.Hint property in the TIWWebPlanner that has now been fixed.

The update will be available with the next release of the TMS IW WebPlanner.

However you should be able to remove the "edit item" hint if the item is readonly or by clearing the HintEditItem property value programmatically.

Example:
procedure TIWForm1.IWAppFormCreate(Sender: TObject);
begin
  TIWWebPlanner1.Hints.HintEditItem := EmptyStr;
end;