Telerik Forums
UI for ASP.NET AJAX Forum
14 answers
796 views
Hi,

We have only 3 dicitionaries for RadSpell control( i.e English, German and French). Please let me know, where i can download other language dictionaries?

Thanks,
Mariyam
Rumen
Telerik team
 answered on 26 Oct 2012
1 answer
40 views
hi

i have added a  2012 Q3 radcaptcha and have also enable add handlers.

But when i view it in Firefox all is ok but not IE9. it shows when view in browse but when refresh, it just display a gray image in IE 9

I am not using web farm or web garden. it is just a simple website.

My application pool is set to ASP.NET v4.0.

It has beed bothering me and i could not find a solution.

This is my webconfig code:

 <system.web>
    <sessionState mode="SQLServer" sqlConnectionString="data source=XXXXXX;user id=XXXXX;password=XXXXXX" timeout="60" />
    <compilation debug="true" strict="false" explicit="true" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
        <add assembly="System.Speech, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
      </assemblies>
    </compilation>
    <httpHandlers>
      <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
    </httpHandlers>
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <handlers>
      <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" />
    </handlers>
  </system.webServer>
  <appSettings />
Slav
Telerik team
 answered on 26 Oct 2012
8 answers
387 views
Hello,

I'm trying  to make a popup window which contains the imageEditor.
I'm getting a similar problem as an earlier post here (with no solution), when I click a tool in the imageeditor, the dialog appears behind my window.
I can move the window so I can select the dialog and use its functionality.But there seem to be going more things wrong since the dialogs function, but are not properly filled in with data (for example the resize dialog contains 0 0 as with and height).

Is the imageeditor not meant to work inside a radwindow?

The code I use:
<telerik:RadWindow ID="winImageEditor" runat="server" VisibleStatusbar="false" 
                   ShowContentDuringLoad="false" Modal="false" Behaviors="Close,Move,Resize" Title="Edit Image">
    <ContentTemplate>
        <telerik:RadImageEditor ID="iedImageEditor" runat="server" >
        </telerik:RadImageEditor>
    </ContentTemplate>
</telerik:RadWindow>



Any help would be appreciating since I'm running out of time to fix this.
Jonathan
Top achievements
Rank 1
 answered on 26 Oct 2012
2 answers
113 views
Hi

While trying to use a RadButton as an Image Button I have come across this issue under IE9 (and probably all versions of IE) where when the button is pressed a focus rectangle is shown around it.  Please see attached : IE9 Image Button Pressed.png

I have tested under Chrome and this does not happen.  Please see attached : Chrome Image Button Pressed.png

Is there a way to remove the focus rectangle when using IE?

I am using Visual Studio 2010, .Net framework 4 and Telerik Q3 2012 controls.

Basic HTML to test this is:

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="Telerik_RadButton._Default" %>
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
        <div>
            <telerik:RadButton ID="RadButton1" runat="server" Text="RadButton" Width="77px" Height="22px">
                <Image ImageUrl="~/i/PasswordUp.png" HoveredImageUrl="~/i/PasswordHover.png"
                  PressedImageUrl="~/i/PasswordClick.png" DisabledImageUrl="~/i/PasswordDisabled.png"
                  EnableImageButton="true" />
            </telerik:RadButton>
        </div>
    </form>
</body>
</html>

I've attached the png files that are used above.

Thanks

Dale
Steve
Top achievements
Rank 1
 answered on 26 Oct 2012
1 answer
76 views
I've got a the below javascript function that's called from OnGridCreated event handler. Everything works fine in Chrome, IE8 and IE9 browsers but I'm getting a javascript error in IE7 on the masterTableView.showColumn(columnIndex) or on  masterTableView.hideColumn(columnIndex). 

function toogleColumnDisplay(masterTableView, columnUniqueName, isDisplayed) {
    var column = masterTableView.getColumnByUniqueName(columnUniqueName);
    var columnIndex = column.get_element().cellIndex;
    if (isDisplayed) {
        masterTableView.showColumn(columnIndex);
    }
    else {
        masterTableView.hideColumn(columnIndex);
    }
}

It seems the IE7 error occures when a column is already hidden, and you're trying to use hideColumn on it. Also, if a column is visible  showColumn will produce an error. As a work around, I tried to check the column visibility before trying to change visibility.
 if (isDisplayed == column.get_visible()) {
        return;
    }

However, even though column's get_visible()  method returns an appropriate value after showColumn or hideColumn methods, the actual visibility of columns on the screen is not changed. It seems like the columns are not added to this._hiddenCols collection. 

Thanks,
Alex
Angel Petrov
Telerik team
 answered on 26 Oct 2012
1 answer
68 views
Hi,

I am trying to create a base grid class with all the features that can be configured from the  child classes( the screens that use this base class).

Do we have the code base library for using a radgrid as a common grid class?


Thanks, 
Jay
Angel Petrov
Telerik team
 answered on 26 Oct 2012
1 answer
109 views
Hi,
I need to draw a custom grid line (to mark a border value) in my grid. Is this possible with the ASP.NET AJAX version of the Chart control? I want to do something like this: http://www.telerik.com/help/silverlight/radchart-features-annotations-custom-gridline.html

I would like my chart to look something like the attached image.

Im using version 2011.3.1115.35.


Regards,
Martin
Petar Kirov
Telerik team
 answered on 26 Oct 2012
5 answers
132 views
Good morning,
I've a RadGrid object built in a function and after add this grid in the list of controls of the page.

My problem is the GridGroupHeaderItem that is visible.
I try to set the property grid.GroupingEnabled = false; during the creation but don't work.

How cai I do for hide this column in this scenario ?

lupotana
Top achievements
Rank 1
 answered on 26 Oct 2012
4 answers
143 views
Hi everyone,

I have a problem with RadWiindow. The scenario is a RadWindow is opened from a page which contains an Intersoft WebGrid control. The RadWindow can't be moved (dragging the title bar) in Firefox/Chrome and it works fine in IE. After script debugging, there is an uncaught javascript exception which complains as below about the JS function getTouchEventLocation in Telerik.Web.UI.Common.Core.js

getTouchEventLocation:function(g){var d=arguments[1],b=d?[d+"X"]:"pageX",c=d?[d+"Y"]:"pageY",a={x:g[b],y:g[c]},f=g.changedTouches||(g.originalEvent?g.originalEvent.changedTouches:g.rawEvent?g.rawEvent.changedTouches:false);
if($telerik.isTouchDevice&&f&&f.length<2){a.x=f[0][b];
a.y=f[0][c];
}

Error message: TypeError: g is undefined

(FF is 16.0.1 and Chrome is 22.0.1229.94)

thanks in advance,

Roger
Shen Li
Top achievements
Rank 1
 answered on 26 Oct 2012
1 answer
65 views
While working with a column series of the RadHTMLChart, I noted that the reference used in the DataField can not have accessed properties/members.  For example, I wanted to referenced a TimeSpan's object TotalHours as "Time.TotalHours" but it did not work.  Is this intended?  Do you plan to change this in line with other controls?

Thanks.
Marin Bratanov
Telerik team
 answered on 26 Oct 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?