Hi,
Why is it that whenever I set an appointment recurrence to weekly, and whenever I include Friday to the selection, after saving
I 'm not seeing my Friday appointment in the Calendar or the WebDayView. I looked into the database and the DayOfWeekMaskUTC is equal to 62 which means Friday is selected. Any ideas why Friday is not showing in the appointments?
Thanks
Thanks for the tip Roger. I'll try your solution once I get back to working in that issue again.
I just fixed a similar problem.
Creating new appointments worked fine. However, when I marked an appointment as a Recurring appointment the change would not take place. Additionally, if I created an appointment as a recurring appointment the Recurrence_Add stored procedure would fire, but no attempt would be made to fire the Activity_Add stored procedure. I grabbed the SQL call for the Recurrence_Add via the SQL Server Profiler provided by Microsoft in SQL 2005 Enterprise Edition. Then I took the extra ticks out of the string and executed the query.
Viola, the procedure could not INSERT the record in the Recurrence table. This is because the RecurrenceID could not be null.
In the end, the script I used to build the WebSchedule tables was either invalid or modified.
To fix the problem I just made the RecurrenceID an Identity column with an Identity Increment of 1 and an Identity Seed of 1 (the defaults). Of course, I reviewed the provided stored procedures to see if this was valid before the attempt.
Sorry about the long post.
I don't know for sure, your best bet is to backup your files just in case. For the future, it's best to try and put any customizations in an external js file, that way you're not augmenting the source JS files. Otherwise when bug fixes or new features are added to the source js files, you've got a bunch of maintenance you need to do, and I'm sure you've got better things to do with your time.
-Tony
Will the HotFix overwrite the javascript files? I have already heavily customized WebSchedule .js files and I wonder if I would have to integrate my changes again??
From the main www.infragistics.com site go to "View My" under the main menu at the top of the page. Then go to Keys and Downloads. From there, you should see the product you've registered. Clicking on it will give you a list of links including hotfixes. Note, if you haven't "registered" the key, you won't see any hotfixes. In that case, click on the "register" link which appears next to the key in that list.