Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
146 views

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

Nikolay
Telerik team
 answered on 02 Aug 2016
0 answers
131 views

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.

Avinash
Top achievements
Rank 1
 asked on 02 Aug 2016
1 answer
318 views
Is there a way to via server-side or client side to freeze the top row of headers?
Ivan Danchev
Telerik team
 answered on 02 Aug 2016
1 answer
103 views

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 ?

Veselin Tsvetanov
Telerik team
 answered on 02 Aug 2016
1 answer
139 views

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.

Eyup
Telerik team
 answered on 02 Aug 2016
1 answer
466 views
I've got a RadGrid with programmatically generated columns, including a variable number of column groups.
 Each of the column groups contains two/three columns, and I want to hide the columns along with the associated ColumnGroup.
Above the RadGrid I have a series of checkboxes, one for each column group. The goal is to have the user
 check or uncheck the boxes depending on what columns they wish to see. Currently I am setting the columns
' Display properties when a checkbox's checked value is changed by using 
radgrid.Columns.FindByUniqueName("columnName").Display.

And also tried radgrid.MasterTableView.ColumnGroups.FindGroupByName("colGroupname").Display = False but there is no 
Display property for that and the Visible property is ReadOnly. So I managed to hide ColumnGroup by applying
CSS class to hide the Column group.

But the export to excel is not reflecting the hidden group and also it reshuffles the columns into excel file.
So please suggest the option to hide the Column group into export file or any alternate option to achieve the same.
Eyup
Telerik team
 answered on 02 Aug 2016
1 answer
140 views

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

Note the end tags on IMG when the page is rendered I get this:
<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

Ianko
Telerik team
 answered on 02 Aug 2016
2 answers
115 views

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>

zx10r
Top achievements
Rank 1
 answered on 01 Aug 2016
23 answers
978 views
Hello,

while trying to output the details using RadSchedular control to export to PDF"  getting follwing error.

The remote server returned an error: (401) Unauthorized.]
   System.Net.HttpWebRequest.GetResponse() +5376077
   Telerik.Web.UI.Scheduler.SchedulerExporter.GetStyleSheet(String url) +76
   Telerik.Web.UI.Scheduler.SchedulerExporter.RenderControl(Page page) +254
   Telerik.Web.UI.Scheduler.SchedulerExporter.PdfExportRenderForm(HtmlTextWriter nullWriter, Control form) +55
   System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +256
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +19
   System.Web.UI.HtmlControls.HtmlForm.RenderChildren(HtmlTextWriter writer) +8679961
   System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer) +32
   System.Web.UI.HtmlControls.HtmlForm.Render(HtmlTextWriter output) +51
   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +99
   System.Web.UI.HtmlControls.HtmlForm.RenderControl(HtmlTextWriter writer) +40
   Telerik.Web.UI.Scheduler.SchedulerExporter.PdfExportRenderPage(HtmlTextWriter nullWriter, Control page) +108
   System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +256
   System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +19
   System.Web.UI.Page.Render(HtmlTextWriter writer) +29
   System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +27
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +99
   System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +25
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1266

currently we are using the NTLM security on web application then error is occuring.
when we changed the security level to anonymous able to open the PDF document.

Request to assistance on the above issue to workout with NTLM secutity.

Thanks
Rajendra.k
PW
Top achievements
Rank 1
 answered on 01 Aug 2016
3 answers
148 views

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.

 

chris
Top achievements
Rank 1
 answered on 01 Aug 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?