Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
155
multiple webdatechooser controls bloat the html
posted

I have a web page with ten webdatechooser controls that are instantiated in code. The resulting html page is horribly bloated and takes way too long to load. Is there a way to have webdatechooser controls share resources (as if you were attaching a hidden webdatechooser into a ultrawebgrid cell)?

 The code I'm using to instantiate the webdatechoosers looks like this and, as I said, there's about 10 of them on the page
Using oWDC As New Infragistics.WebUI.WebSchedule.WebDateChooser
    oWDC.ID =
"wdcMasterStart_" & lCount
    oWDC.CssClass =
"value"
    oWDC.Value = oEnrollment.dtMasterAgreementStart
    oCell.Controls.Add(oWDC)
End Using