Telerik Forums
Community Forums Forum
2 answers
152 views
Hi all, 
at the moment, the login or ticketing process of your website is slow. Very slow. 
We are not very happy about this.
Greetings from Germany Michael
Dimo Mitev
Telerik team
 answered on 24 Sep 2013
1 answer
178 views
Hello,

What is the issue with not having many previous versions of software available to developers? (In particular much older builds).

I have a very specific need for Telerik controls that work with mono/moonlight on Linux, and although I had read you no longer support this on your latest version I was still under the impression that older versions of Telerik controls could be downloaded for developers under subscription. So I recently paid $1.5k for the DevCraft complete subscription, only to find out that I still cannot use Telerik controls for my project.

I appreciate that you no longer support these versions, and that compatibility could be far less than 100%. However, I am trying to put something together for Linux that even with this limitation would exceed the alternative approaches, yet I cannot do this even after paying for a Telerik subscription.

Regards,

Frustrated customer.
Yuliyana
Telerik team
 answered on 18 Sep 2013
1 answer
99 views
When answering forum questions from developers, please post the code in the forum post instead of referring to a zip file. The zip files are not searchable, so the search function of the forum can't be used effectively. For example, if I search for "RadTileViewItem", the search will only turn up posts that have that directly included in the title or post body. Unfortunately, most developers only write "tile view item" or another common name in their posts. The search then returns very few results but there could be in fact many results. If the code/solution was posted directly instead of a zip file, the above mentioned search would turn up EVERY post that used that control.

Please consider this when posting answers to developers.
Antoaneta
Telerik team
 answered on 06 Sep 2013
2 answers
94 views
When viewing online videos, I have no sound. So I thought perhaps I needed to download Telerik Trainer. I followed the link listed in the sticky of this forum to http://www.telerik.com/services/training-and-mentoring.aspx

I do not see a download for Telerik Trainer there.

Where is it located or how do I get sound in the online videos?

Thank you.
Debbie
Top achievements
Rank 1
 answered on 04 Sep 2013
8 answers
198 views

Hi
    RadEditor

 

with ImageManager or DocumentManager can save image files or documents within the application only .Is there any
    method for saving the above files outside the appliation?

Vessy
Telerik team
 answered on 29 Aug 2013
4 answers
236 views
http://video.google.com/videoplay?docid=36099539665548298

After this video leaked onto the internet it was revealed to have been internally produced by Microsoft themselves as a "how not to" training tool.

edit: fixed the link
Rick
Top achievements
Rank 1
 answered on 22 Aug 2013
9 answers
2.1K+ views
I've just installed RadControls_Q4_2006_SP2_dev.exe on WinXP SP2 with VS 2003, VS 2005, .Net framework 2.0, IIS 5.X.  Before installing the licensed version of rad controls, I uninstalled the trial version of rad controls.  Then whenever I tried to access any ASP.NET AJAX example from http://localhost/telerik/r.a.d.controlsq4_2006_net2/Controls/Examples/Default/DefaultCS.aspx such as Treeview Builder, I'd get the page "Server Error in "'/telerik/r.a.d.controlsQ4_2006_NET2' Application" and parser error message: "Unknown server tag 'asp:ScriptManager'" error.

After looking around the net, I thought I needed to install the ASP.NET 2.0 AJAX Extensions.  So I did, but that didn't help.

I'd also set the telerik folder permissions for ASP.NET user, and cleared the VSWebCache.

Does anyone know what is the problem and how to go about fixing it?  Thanks.

Jack
Suresh
Top achievements
Rank 1
 answered on 21 Aug 2013
1 answer
101 views
How can I found all my threads in this forum?
Stef
Telerik team
 answered on 14 Aug 2013
0 answers
91 views

Hi!

If I enter a value in the Perday Price or Total Price fields with a decimal .00, it removes the .00, but if we go back (before clicking save) and add the 1.00 back, it takes it.

I was thinking that if we can set “validateOnBlur” to false then it might prevent the auto-correction from happening as well.  The problem is that I can’t figure out how to do this.

 http://docs.kendoui.com/api/framework/validator#configuration-validateOnBlur

