Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
219 views
We have some users who are getting the following exception when uploading:

Error in: https://myserver/cloud/Telerik.Web.UI.WebResource.axd?type=rau

Error message: Request timed out.

I checked with one who got it several times and it sounds like she is running Silverlight. Is there a setting I need to tweak to keep it from timing out?

Dobromir
Telerik team
 answered on 01 Sep 2011
14 answers
254 views
Hey Telerik,

I ran in an interesting issue today. I deployed a web application that uses FileExplorer.... some browsers can't press the "Select" button in the Upload window. The cursor changes to a "hand" like you can click on it... but no amount of clicking around will execute it.

It's strange...  I've seen it happen in both IE and Firefox.

I know there is a control buried underneath it.... I've search the forums but didn't see anything.

Telerik.web.ui.dll: 2011.1.322.40
Firefox: 3.6.16
Flash: 10,1,102,64

Any clue on what's going ok ?

Screenshot: http://i.imgur.com/NLEZq.png

-Josh
Dobromir
Telerik team
 answered on 01 Sep 2011
1 answer
199 views
Hi,

I just installed Raditor 5.8.10 on my SP2010 farm.  I see the following exception on my WFE server.  Any idea?
=========================================================================

08/31/2011 20:57:31.70  w3wp.exe (0x0390)                        0x12D0 SharePoint Foundation          Runtime                        tkau Unexpected System.Exception: Invalid Configuration File: /_wpresources/RadEditorSharePoint/5.8.10.0__1f131a624888eeed/Resources/ConfigFile.xml. Error message: Could not find a part of the path 'c:\_wpresources\RadEditorSharePoint\5.8.10.0__1f131a624888eeed\Resources\ConfigFile.xml'.    at Telerik.SharePoint.MOSSRadEditor.GetValidConfigFile()     at Telerik.SharePoint.MOSSRadEditor.ProcessConfigFile()     at Telerik.SharePoint.MOSSRadEditor.OnLoad(EventArgs e)     at Telerik.SharePoint.RadHtmlField.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.... 6e471adf-4e18-42e2-bd63-948f1e33bf6d
08/31/2011 20:57:31.70* w3wp.exe (0x0390)                        0x12D0 SharePoint Foundation          Runtime                        tkau Unexpected ...UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 6e471adf-4e18-42e2-bd63-948f1e33bf6d
Ultra
Top achievements
Rank 1
 answered on 01 Sep 2011
7 answers
307 views
Hi all,

I have tried in vain to  find code to enable  a radmultipage on the clientside.

basically i have an "Edit" button, whose functionality is to  change a tabstrip from readonly  to not readonly..

I  would be grateful if anyone out there  has got an example of this

Thanks

Mark
Dimitar Terziev
Telerik team
 answered on 01 Sep 2011
2 answers
106 views

I am tryin to use RadScheduler to display a month-vew with 5-6 events a month in the calendar. Each event has a Subject, start time, end time and description that needs to be displayed. None of the events will be on the same day. How can I get these events to fill up the entire cell (day) in the scheduler so that all of the info is visible (about 85 pixels high)? Adjusting the row height allows for this display but it also makes each cell longer and I can not fit the entire calendar in a single screen without scrolling. My code is as follows:

<telerik:RadScheduler ID="RadScheduler1" runat="server" DataDescriptionField="description"
           DataEndField="end_time" DataKeyField="pk_training_session_id" DataSourceID="SqlDataSource1"
           DataStartField="start_time" DataSubjectField="session_type" EnableDescriptionField="True"
           FirstDayOfWeek="Monday" Height="550px" LastDayOfWeek="Friday" SelectedView="MonthView"
           CustomAttributeNames="registration_link">
           <AppointmentTemplate>
               <div style="margin-bottom: 4px;">
                   <b>
                       <asp:HyperLink ID="RegistrationLinkHyperLink" runat="server" Text='<%# Eval("Subject") %>'
                           NavigateUrl='<%# Eval("registration_link") %>' ToolTip="Click to Register"></asp:HyperLink>
                   </b>
               </div>
               <div>
                   <span style="width: 60px; display: inline-block;">Start Time:</span>  <%# Eval("Start", "{0:t}") %></div>
               <div style="margin-bottom: 4px;">
                   <span style="width: 60px; display: inline-block;">End Time:</span>  <%# Eval("End", "{0:t}") %></div>
               <p>
                   <%# Eval("Description") %>
               </p>
           </AppointmentTemplate>
       </telerik:RadScheduler>


