On a UltraMonthViewSingle control. When I have more than 1 appointment for a particular day (they are both full day appointments), there is a small arrow on the day that says "Click for more appointments". When I click this arrow nothing happens.
Is there something I have to do or a property that must be set to make this show the other appoinments for the day?
Thanks,
Eric
Clicking that indicator causes the MoreActivityIndicatorClicked event to fire. Typical use is to hide the MonthViewSingle control and show an UltraDayView, i.e., provide a more detailed view of a particular day's activity.
Is there a way I can show the day view as a pop-up?
It depends what you mean by "pop-up". You could, of course, show a DayView control on a dialog.
If you want it to display in a DropDown, you could use a DropDownEditorButton in one of the editor controls like UltraTextEditor.
Or if you want more of a Context-menu style pop-up, then you could use the UltraPopupControlContainer component. You just assign the PopupControl property:
this.ultraPopupControlContainer1.PopupControl = this.ultraDayView1;
And then call the Show method when you want it to pop up.