<fieldset>
      <legend>Topline Price Information</legend>
@(Html.Kendo().Grid<Presentation.Web.Models.TopLinePrice>()
           .Name("Grid")
           .Columns(columns =>
                      {
                        columns.Bound(m => m.ProjectNumber)
                          .Title(ScanDataResources.ProjectNumber)
                          .Width(120);
                        columns.Bound(m => m.ClientName)
                          .Title(ScanDataResources.ClientIdName);
                        columns.Bound(m => m.PerDayPrice)
                          .Title(ScanDataResources.PerDayPriceName)
                          .Format("{0:c2}")
                          .Width(100);
                        columns.Bound(m => m.TotalPrice)
                          .Title(ScanDataResources.TotalPriceName)
                          .Format("{0:c2}")
                          .Width(100);
                        columns.Bound(m => m.IsPriceOverridableDescription)
                          .Title(ScanDataResources.Overriden)
                          .Visible((int)@ViewBag.SystemId == (int)CoreConstants.PWSystem.RAMS)
                          .Width(75);
                        columns.Bound(m => m.LastSentDate)
                          .Title(ScanDataResources.ModifiedDate)
                          .Width(180);
                        columns.Bound(m => m.ModifiedByPersonName)
                          .Title(ScanDataResources.ModifiedByName)
                          .Width(120);
                        columns.Command(commands => commands.Edit()
                          .Text(@Buttons.Edit).HtmlAttributes(new { @Style = "text-align:center; " })
                          .CancelText(@Buttons.Cancel)
                          .UpdateText(@Buttons.Save)
                          ).Title("")
                          .Width(160);
                      })
           .Events(e => e.Save("OnSave"))
           .Events(e => e.Edit("OnEdit"))
           .Editable(editable => editable.Mode(GridEditMode.InLine)) // Use inline editing mode
           .DataSource(dataSource =>
           dataSource.Ajax()
            .Model(model =>
            {
              model.Id(p => p.ProjectPriceId); // Specify the property which is the unique identifier of the model
              model.Field(p => p.ProjectNumber).Editable(false); // Make the ProjectNumber property not editable
              model.Field(p => p.LastSentDate).Editable(false);
            })
            .Read(read => read
              .Action("GetScanDataTopLinePrice", "ScanDataTopLinePrice")
            .Data("ScanData.GetSearchModel"))  // Action invoked when the grid needs data
            .Update(update => update
              .Action("UpdatePrice", "ScanDataTopLinePrice"))  // Action invoked when the user saves an updated data item
            .Events(events => events.RequestEnd("OnRequestEnd_TopLinePriceGrid"))
            .PageSize(10)

          )
        
        )
 </fieldset>
 <script type="text/javascript">
 function OnEdit(e) {
     $('#PerDayPrice').change(function () {
       var perDayPrice = $(this).val();
       var isDecimalFound = perDayPrice % 1 != 0;
       if (!isDecimalFound) {
         $(this).val(perDayPrice + '.00');
       }
     });
     $('#TotalPrice').change(function () {
       var totalPrice = $(this).val();
       var isDecimalFound = totalPrice % 1 != 0;
       if (!isDecimalFound) {
         $(this).val(totalPrice + '.00');
       }
     });
     // Clear validation errors.
     e.container.find('.k-grid-cancel').bind('click', function() {
       Validation.ClearValidationErrors('MainValidationSummary');
     });

   }
</script>

Thanks

Sushma
Top achievements
Rank 1
 asked on 07 Aug 2013
2 answers
55 views
Can that be removed?  Is anyone using it?  It doesn't seem to matter how many times you say No Thanks the bar just keeps showing up again and again covering the ability to move between product families or even log in.

Instead of covering the entire bar at the top could you just put a blinking link next to ABOUT US that people can click?

Personally I use Bookmarks.  But when I use my bookmark to go to (http://www.telerik.com/developer-productivity-tools.aspx) then before I can log in that bar drops down and covers the log in link saying "Start directly from DevTools next time you visit www.telerik.com?".

Thanks for considering this.
Georgi
Telerik team
 answered on 06 Aug 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?