Is there any way to allow the user to scroll through the events on a given day when there are a lot of events on the same day? For example, if there are 10 events on the same day, the box for that day is huge to accommodate all the events.
Hello mflach,
Can you tell me do you want the scrollbars to appear for any cell with many appointments in it or for the month view itself?
Any cell (Date) with multiple appointments.
Mark
Hello Mark,
With the following setup:
<body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="sm" runat="server" /> <igsch:WebScheduleInfo runat="server" ID="WebScheduleInfo1" EnableReminders="true" EnableRecurringActivities="true"> </igsch:WebScheduleInfo> <ig_scheduledata:WebScheduleOleDbProvider ID="WebScheduleOleDbProvider1" runat="server" DataSourceID="AccessDataSource1" WebScheduleInfoID="WebScheduleInfo1" StyleSetName="" StyleSetPath="" StyleSheetDirectory=""> </ig_scheduledata:WebScheduleOleDbProvider> <igsch:WebMonthView ID="WebMonthView1" runat="server" WebScheduleInfoID="WebScheduleInfo1"> </igsch:WebMonthView> </div> <asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/WebSchedule2.mdb" SelectCommand=";"> </asp:AccessDataSource> </form> </body>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="sm" runat="server" />
<igsch:WebScheduleInfo runat="server" ID="WebScheduleInfo1" EnableReminders="true" EnableRecurringActivities="true">
</igsch:WebScheduleInfo>
<ig_scheduledata:WebScheduleOleDbProvider ID="WebScheduleOleDbProvider1"
runat="server" DataSourceID="AccessDataSource1"
WebScheduleInfoID="WebScheduleInfo1" StyleSetName="" StyleSetPath=""
StyleSheetDirectory="">
</ig_scheduledata:WebScheduleOleDbProvider>
<igsch:WebMonthView ID="WebMonthView1" runat="server" WebScheduleInfoID="WebScheduleInfo1">
</igsch:WebMonthView>
</div>
<asp:AccessDataSource ID="AccessDataSource1" runat="server"
DataFile="~/App_Data/WebSchedule2.mdb" SelectCommand=";">
</asp:AccessDataSource>
</form>
</body>
We have the following result:
Is this the view that you want?
Thank you for posting your solution on the forum. It will be helpful for other users as well.
If you have further questions, let me know.
Nevermind. Just figured it out. Height=100% messed it up. If I set the height, it works.
Mark <><
That is the view I want, but that is not the view I get. Here is my code:
(Version 11.1.20111.2090)
<igsch:WebMonthView ID="WebMonthView1" runat="server" Width="100%" WebScheduleInfoID="WebScheduleInfo1" StyleSetName="Caribbean" Height="100%" EnableAutoActivityDialog="False">
<ClientEvents DblClick="WebMonthView1_DblClick"/>
In Code Behind: (I have a custome build provider)
MySqlProvider.WebScheduleInfo = WebScheduleInfo1
And this is what I get: (If I add more, it keeps growing)