There is a MS Slider Extender used in my AdvancedInsertTemplate of the Scheduler. The finding indicates that the error messages ,the object reference is not an object execution instance, is always shown if enabling the Ajax feature of the Scheduler in RadAjaxManager. However, it is disappearred if removing the Ajax configuration.
Could someone point me in the direction of how to solve this?
| <AdvancedInsertTemplate> |
| <div style="position: relative; background: #E6E6E6; height: 100%; border: 1px solid #666666;"> |
| <div style="margin-left: 10px; margin-top: 5px;"> |
| Description:<br /> |
| <asp:TextBox ID="Field_Subject" Rows="5" Columns="20" runat="server" Text='<%# Bind("Subject") %>' Width="95%" TextMode="MultiLine"></asp:TextBox><br /> |
| <span style="width: 50px;">Start time:</span> |
| <radCln:RadDatePicker ID="Field_StartDate" runat="server" SelectedDate='<%# Bind("Start") %>'></radCln:RadDatePicker> |
| <radCln:RadTimePicker ID="Field_StartTime" runat="server" SelectedDate='<%# Bind("Start") %>'></radCln:RadTimePicker><br/> |
| <span style="width: 50px;">End time:</span> |
| <radCln:RadDatePicker ID="Field_EndDate" runat="server" SelectedDate='<%# Bind("End") %>'></radCln:RadDatePicker> |
| <radCln:RadTimePicker ID="Field_EndTime" runat="server" SelectedDate='<%# Bind("End") %>'></radCln:RadTimePicker><br/> |
| <span style="width: 100px;">Completed Ratio:</span> |
| <asp:TextBox ID="Field_CompletedRatio" runat="server"></asp:TextBox> |
| <asp:TextBox ID="Field_CompletedRatio_Value" runat="server" ReadOnly="true" Text="1" Width="25"></asp:TextBox> <ajaxToolkit:SliderExtender ID="SliderExtender1" runat="server" Minimum="1" BoundControlID="Field_CompletedRatio_Value" TargetControlID="Field_CompletedRatio"></ajaxToolkit:SliderExtender><br/> |
| <span style="width: 100px;">Content Type ID:</span> |
| <asp:DropDownList ID="Field_ContentTypeID" runat="server" Width="204px"></asp:DropDownList><br/> |
| <span style="width: 100px;">Result Type ID:</span> |
| <asp:DropDownList ID="Field_ResultTypeID" runat="server" Width="204px"></asp:DropDownList><br/> |
| <span style="width: 100px;">Process Instance ID:</span> |
| <asp:DropDownList ID="Field_ProcessInstanceID" runat="server" Width="204px"></asp:DropDownList><br/> |
| <span style="width: 100px;">Workitem ID:</span> |
| <asp:DropDownList ID="Field_WorkitemID" runat="server" Width="204px"></asp:DropDownList> |
| <div class="blueBox" style="margin-bottom: 5px; position: absolute; bottom: 0px"> |
| <asp:LinkButton ID="InsertButton" runat="server" CommandName="Insert"> |
| <asp:Image runat="server" ID="insertImage" ImageUrl="Images/Edit.gif" AlternateText="insert" /></asp:LinkButton> |
| <asp:LinkButton ID="InsertCancelButton" runat="server" CausesValidation="False" CommandName="Cancel"><asp:Image runat="server" ID="Image2" ImageUrl="Images/cancel.gif" AlternateText="cancel" /></asp:LinkButton> |
| </div> |
| </div> |
| </div> |
| </AdvancedInsertTemplate> |