Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
51 views
I have a problem with the resources not being found for the telerik controls. I have narrowed down the problem to .net 4.5 or installing kb 2836939 for .net 4.0. If I have a .net 4.0 installation on a windows 2008 r2 server without kb 2836939 it works fine. As soon as I install it, I get the 404 errors. If I uninstall it, it goes back to working. We are using Telerik.web.ui version 2013.2.717.35. I do not need .net 4.5 at this time so fixing the .net 4.0 error would be just as useful. I need kb 2836939 to fix postback errors in IE11. If purchasing a newer version of your controls will guarantee to fix the problem even if means installing asp.net 4.5, please let me know.
Joel
Top achievements
Rank 1
 answered on 06 Jun 2016
12 answers
525 views
Hi,
i have a problem using RadHtmlChart here my code:
in .aspx

<telerik:RadHtmlChart runat="server" ID="PieChart4"  Width="425px" Height="280px" Transitions="true" Style="float: left;" Skin="black" DataSourceID="SqlDataSource1">
                <Appearance >
                    <FillStyle BackgroundColor="Transparent" />               
               </Appearance>
                <ChartTitle Text="Resons Count">
                        <Appearance Align="Center" Position="Top" />
                    </ChartTitle>
                <PlotArea>
                    <Series>
                        <telerik:PieSeries  StartAngle="90" DataField="count" Name="sReason">
                            <LabelsAppearance Position="Circle" DataFormatString="{0} times" />
                           
                        </telerik:PieSeries>
                    </Series>
                    
                </PlotArea>
            </telerik:RadHtmlChart>

<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="...."
        SelectCommand="SELECT sReason,count from (SELECT     dbo.AccountingType.iAccountingTypeID, dbo.AccountingType.sReason, COUNT(dbo.AccountingType.iAccountingTypeID) AS count
                        FROM         dbo.Accounting INNER JOIN
                      dbo.AccountingType ON dbo.Accounting.iAccountingTypeID = dbo.AccountingType.iAccountingTypeID INNER JOIN
                      dbo.ConsistCycle ON dbo.Accounting.iConsistCycleID = dbo.ConsistCycle.iConsistCycleID
                      WHERE    (NOT (dbo.AccountingType.sReason IS NULL)) AND (CONVERT(datetime, CONVERT(varchar, dbo.ConsistCycle.dt7MileArrivalActual, 101), 101) >= CONVERT(DATETIME, @dt7MileArrivalActualFrom, 102)) AND (CONVERT(datetime, CONVERT(varchar, dbo.ConsistCycle.dt7MileArrivalActual, 101), 101) <= CONVERT(DATETIME, @dt7MileArrivalActualTo, 102)) GROUP BY dbo.AccountingType.iAccountingTypeID, dbo.AccountingType.sReason) as tab1">
        <SelectParameters>
            <asp:Parameter Name="dt7MileArrivalActualFrom" DefaultValue="" />
            <asp:Parameter Name="dt7MileArrivalActualTo" DefaultValue="" />
        </SelectParameters>
    </asp:SqlDataSource>


and this is the result



What i can do to show the Name property of each series in the legend?
Pls help me!
Thanks
Danail Vasilev
Telerik team
 answered on 06 Jun 2016
1 answer
131 views

How do I remove a particular series item from client side using javascript.

I am adding the series items from the code behind.

Dim planSeries As ColumnSeries

 planSeries = .PlotArea.Series(0)
 planSeries .Items.Add(New SeriesItem(Session("PlanTitle")))
                

As shown in the attached screenshot, RadCombobox is populated with the names of all the series items. On ClientClick of a Radbuttion, I want the selected series item to be removed from the chart. 

 

Any help in this regard is highly appreciated. 

 

 

Ianko
Telerik team
 answered on 06 Jun 2016
1 answer
474 views

Hi all,

I have radgrid where each row consist of five columns and a checkbox. Let's call it column 1,2,3,4 and 5.

I want to get column 1,2,3,4, and 5 value when I click on check box.

May I know how to get the values?

 

Thank you very much.

