Hi
I am showing the Owner and the day in the ultradayview. We are facing little problem when there are 100s of Resources or Owners available in a application. In this case what happens is Owner column so small that user cannot really identify the who is the owner. Is there a way I can show tool tip to the owner.
Or do we have an option by which you can set the Owners vertically and the timeslot horizontally so that the owners or the resources are visible.
Thanks and Looking forward to a positve reply.
Hi Brian,
Thanks for the update, but still found an issue here.
If your mouse is already in the Ultradayview and if you mouse over say on one of the owners it would show the tooltip (see attached image)
and now when you try to move to the next owner it won’t show the tooltip. The user has to go out of the control and comeback to the control again, onlt then the tooltip shows up again.
Is there any solution for this if so could you help with with some sample codes.
Also is there any option to tile the resource names on top vertically (see attached screen sample)
If your mouse is already in the Ultradayview and if you mouse over say on one of the owners it would show the tooltip and now when you try to move to the next owner it won’t show the tooltip. The user has to go out of the control and comeback to the control again, onlt then the tooltip shows up again.
I
You could handle the control's MouseEnterElement event and display a tooltip when the cursor passes within an owner header:
Example:void dayView_MouseEnterElement(object sender, UIElementEventArgs e){ UltraDayView dayView = sender as UltraDayView; nsDayView.OwnerHeaderUIElement headerElement = e.Element as nsDayView.OwnerHeaderUIElement;
if ( headerElement != null && headerElement.Owner != null ) { this.toolTip.SetToolTip( dayView, headerElement.Owner.Key ); }}