....
in my calendar tags and date inputs. I am using the pre ajax calendar and date inputs.
There are a number of posts about this already but no solutions I can find. All post end with Telerik saying it can not be reporduced on thier end.
Please let me know what the work around if any is for this.
Thanks,
Dean
I have some problems with RadGrid if I wanna use the paging function with AJAX. I got this error message:
The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).
The page i wanna use the grid has a master-page. The controls on this page are ScriptManager, RadAjaxManager, RadCodeBlock and RadScriptCodeBlock. I cannot find any code to add into code-block controls, because there's nothing in aspx file about JavaScript codes.
I only use the codes like <% Response.Write(kategoriHiyerarsi); %> , but it only writes text and not JS code. I do the same things on seperate page, which has not a master page, and get no error.
Thanks...
| <asp:ScriptManagerProxy ID="SM_Login" runat="server" /> |
| <telerik:RadAjaxManagerProxy ID="RAM_Login" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="btnRequestAccount"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="btnRequestAccount" /> |
| <telerik:AjaxUpdatedControl ControlID="AccountRequest" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManagerProxy> |
| <script type="text/javascript"> |
| function ShowRequestAccount() |
| { |
| window.radopen("Support.aspx","AccountRequest"); |
| return false; |
| } |
| </script> |
| <telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="Vista"> |
| <Windows> |
| <telerik:RadWindow Skin="Vista" ID="AccountRequest" runat="server" Title="Request Account" Height="400px" |
| Width="300px" Left="150px" ReloadOnShow="true" Modal="true" /> |
| </Windows> |
| </telerik:RadWindowManager> |
| btnRequestAccount.Attributes.Add("onclick","return ShowRequestAccount();"); |
<
asp:Button ID="btnUpdate" Text='<%# (Container as GridItem).OwnerTableView.IsItemInserted ? "Insert" : "Update" %>'
runat="server" CommandName='<%# (Container as GridItem).OwnerTableView.IsItemInserted ? "PerformInsert" : "Update" %>'>
</asp:Button>
The page has reference to
<%
@ Register Assembly="RadGrid.Net2" Namespace="Telerik.WebControls" TagPrefix="radG" %>
but I dont want to add any extra that I dont need too.
I have also found this, but it still wont work <%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>'
Can anyone offer any help please.
Andy
When I double click on the schedule the text in the schedule disappear
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
</telerik:RadStyleSheetManager>
<telerik:RadScheduler Height ="1200" Width ="1500" ID="RadScheduler1"
runat="server" Skin="Vista" DataKeyField="ID"
DataSubjectField="Description" DataMember ="RequestorID"
DataStartField="Start" DataEndField="End"
CustomAttributeNames="Description,RequestorID" EnableAdvancedForm="False"
OnClientAppointmentInserting="OnClientAppointmentInserting" OnClientAppointmentDoubleClick="dblclick"
FirstDayOfWeek="Monday" HoursPanelTimeFormat="h:mm" LastDayOfWeek="Friday"
MinutesPerRow="15" NumberOfHoveredRows="1"
onappointmentinsert="RadScheduler1_AppointmentInsert"
onnavigationcommand="RadScheduler1_NavigationCommand"
onnavigationcomplete="RadScheduler1_NavigationComplete"
ontimeslotcreated="RadScheduler1_TimeSlotCreated1"
TimeLabelRowSpan="1" ValidationGroup="RadScheduler1"
OverflowBehavior="Scroll" EnableRecurrenceSupport="False"
RowHeight="40px"
StartEditingInAdvancedForm="False" AllowDelete="False">
<AppointmentTemplate>
<asp:Label runat =server ID="Label1" Visible ="true" Text =<%# Eval("Description")%> ></asp:Label>
<asp:Label ID="requestorId" Text ="<%# Eval("RequestorID")%>" ></asp:Label>
</AppointmentTemplate>
<TimelineView NumberOfSlots="4" SlotDuration="15:00:00" />
</telerik:RadScheduler>