Does anyone know of a solution?

Phil
Top achievements
Rank 1
 answered on 01 Sep 2011
5 answers
120 views
Hi,
I am creating several RadGrids programmatically at runtime and am using custom templates for the CommandItemTemplate and for the MasterTableView.EditFormSettings.FormTemplate.  The CommandItemTemplate has a button with command name "InitInsert" and this functions properly and displays my custom FormTemplate.  The FormTemplate has a button with command name "PerformInsert", but the RadGrid ItemCommand function is never fired.

If I call RadGrid.DataBind() immediately upon creation of the RadGrid, the ItemCommand function will fire, but when the "InitInsert" command is fired, the grid which is not the one being edited loses its data and displays blank rows instead.

How can I get the RadGrid to fire its ItemCommand event and maintain the other Grids' data? 
Thank you for your help!
-Brandon
Brandon
Top achievements
Rank 1
 answered on 01 Sep 2011
4 answers
330 views
I have seen several posts about this error, and the general solution seems to be to make sure the Telerik Web Resource file is referenced in the <system.webServer><handlers> portion of the web config file. I have that reference in my web.config file, but I still get the error when a page containing a RadTreeView is loaded. The control won't load properly. Here is the entry from my web.config file:
<system.webServer>
    <handlers>
<add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode,runtimeVersionv2.0"/>
        </handlers>
    </system.webServer>

I reference the RadScriptManager in a MasterPage.

This works perfectly when I deploy the site to IIS6.0 but, not when I deploy it to IIS7.

Any recommendations as to how to fix this problem?
Thanks.
Kiara
Top achievements
Rank 1
 answered on 01 Sep 2011
9 answers
214 views
I have a need to have groupings in a combobox.   IE Users:  3 groups -  Admins, SuperUsers and Users with section headers and checkboxes for each user like this demo:  http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/templates/defaultcs.aspx

I would also like to have a checkbox at each section header to act as a check or uncheck all for that section.

Is this possible?
Ivana
Telerik team
 answered on 01 Sep 2011
7 answers
174 views
Hello,
I am using a RadEditor to allow the user to create a page, with some placeholders present for later substitution for real data.  For example, the user could be allowed to insert via a custom tool, a place holder for their project name, like so:

Project Name: [[ProjectName]]

In this example, the "[[ProjectName]]" is a placeholder for the project name data field that will be filled in with real data at a later time.  When the user inserts a placeholder, I am pasting html for a <table> tag into the editor content area, with the "[[ProjectName]]" text in the single cell of this table.  I would like the text content uneditable, so that the user cannot change or delete this text.  However, I would like to allow the user to change the font, size, and font style of the text.  This would allow the processor that completes the page to know what font, size, and style with which to fill in the real project name.

I have tried various combinations of the "contenteditable" and "unselectable" style attributes to no avail.  It seems that whenever I succeed in making the text uneditable, it also does not allow the font to be changed.

Maybe smarter heads can prevail?  Thanks for any help you can give.

Update: I forgot to mention, I am using Telerik RadControls for ASP.NET AJAX Q1 2011 SP1, and Visual Studio 2008, and .NET Framework 3.5.

Regards,
Steve Harding
Steve
Top achievements
Rank 1
 answered on 01 Sep 2011
3 answers
341 views
Good Afternoon, I need something similar to a RadNumericTextBox that accepts only time inputs in this format hh:mm I don't need date.

here some examples:
125:00
3000:00
121:59

What telerik control can I use ?

Thank you
Emanuele
Top achievements
Rank 1
 answered on 01 Sep 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?