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
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.
Is there a way I can show the day view as a pop-up?
No
Use the event to load a day view.
Hi,
I've the same PB.
Can i use this button to scroll the apointments of the day in the MonthViewSingle control ? (more than 4 app)
Brian,
Thanks. That was exactly what I needed.
Thanks again,