Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
123 views
I'm using the RadEditor Telerik control and am running into an error trying to add the spellcheck editor tool.  Below is a snippet of my code:
<telerik:RadEditor runat="server" ID="ContentEditor" Height="200px" Width="540px" EnableResize="false" EditModes="Design"><CssFiles><telerik:EditorCssFile Value="~/CSS/EditorContentAreaStyles.css"/></CssFiles>
<Tools><telerik:EditorToolGroup>
<telerik:EditorTool Name="AjaxSpellCheck" Text="Spellchecker" Enabled="true" />
</telerik:EditorToolGroup></Tools>
<Languages>
<telerik:SpellCheckerLanguage Code="en-US" Title="English" />
</Languages>
</telerik:RadEditor>
I have added the following to my web config:
<httpHandlers>
<add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI" validate="false"  />
<add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false" />
</httpHandlers>

I am getting the Spell Check Handler Server Error: 500 (see image below).  I have also attached an image showing that the dictionary file is inside the App_Data/RadSpell folder.  Any idea why i'm getting this error or how to fix it?  

Thanks again for the help,
-  Pat
Princy
Top achievements
Rank 2
 answered on 14 Dec 2011
0 answers
58 views
Hi,
i have a page having 4 expandable radgrid showing data from different datasource but in my aspx page it appears like 1 single radgrid. now i want to export record in 1 excel workbook and in the  same excel sheet, all grid record should come one after another with Grid name as caption. i am using visual studio 2010 and laungaue is c#. I have tried almost all the stuff that is avaiable on google and telerik support site.

When try to export the record directly without expanding the record it works fine but as soon as i expand the record, all goes wrong.

Please suggest how to implement this.
Anand
Top achievements
Rank 1
 asked on 14 Dec 2011
13 answers
182 views
I'd previously created my own custom control to pull events from our Exchange server and display them on my employer's intranet website.  I really like the day, week, month, and timeline views of the RadScheduler, but there are (just a few) cases where my own view does a better job of showing upcoming events and event details.

I'd love it if there were a way to create a custom view to plug into the RadScheduler so I could the best of both worlds.  Alternatively, if I could add another View Tab to the header, I'd be content to hide everything but the header and display my own control, wired to make use the properties of the RadScheduler control.
Peter
Telerik team
 answered on 14 Dec 2011
1 answer
68 views
A have a 2 radcombox, 1 with data from datasource (rd1), and the second (rd2) with data transferred from rd1

This two controls are in a asp:panel with many controls which is updated by a button via AjaxUpdatedControl...that good

A have another asp:panel with many controls which is updated by a button (bt2) via AjaxUpdatedControl
When I fired this bt2 in the second panel, the data of rd2 are doubled (not in the screen, but i saw this when postback)

Can you explain me what wrong ?!

Thank you and sorry for my english

Anne
    



Dimitar Terziev
Telerik team
 answered on 14 Dec 2011
0 answers
87 views
I found a bug in RadCalender
Here is test solution for that bug, sorry for chaotic code and names, i did this on rush. Don't have time for your bugs.

http://www.filedropper.com/radcalendarbug

(u will need to add telerik.web.ui, i used 2011.3.1115.40 version)
Also i am adding a screenshot how it looks.
Zÿm
Top achievements
Rank 1
 asked on 14 Dec 2011
1 answer
106 views
Hello,
I have a radcombobox  where on itemsrequested event I use EnableLoadOnDemand  property to show a list of items according to an user input. But I see that if I don't use the combo some time (say, 20 minutes) then the event is not fired. Is it possible to fix that? By the way I defined in web.config very long session timeout: 540. More generally, may be there is the same problem for other RadControls?
Evgeny
Kalina
Telerik team
 answered on 14 Dec 2011
1 answer
41 views
Hi,
I want to change visibilty of RadDatePicker with RadComboBox using Ajax.
I also want to add ajax setting code-behind.
I'm using following code:

protected void Page_Load(object sender, EventArgs e)
{
RadAjaxManager1.AjaxSettings.AddAjaxSetting(rcbSelect, rdpDate);
if(!IsPostback)
rdpDate.Visible = false;
}
   
protected void rcbSelect_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
{
rdpDate.Visible = true;
}

Everything works great, but there's a problem with RadDatePicker calendar popup. When I click button, it doesn't show after control visible is set to true. It simply does nothing.
No javascript error etc. Do you know what could be wrong? I appreciate any help,
Mateusz
Milena
Telerik team
 answered on 14 Dec 2011
2 answers
83 views
Hello,

Recently i am working with radcalendar control ,it works well but our requirement is to change the css  of radcalendar like the image i have attached below ,is it possible to do like that ,how to do that ,please respond if u have any idea about it.
Saimadhukar
Top achievements
Rank 1
 answered on 14 Dec 2011
1 answer
60 views
Hi,

I have to add special days dates from data base table.So i want to know some additional information about caching.

Can I use asp.net out put cache?
Is there any  client side caching option available?
how to do cacing for telerik calender and scheduler controls?



Mira
Telerik team
 answered on 14 Dec 2011
4 answers
104 views
I've been banging my head off the table for too long on this and I can't seem to find it anywhere else on the internet, so here goes.

I have a RadGrid with two GridTemplateColumn fields. Each GridTemplateColumn has an EditItemTemplate with a RadComboBox in it.

My question is, how do I relate the RadComboBoxes?  I need the values in the second RadComboBox to be based on the selected value in the first RadComboBox:

Here is the basic code:
<telerik:GridTemplateColumn DataField="CriminalActivity" UniqueName="CriminalActivity" 
                EditFormHeaderTextFormat="Activity: "
                <EditItemTemplate> 
                    <telerik:RadComboBox ID="cboActivity" runat="server" AutoPostBack="True" DataSourceID="dsActivities" 
                        DataTextField="Type" DataValueField="Type"  
                        OnSelectedIndexChanged="cboActivity_SelectedIndexChanged"  
                        SelectedValue='<%# Bind("CriminalActivity") %>'
                    </telerik:RadComboBox> 
                </EditItemTemplate> 
                <ItemTemplate> 
                    <asp:Label ID="lblActivity" runat="server" Text='<%# Eval("CriminalActivity") %>'></asp:Label> 
                </ItemTemplate> 
            </telerik:GridTemplateColumn> 
            <telerik:GridTemplateColumn DataField="ActivityDescription" UniqueName="ActivityDescription" 
                EditFormHeaderTextFormat="Description: "
                <EditItemTemplate> 
                    <telerik:RadComboBox ID="cboDescription" runat="server" 
                        OnItemsRequested="cboDescription_ItemsRequested"  
                        SelectedValue='<%# Bind("ActivityDescription") %>'
                    </telerik:RadComboBox> 
                </EditItemTemplate> 
                <ItemTemplate> 
                    <asp:Label ID="lblDescription" runat="server" Text='<%# Eval("ActivityDescription") %>'></asp:Label> 
                </ItemTemplate> 
            </telerik:GridTemplateColumn> 
 
Any help is greatly appreciated!

Thanks!

Velmurugan
Top achievements
Rank 1
 answered on 14 Dec 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?