Telerik Forums
Community Forums Forum
2 answers
936 views

I've been receiving intermittent 500s and other errors when connecting to the Telerik NuGet feed (via an azure service connection) recently and it's been worse today (thus constantly breaking CICD pipelines).

Is the https://www.telerik.com/blogs/azure-devops-and-telerik-nuget-packages still current? specifically the part about "Using a Service connection is our recommend approach."?

Thanks,

Phil

Aleksandar
Telerik team
 answered on 23 Sep 2022
1 answer
118 views

Hi ,

 I will need help on the following Telerik issue . I am currently using Telerik version 2012.3.1016.35 and some of my user will tend to remove the statement with hyperlink to some file. When it is being submitted and I view the html script, the link is still showing although it is not shown on the script. Is there any solution to remove the ahref totally from the html script since is not supposed to be there ?  This is because we have some jobs that will scan through the HTML script and export out those files that are listed in the hyperlink. 

Thank you.

James
Top achievements
Rank 1
 answered on 21 Sep 2022
2 answers
299 views

We have a legacy component that uses OpenAccess and I cannot run or compile the project.  We need to make a small change to the component.
I am not sure what forum to post my question, since this project references an older Telerik product.
I found several web articles referencing a similar error.
Some suggested that OpenAccess_ORM was not installed, but when I run the .msi to install this product, I receive a message that newer version is already installed.
Another suggested that file C:\Program Files (x86)\MSBuild\OpenAccess.targets was not present.  This was the case for me, but adding this file to that location did not solve my issue.

What else can I check?

James
Top achievements
Rank 1
 answered on 21 Sep 2022
1 answer
128 views

I am using a "RadTreeView" control where I have declared an event which handles the formatting of the node and also have NodeExpandedChanged event.

The main purpose of the NodeFormatting event is to control the Expander image

private void tvwDocuments_NodeFormatting(object eventSender, TreeNodeFormattingEventArgs eventArgs) { RadTreeNode Node = eventArgs.Node; //Check if Node is the root node, else check if it has no children, and set expand/collapse state accordingly if (Node.Parent == null) { eventArgs.NodeElement.ExpanderElement.Visibility = Telerik.WinControls.ElementVisibility.Collapsed; //Collapsed hides the element completely, hidden just makes it not visible but maintains spacing for it } else if (Node.Nodes.Count == 0) { //Disable drawing of the sign image, then set its size to 0 so that the lines are drawn underneath. eventArgs.NodeElement.ExpanderElement.SignImage = null; eventArgs.NodeElement.ExpanderElement.SignSize = new Size(0, 0); }

 

In my application I have a tree that looks something like the attached image (Tree Structure.png). From the image it will be evident that all nodes are expanded.

The issue what I am facing is, when all nodes are expanded and when the very first node of the parent is collapsed; all the respective nodes "ExpanderImage" is blank. (please refer attached screenshot (UpdatedTreeStructure.png))

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 16 Sep 2022
1 answer
103 views

Hello I am trying to make the column that gets data from a database have a linkable modal. For privacy reasons full copy of the code isn't available. However I have cropped up this segment in particular since this is the issue I am trying to fix. I can already bind data from the datasource to a column and data displays correctly when I remove the parts to make it "linkable". hence this is why you might notice some of the parts are in comments. Simply put I need to make the column display the data from the database then make it linkable pointing to a view and a controller. Hopefully someone will be able to answer the soonest. Thanks in advance!

                                .Name("MarkOutGrid")
                                .Columns(columns =>
                                {
                                columns.Bound(p => p.MarkOutId)
                                .ClientTemplate("<input name=\"checkedRecords\" type=\"checkbox\" primaryId=\"#=MarkOutId#\" value=\"MarkOutId\" title=\"checkedRecords\" />")
                                .Width(30).Groupable(false).Sortable(false).Filterable(false)
                                .Title(" ");
                                //columns.Bound(p => p.UnitsSoldPerDay).ClientTemplate("<a href='" +
                                //    Server.UrlDecode(Url.Action("AddNewMarkOut", "MarkOut")) + "'>TEST</a >")
                                //    .Width(500).Groupable(false);
                                columns.Bound(p => p.UnitsSoldPerDay).Title("Units Sold Per Day")
                                    .ClientTemplate("<a href='AddNewMarkOut','MarkOut'></a>")
                                    .Width(500).Groupable(false);
                                columns.Bound(p => p.MarkOutGoal).Title("Mark Out Goal (%)").Width(500).Groupable(false);

                                    @*(p => p.ProductID).Template(@< text >
                                    @Html.ActionLink("Show Product Details", "ProductDetails", new { id = @item.ProductID }) >
                                     </ text >); *@
                                    //kendo telerik sample url action code
                                    //columns.Bound(p => p.ProductID).ClientTemplate(
                                    //    "<a href='" +
                                    //        Url.Action("ProductDetails", "Product") +
                                    //        "/#= ProductID #'" +
                                    //    ">Show Product Details</a>"
                                    //);
                                })

0 answers
119 views
My company uses proofpoint, which doesn't allow me to use the link from email to sign up for the webinars, but I'm able to sign up from the Telerik website. The problem is that after I signed up, I haven't received a reply email (I'm assuming this is automated). Has anyone else experienced this?
Gone2TheDogs
Top achievements
Rank 2
Iron
Veteran
 asked on 01 Sep 2022
1 answer
90 views

Hi,

I'm developing an application with the Telerik WPF controls and I'm reading a lot of your documentation pages (half a day). 
Every few seconds this ninja animation 'Is this article helpful' question is flying in on the right side.

Maybe it is fun and it is cool for you to develop this animiation with this ninjy, but it is not following any UX pattern.
It is making me crazy!

Please remove it!
I'm not able to work with your documentation as long as you bother me with that.
And I think nobody is using this kind of feedback tool.

So remove it.

Best regards and thanks

Dirk

Kaloyan
Telerik team
 answered on 31 Aug 2022
1 answer
410 views

I was perusing your purchase page https://www.telerik.com/purchase.aspx?filter=web and noticed some very interesting English.  Down at the Source Code row in the package comparisons, I read this:

   "Components source codes included for all products without Telerik UI for .NET MAUI, Telerik UI for Xamarin and Telerik JustMock"

So, source code is included for all products except Telerik UI for .NET MAUI, Telerik UI for Xamarin and Telerik JustMock?

Thanks,

_D

Vessy
Telerik team
 answered on 05 Aug 2022
1 answer
147 views

Hello There,

I have a similar DropDownTree in my project.

I do not want to use clearButton, I would like to create a button with onClick clear out selected values and also the checkBox selection.

What I have tried: the used selectedIds= [] but on UI the tags stucked there, can not removed at all.

Thanks for your help!

Cheers,
Peter

Lyuboslav
Telerik team
 answered on 25 Jul 2022
1 answer
110 views

Just a quick bit of feedback, I find the pop-out Ninja at the bottom right of the pages at https://docs.telerik.com/ that ask if the content was useful quite distracting.

If I'm trying to read a complicated help topic it's distracting to have the Ninja constantly popping out like that.

Could you set a cookie that remembers if the user has chosen to hide the Ninja, to never pop it out again?

Thanks

Kaloyan
Telerik team
 answered on 22 Jul 2022
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?