Hi, I am testing a bug on your online Demo of the Editor - Track Changes and if :
1) I bold a non tracked word
2) I Append an "s" to the previous non tracked word
3) delete the space between the previous word and the bolded word
the tracking will delete the first letter of the bolded word? We have clients that have complained about it.
They had a non tracked phrase "total income (1)" and they added an "s" to income and then deleted the space but the "(" ended up being strikedthrough.
Symon
Hi,
I am working on Telerik Radeditor with Markdown mode. But when I underline the text then it does not work.
Is there any way to support the underlining in markdown mode? Below is the example which I am referring for the implementation of Markdown mode.
http://demos.telerik.com/aspnet-ajax/editor/examples/import-export/markdown-import-export/defaultcs.aspx
Please help me ASAP.
Thanks in advance.
Hi, if I open a RadDropDownTree and then I press enter to automatically select all the items.
<telerik:RadDropDownTree RenderMode="Lightweight" ID="RadDropDownTree3" runat="server" Width="100%" CheckBoxes="TriState"
DefaultMessage="Seleziona la zona" OnNodeDataBound="RadDropDownTree1_NodeDataBound" Skin="Bootstrap" >
<DropDownSettings />
</telerik:RadDropDownTree>
You can avoid this behavior ?
I want to access UserControl element ex: textbox, checkbox, combobox...etc on ItemCommand event. I found some topic say can't do it. But, I hope someone can solve this. Thank all!
P/s: I have 4 button with custom command in usercontrol edit form. ItemCommand can do command, but can't access UserControl to retrieve value from control in it.
Hi,
I see this happening.
Markup is shown properly in the HTML view of the RadEditor, but is stripped when rendered on the page.
Here is my HTML as shown in the RadEditor:
<
p
><
img
alt
=
"the other"
src
=
"/PublishingImages/Signing-4730x.jpg"
/></
p
>
<
p
><
img
alt
=
"the other"
src
=
"/PublishingImages/Signing-4730x.jpg"
></
p
>
Also see this old post from 2009
Is this issue still applicable on the latest version of the RADEditor?
Ps. I know the <img> tag is a self closing tag, so the latter html is still valid. see here
Thanks!
Regards,
John
Hi,
I used a sample demo for the scheduler that was posted in the forums that works with sql datasource. Everything works great but for some reason the Advanced Edit form will not register a click to Save or Cancel once the modal popup is open. The .aspx is bellow and i am not sure if im missing something.
Thanks
body>
<form id="form1" runat="server">
<div>
<telerik:RadScriptManager ID="RadScriptManager1" Runat="server">
</telerik:RadScriptManager>
</div>
<telerik:RadScheduler ID="RadScheduler1" runat="server" DataEndField="End"
DataKeyField="ID" DataRecurrenceField="RecurrenceRule" AdvancedForm-Modal="true" AdvancedForm-Enabled="true"
DataRecurrenceParentKeyField="RecurrenceParentID" DataSourceID="SchedulerDataSource"
DataDescriptionField="Description"
Height="700px"
DataStartField="Start" DataSubjectField="Subject" Skin="Silk">
<AdvancedForm Modal="true" />
<TimelineView UserSelectable="false" />
<ResourceTypes>
<telerik:ResourceType DataSourceID="RoomsDataSource" ForeignKeyField="RoomID"
KeyField="ID" Name="Room" TextField="RoomName" />
</ResourceTypes>
<ResourceStyles>
<telerik:ResourceStyleMapping Type="Room" ApplyCssClass="rsCategoryOrange" Text="Room 101" />
<telerik:ResourceStyleMapping Type="Room" ApplyCssClass="rsCategoryGreen" Text="Room 102" />
<telerik:ResourceStyleMapping Type="Room" ApplyCssClass="rsCategoryPink" Text="Room 201" />
<telerik:ResourceStyleMapping Type="Room" ApplyCssClass="rsCategoryViolet" Text="Room 202" />
</ResourceStyles>
</telerik:RadScheduler>
<asp:SqlDataSource ID="SchedulerDataSource" runat="server"
ConnectionString="<%$ ConnectionStrings:SchedulerConnectionString %>"
DeleteCommand="DELETE FROM [Appointments] WHERE [ID] = @ID"
InsertCommand="INSERT INTO [Appointments] ([Subject], [Start], [End], [RecurrenceRule], [RecurrenceParentID], [Description], [RoomID]) VALUES (@Subject, @Start, @End, @RecurrenceRule, @RecurrenceParentID, @Description, @RoomID)"
SelectCommand="SELECT [ID], [Subject], [Start], [End], [RecurrenceRule], [RecurrenceParentID], [Description], [RoomID] FROM [Appointments]"
UpdateCommand="UPDATE [Appointments] SET [Subject] = @Subject, [Start] = @Start, [End] = @End, [RecurrenceRule] = @RecurrenceRule, [RecurrenceParentID] = @RecurrenceParentID, [Description] = @Description, [RoomID] = @RoomID WHERE [ID] = @ID">
<DeleteParameters>
<asp:Parameter Name="ID" Type="Int32" />
</DeleteParameters>
<UpdateParameters>
<asp:Parameter Name="Subject" Type="String" />
<asp:Parameter Name="Start" Type="DateTime" />
<asp:Parameter Name="End" Type="DateTime" />
<asp:Parameter Name="RecurrenceRule" Type="String" />
<asp:Parameter Name="RecurrenceParentID" Type="Int32" />
<asp:Parameter Name="Description" Type="String" />
<asp:Parameter Name="RoomID" Type="Int32" />
<asp:Parameter Name="ID" Type="Int32" />
</UpdateParameters>
<InsertParameters>
<asp:Parameter Name="Subject" Type="String" />
<asp:Parameter Name="Start" Type="DateTime" />
<asp:Parameter Name="End" Type="DateTime" />
<asp:Parameter Name="RecurrenceRule" Type="String" />
<asp:Parameter Name="RecurrenceParentID" Type="Int32" />
<asp:Parameter Name="Description" Type="String" />
<asp:Parameter Name="RoomID" Type="Int32" />
</InsertParameters>
</asp:SqlDataSource>
<telerik:RadAjaxManager runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadScheduler1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadScheduler1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<asp:SqlDataSource ID="RoomsDataSource" runat="server"
ConnectionString="<%$ ConnectionStrings:SchedulerConnectionString %>"
SelectCommand="SELECT [ID], [RoomName] FROM [Rooms]"></asp:SqlDataSource>
</form>
</body>
I've got a RadGantt that is both an AjaxControl and an AjaxUpdatedControl in a RadAjaxManager.
The control and the Ajax Updates work fine for everything except for deleting a task.
Sometimes a delete works fine, but about 90% of the time I get a javascript error when the page is attempting to update.
'Unable to get property 'oldUpdatePanelIDs' of undefined or null reference'
is coming from function _getPageLoadingEventArgs.
I don't understand why this doesn't happen all the time (or at all really), or why only on deletes. What would be different about the call or returned values based on the function? Anyone else seeing this behavior.