Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
240 views
I have a column which contains a date, but I need to return it from my C# model as string so that i can do some special formatting to it first (I need to check for null and for DateTime.Min and then return an empty string in those instances). If it's a string, however, I understand that the sorting won't work correctly. Is there a way to set the data type of the column to DateTime or to get the string date to sort correctly?

Thanks,
Jay
Jay
Top achievements
Rank 1
 answered on 31 Jul 2012
1 answer
99 views
Hello Sir/Mam

I am getting a issues on Radchart control.
I want to change y axis mark point into reverse direction.

Please find the attachment and review this.

Please let me know that how we do this in Rad Chart


Thanks
Viky
Tsvetie
Telerik team
 answered on 31 Jul 2012
1 answer
71 views
Hi!

I want to localize pager buttons(first,,prev,next,last) in NextPrevAndNumeric pagermode.

In Grid itemCreated I can access GridPagerItem., but I don't know how to access to these buttons.
I have already tried to set localized text in the radGrid.PagerStyle, but it isn't works.

Thx.
Eyup
Telerik team
 answered on 31 Jul 2012
1 answer
394 views
Hello,
Is there any code samples available for using the CAPTCHA control with the .net login control?

Thank you,
Slav
Telerik team
 answered on 31 Jul 2012
1 answer
111 views
Is it possible to make the radgrid command item toolbar seen here vertical along the left hand edge of the grid?

http://demos.telerik.com/aspnet-ajax/toolbar/examples/applicationscenarios/gridcommanditem/defaultcs.aspx?product=toolbar 
Kate
Telerik team
 answered on 31 Jul 2012
1 answer
347 views
Hello Community,

  I have a problem with the radGrid from Q3/2011 Version. On client Java script I have to get the actual sort expression of the grid. As the documentation stated, I used the following code:
var grid = $find ( ... gridClientId... )
 
// Grid is found, so get the sort expression
var masterTableView = grid.get_masterTableView();
var sortExpressions = masterTableView.get_sortExpressions();
But sortExpression is always empty even if my grid is definitely sorted by one column.

In the documentation I found the Note: The RadGrid get_sortExpressions() property is meaningful only in case the RadGrid control is bound client-side.

This I interpret, that, if the grids data is not bound from client side, I cannot get the sort expression this way.

My grid is bound to an ObjectDataSource. So how can I get the sortExpression?

Greetings
  Thomas
Shinu
Top achievements
Rank 2
 answered on 31 Jul 2012
5 answers
151 views
Hello,

Is it possible to use the telerik radcontrols through an empty Sharepoint project?
I tried the following steps:

http://www.telerik.com/help/aspnet-ajax/moss-deploying-radcontrols.html 

And added the controls to the toolbox but they are grayed out. I cannot use them.

Please advise.

Thanks,
CG
Rumen
Telerik team
 answered on 31 Jul 2012
5 answers
215 views
I am using a column template with a radcombobox in a radgrid column, however, when the grid renders, the combobox does not show the dropdown button and it appears to grow in width when selected with a mouse click.

If I use the developer tools in the browser, I can see the width of the combobox is set to 100%, however, it appears to overflow the cell into the adjacent cell. If I set the width of the combobox to a fixed width, say 150px, it shows as expected within the grid, however, I really need the combobox to grow and shrink with the cell width.

It there a workaround? 
Ivana
Telerik team
 answered on 31 Jul 2012
3 answers
108 views
I have a telerik RadMenuItem
<telerik:RadMenuItem runat="server" Text="SOLUTIONS" >                        
                  <Items>
                          <telerik:RadMenuItem runat="server" CssClass="aspnet-ajax">
                                <ItemTemplate>
                                        <table>
                                            <tr>
                                                <td>
                                                <a href="/Solutions/DisasterRecovery/Overview/Pages/BrandTier2Test.aspx">
                                                <img alt="disaster recovery" src="/PublishingImages/dr.gif" onmouseover="this.src='/PublishingImages/dron.gif'" onmouseout="this.src='/PublishingImages/dr.gif'"/>
                                                </a>
                                                </td>
                                                <td>
                                                <a href="/Solutions/DisasterRecovery/Overview/Pages/BrandTier2Test.aspx">
                                                <img alt="disaster recovery" src="/PublishingImages/dr.gif" /></a>
                                                </td>
                                            </tr>
                                         </table>
                                   <Item Template>
                             </telerik:RadMenuItem>
                      </Items>
<telerik:RadMenuItem>

When i click on "SOLUTIONS"  the child RadMenuItem dropdown opens when i hover on one of the them the parent window should be darkened..
Can someone know me how to achieve this?

Thanks,
Maruthi
Kate
Telerik team
 answered on 31 Jul 2012
27 answers
613 views
I use RadControls Q3 2009 which RadWindow have a new feature "Use as controls container".
I put RadEditor in RadWindow's ControlTemplate and found that all RadEditor toolbars not working anymore.
But I can type in it and chage to others mode (Design, Html).

This is the example code.

-----

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_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">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <telerik:RadWindow ID="radWindow" runat="server" Title="Edit Text" VisibleOnPageLoad="true" Width="800px" Height="700px"
     Modal="true" >
    <ContentTemplate>
        <center>
            <br />
            <asp:Label ID="lblTextEditorHead1" runat="server" Font-Bold="True" Font-Size="Large">Edit Text</asp:Label>
                <br />
                <br />                               
                <telerik:RadEditor ID="radEditor" Runat="server" Height="350px" Width="656px"
                    EnableViewState="True">                   
                    <Content></Content>
                </telerik:RadEditor>
            <br />
            <br />
            <asp:ImageButton ID="btnTextEditorOk" runat="server" ImageUrl="~/images/btn_ok.png" CausesValidation="false" />
           &nbsp;
            <asp:ImageButton ID="btnTextEditorCancel" runat="server" ImageUrl="~/images/btn_cancel.png" CausesValidation="false" />
            <br />
            <br />
            </center>    
    </ContentTemplate>
    </telerik:RadWindow>
    </form>
</body>
</html>
-----

I want to make RadEditor modal popup in the same page so I try to use this new feature.
Is there any solution to correct this? If not then I will try RadToolTip instead.

Olivier
Top achievements
Rank 2
 answered on 31 Jul 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?