In my modules i use a lot the invokepopup from the dotnetnuke toolkit.
But when AJAX is enabled, a javascript error torments my screen and no popup with the date selector is shown.
("view source" also does not seem to work with ajax, because i cant find my controls)
This is part of my code
dim sDate as textbox = txtDateField 'text box on the screen
sDate.Attributes.Add("onclick", DotNetNuke.Common.Utilities.Calendar.InvokePopupCal(sDate))
I already tried DotNetNuke.Framework.AJAX.RegisterPostBackControl(txtDate_damage) , but it did not solve the issue.
Anyone knows a workaround?