Telerik Forums
Community Forums Forum
1 answer
118 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
118 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
234 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
263 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.2K+ 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
125 views
How can I found all my threads in this forum?
Stef
Telerik team
 answered on 14 Aug 2013
0 answers
109 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
71 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
1 answer
151 views
    Hi,

       I have a radgrid with one hyperlink column.I want to get a cursor as hand on mouse over event.I got it.But it will be lost after paging.

Here is my code:

<

 

 

style type="text/css">

 


 

 

.CursorHand

 

{

 

 

cursor: hand;

 

}

</

 

 

style>

 



<

 

 

telerik:GridHyperLinkColumn UniqueName="HyperLinkColumn" DataNavigateUrlFormatString="Review"

 

 

 

ItemStyle-Font-Underline="true" ItemStyle-CssClass="CursorHand">

 

 

 

<ItemStyle Width="10%" />

 

 

 

<HeaderStyle Width="9%" />

 

 

 

</telerik:GridHyperLinkColumn>


I am also trying as below:

 

 

 

protected void Page_Load(object sender, EventArgs e)

 

{

RGgrid.Attributes.Add(

 

"onmouseover","this.style.cursor='hand'");

 

}

In both of the cases I got the same result:

Waiting for the reply

With regards:
Dayana

Eyup
Telerik team
 answered on 02 Aug 2013
1 answer
75 views
Hi All,

Looking for a programmer with experience to do a job for us. We have a control panel that has 6 docks. Each dock loads a usercontrol. The usercontrols include powershell commands to retrieve data. At the moment the usercontrols load synchronously which takes quite some time. We need to convert this so they load asynchronously. We've had a play with web services and haven't been able to make it happen, so are looking to pay someone to do this for us.

Please email me at willk@u-235studios.com if you are interested.

Thanks,
- Will
Kate
Telerik team
 answered on 31 Jul 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?