Ianko
Telerik team
 answered on 06 Jun 2016
6 answers
280 views
Hi,

I have read the docs and the LeaveTargetAndToolTip property is supposed to only hide if we leave the tooltip and the element.  However this is not working in your latest release.

You can see this in your demo:
http://demos.telerik.com/aspnet-ajax/tooltip/examples/hideevent/defaultcs.aspx

- Select: LeaveTargetAndToolTip
- Put mouse over one of the cameras
- Wait ...
- Tooltip closes ??

I have tried this on IE8, Chrome and FireFox and the bug is in all browsers.

Thanks

Guido Tapia
Ianko
Telerik team
 answered on 06 Jun 2016
2 answers
87 views

Markup is shown properly in the HTML view of the RadEditor, but is striped when rendered on the page.

Here is my HTML as shown in the RadEditor:

<p><img alt="the other" src="/PublishingImages/Signing-4730x.jpg" /></p>  
<p>this<br /> 
test</p> 
 

Note the end tags on BR and IMG, but when the page is rendered I get this:

<p><img alt="the other" src="/PublishingImages/Signing-4730x.jpg"></p> 
<p>this<br> 
test</p> 

 

For both the img and the br tags the closing / is removed.  How can I prevent this from happenging?

NTS
Top achievements
Rank 1
 answered on 06 Jun 2016
3 answers
55 views

How can I set the FocusedDate to January 1 of the current year?  I have tried a JavaScript function, but the calendar will have the current month as the first month.

The JavaScript is

function navigateToJanuary(sender) {
    var todaysDate = new Date();
    var triplet;
    triplet = [todaysDate.getFullYear(), 01, 01];
    sender.navigateToDate(triplet);
 }

I put an alert box to verify that I am getting the correct date. 2016,1,1

I have  in the RadCalendar

<ClientEvents OnLoad="navigateToJanuary" />

Am I using the wrong client event?

Viktor Tachev
Telerik team
 answered on 06 Jun 2016
1 answer
155 views

I currently use the HeaderContextMenu to filter a RadGrid and I've been asked if the column filters can cascade off one another (i.e. Selecting a two Divisions will reduce the available options in the State context filter to only those states in the selected Divisions).  I've seen (and completed) examples using standard Drop Downs on a RadGrid, but not with the HeaderContextMenu.  Is there a way to access the selected items to include with the selectCommand for the grid?  Is there another way to handle this? 

Konstantin Dikov
Telerik team
 answered on 06 Jun 2016
1 answer
71 views

When I am using the following to group the controls in bootstrap with from-group I want to have a 15px margin bottom on the controls for spacing but what happens is the date icon goes out of alignment how do i get the icon to line up after applyign 15 px to form group.

 

<div class="form-group">
                           <label class="col-md-4 control-label" for="textinput">Date Of Birth</label>
                           <div class="col-md-8">
                               <telerik:RadDatePicker ID="rdDob"  Skin="Bootstrap" runat="server"></telerik:RadDatePicker>
 </div>
</div>

Maria Ilieva
Telerik team
 answered on 06 Jun 2016
3 answers
222 views
Hi.
I want to report a bug with the RadToolTip scroll.
This is my 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>
<head runat="server">
    <title>Test</title>
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        </telerik:RadScriptManager>
        <div>
            <telerik:RadToolTip ID="RadToolTip1" runat="server" ContentScrolling="Both" Height="500px" Position="Center" RelativeTo="BrowserWindow" VisibleOnPageLoad="True" Width="500px" ManualClose="True">
                <table style="width: 750px; height: 750px; background-color: #008000;">
                    <tr>
                        <td style="width: 750px; height: 750px; background-color: #008000;"></td>
                    </tr>
                </table>
            </telerik:RadToolTip>
        </div>
    </form>
</body>
</html>

In Internet Explorer 10 (With compatibility mode) it shows the scrolls, but (With out compatibility) it dosen't show the scrolls.
In Firefox and Chrome it's fine.
I'm using Q3 2012 SP2

Best regards.
Ianko
Telerik team
 answered on 06 Jun 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?