Hi,
I have to setup an asp-page with booking of several resources. Database-connection etc. worked well after the (usual) problems when one's new at these kind of controls.
But the appointments are not displayed correctly as the picture below shows:
This seems to happen, when all "space" in a "line" for a week is used and the last entry ends in the next week.
I don't know if this is a bug or if I did set a property of the controls wrongly.
Would be glad if you knew a solution forthis problem.
btw. I use Version 9.3.20103.2056 of the controls
Regards,
Andreas
Hello Andreas,
Based on screenshot you have provided I tried to set appointments using the sample on our website from the link below:
<https://ko.infragistics.com/samples/aspnet/schedule/webmonthview-general-properties>
I was able to see when “WeekendDisplayFormat” property is set to “Compressed” the appointment is shown twice for weekends. You may set “WeekendDisplayFormat” property of WebMonthView to “Full” and test this. If issue is still present provide me with markup of the page on which the issue is present with relevant styles.
Hope this helps.
Thanks,
Bhadresh
Dear Bhadresh,
thanks for the answer.
Setting the WeekendDisplayFormat-Property to full did not solve the problem though, as you can see in the picture below:
I am able to "generate" that kind of display-errors now by adding appointments lasting >= 5 days to the database (see picture below) for weeks (where the new appointment ends),where several appointments exist.
The DB-Entry that was added is shown below:
I have created private support case CAS-59460-PT56CF in order to investigate this issue. I will update you through this private support case. I will update this forum once resolution is reached.
Any updates on this issue.I am facing the same problem .The appointment is displayed for the entire week if it is more than 5 days.
Thanks
Dear ssavan,
setting the property "EnableMultiDayEventBanner" to false (and EnableMultiResourceview to true) for the WebScheduleInfo Control solved the problem.
Regards
I am having a similar problem (just upgraded from Infragistics 10.3 to 11.1 - issue did not occur in 10.3 btw), but disabling EnableMultiDayEventBanner is not an option (my customer wants multi-day appointments to span as a solid bar if that makes sense -- disabling this setting just cuts the event up into separate "pieces"/days that don't line up.) Looking at the html my aspx rendered for the webmonthview, I see the calendar is a 8-column html table and appointments are rendered as table rows. Multi-day appointments achieve that solid bar look by using a colspan attribute which makes sense. But the problem with the icontrol is that it will add appointments to a table row that will result in a total column count greater than 8. For example, in one instance I had appointments that spanned 3-day, 5-day, 2-day and 1-day all added to the same row which resulted in 12 columns (counting the left hand gray number column) which caused the table to shrink and the table row to expand out to the right (see posted picture). Two of the appointments had the same start date of July 11th (the 3-day and 5-day appointments) -- the 3-day appointment rendered ok but the 5-day appointment rendered after the 3 day (started on July 14th instead of July 11th).
Is there going to be a fix for this or is there a setting other than disabling EnableMultiDayEventBanner that can correct this? Otherwise my only solution is to downgrade my project back to Infragistics ver 10.3 which is not preferable. Thank you for your assistance.