﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebInput - WebInput Dynamic Calendar Object Crashes</title><link>http://www.intersoftsolutions.com/Community/WebInput/WebInput-Dynamic-Calendar-Object-Crashes/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>WebInput Dynamic Calendar Object Crashes</title><link>http://www.intersoftsolutions.com/Community/WebInput/WebInput-Dynamic-Calendar-Object-Crashes/</link><pubDate>Thu, 19 Nov 2009 08:47:01 GMT</pubDate><dc:creator>PRISMAY</dc:creator><description>&lt;p&gt;Thank you.  I'll file this info for future reference.  I hope others will find it useful.&lt;/p&gt;</description></item><item><title>WebInput Dynamic Calendar Object Crashes</title><link>http://www.intersoftsolutions.com/Community/WebInput/WebInput-Dynamic-Calendar-Object-Crashes/</link><pubDate>Thu, 19 Nov 2009 00:48:08 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;Unfortunately, this property is not explained in detail in the documentation.&lt;/p&gt;&lt;p&gt;The AspNetAjaxSettings is used if user wish to implement Intersoft control in the ASP .NET AJAX environment, for example in an update panel.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;The &lt;em&gt;AspNetAjaxSettings.CreatedAtRuntime&lt;/em&gt; must be set to true if the control is created during ajax update (i.e. control is not available initially in the first page load)&lt;/p&gt;
&lt;p&gt;The &lt;em&gt;AspNetAjaxSettings.UpdateControlScripts&lt;/em&gt; is set to true if you would like to ensure the new scripts to be loaded during the ajax update. The &lt;em&gt;AspNetAjaxSettings.UpdateControlStyles&lt;/em&gt; is similar, however it is used for the styles / css. &lt;br /&gt;&lt;/p&gt;</description></item><item><title>WebInput Dynamic Calendar Object Crashes</title><link>http://www.intersoftsolutions.com/Community/WebInput/WebInput-Dynamic-Calendar-Object-Crashes/</link><pubDate>Wed, 18 Nov 2009 08:23:47 GMT</pubDate><dc:creator>PRISMAY</dc:creator><description>&lt;p&gt;Hi Glenn,&lt;/p&gt;
&lt;p&gt;I just tried these three settings on our dynamic control in our project and they work great.  I can't really find any details on this object and its properties in the documentation.  Could you point me to some details on this AspNetAjaxSettings object so I can understand its usage and it's properties please?  Thank you.&lt;/p&gt;
&lt;p&gt;[EDIT] I noticed there's an IsDynamicCreated property but all the documentation says regarding this is "(Inherited from ISNet.WebUI.ISNetControl&lt;/strong /&gt;)."  Do you know what this property does when it's set to true/false?  Thanks.&lt;/p&gt;</description></item><item><title>WebInput Dynamic Calendar Object Crashes</title><link>http://www.intersoftsolutions.com/Community/WebInput/WebInput-Dynamic-Calendar-Object-Crashes/</link><pubDate>Tue, 17 Nov 2009 20:58:46 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;In the test site you attached, in order to make it work you will need to enable the AspNetAjaxSetting in the WebInput. Here is the snippet:&lt;br /&gt;&lt;/p&gt;&lt;pre&gt;WebInput test = new WebInput();&lt;br /&gt;&lt;br /&gt;test.AspNetAjaxSettings.CreatedAtRuntime = true;&lt;br /&gt;test.AspNetAjaxSettings.UpdateControlScripts = true;&lt;br /&gt;test.AspNetAjaxSettings.UpdateControlStyles = true;&lt;/pre&gt;&lt;p&gt;I also have to modified the WebControl to remove the previous WebInput in the panel  before adding a new WebInput type to the panel.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Attached is the modified WebUserControl.ascx.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>WebInput Dynamic Calendar Object Crashes</title><link>http://www.intersoftsolutions.com/Community/WebInput/WebInput-Dynamic-Calendar-Object-Crashes/</link><pubDate>Tue, 17 Nov 2009 09:33:14 GMT</pubDate><dc:creator>PRISMAY</dc:creator><description>&lt;p&gt;I've attached a solution where I was able to duplicate it.  The problem seems to stem from a layering of panels and a web user control.  This more closely duplicates our environment of using master pages with your web pane manager, panels, update panels and our custom user controls.&lt;/p&gt;</description></item><item><title>WebInput Dynamic Calendar Object Crashes</title><link>http://www.intersoftsolutions.com/Community/WebInput/WebInput-Dynamic-Calendar-Object-Crashes/</link><pubDate>Mon, 16 Nov 2009 23:59:46 GMT</pubDate><dc:creator>Glayaar</dc:creator><description>&lt;p&gt;I have create a simple programmatic WebInput creation sample using dropdown box. The type of the created WebInput could be set using the dropdownbox. In the sample, I could not recreate the issue you mention.&lt;/p&gt;&lt;p&gt;Perhaps you could modify the sample to reflect your scenario better, so we could replicate the issue in our environment.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>WebInput Dynamic Calendar Object Crashes</title><link>http://www.intersoftsolutions.com/Community/WebInput/WebInput-Dynamic-Calendar-Object-Crashes/</link><pubDate>Mon, 16 Nov 2009 10:26:36 GMT</pubDate><dc:creator>PRISMAY</dc:creator><description>&lt;p&gt;We have a control that is dynamically created based on user choices.  This control may have several controls within it, i.e., text box, combo box, calendar, etc.&lt;/p&gt;
&lt;p&gt;When the control has a calendar in it, the page always crashes with the following line:&lt;/p&gt;&lt;pre&gt;val.evaluationfunction = MaskValidatorEvaluateIsValid;
&lt;/pre&gt;

&lt;p&gt;And then immediately followed by: &lt;/p&gt;&lt;pre&gt;ctl00_WebPaneManager1_ViewLeftSide_Content_rptOptions_CalendarControl_10_18_InitializeAtlas();&lt;/pre&gt;
&lt;p&gt;The calendar is then rendered but does not function.&lt;/p&gt;
&lt;p&gt;If, however, we physically insert a calendar control on the page, everything works fine.  For now, I'm having to insert an invisible calendar object (cal.Visible = false) on the page, but I shouldn't have to do that.&lt;/p&gt;
&lt;p&gt;I hope there's a solution to this.  Thank you.&lt;/p&gt;</description></item></channel></rss>