Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
130 views
i have inserted a radeditor but it appears with black background so i cant see the text  i'm writting why is this happening? i ahve changed the skin but it stills all dark when i write some text
Vessy
Telerik team
 answered on 18 Apr 2013
2 answers
329 views
Hi ,
I am facing one issue in rad grid. which is i have one grid while in edit mode i want to update all fields and if add mode i will have one drop down base on that i ll insert record for the grid. I want to hide the some of fields in add mode and display all in edit mode.
Can any one give me solutions.
Aarsh
Top achievements
Rank 1
 answered on 18 Apr 2013
3 answers
117 views
How can i capture the click event on client side whenever the rsRecurrenceOptionList is clicked?

I want to be able to capture the click and get the selected item to hide or show a custom panel with controls.

Thanks.
Plamen
Telerik team
 answered on 18 Apr 2013
2 answers
244 views
I have just upgraded to a new version of Telerik.Web.UI (version 2011.1.315.35), and my radWindows (which generally have Overlay="true") now have white corners when viewed in Firefox 4 (but not in IE8 or Chrome). This is because the overlay iframe has background-color: rbg(255, 255, 255) as an inline style element for Firefox, but not the other browsers. I can't work out why or where this is being set.

If I set Overlay="false" the white corners of course disappear, but this is not a good solution.

Any ideas as to why this has been introduced, and how I can work around it? The overlay iframe does not appear to have a class, so I'm not sure how to override it in css.

Nick
gim.net
Top achievements
Rank 1
 answered on 18 Apr 2013
1 answer
118 views
hi,
I am using radchart in sharepoint 2010 but i have this error:


///

Server Error in '/' Application.

An entry with the same key already exists.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentException: An entry with the same key already exists.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

///

This error occurs before binding

Please help me
Petar Kirov
Telerik team
 answered on 18 Apr 2013
5 answers
121 views

I'm facing this terrible bug that i can't find any article or workaround for.

Am using RadAsyncUpload in my web form (asp.net) and it so happens that i have a jquery plugin (jquery.ibutton.js) on the same page, which basically handles an iphone switch look and feel for the checkboxes and radiobuttons.

By default, RadAsyncUpload renders as silverlight which works great on all browsers. However, when i added the iButton plugin on the same page as the AsyncUpload in (chrome/safari), the AsyncUpload control is untouchable. I can't touch it, click it or interact with it. Its like its just blocked somehow!! But it works fine on all the other browsers, even IE -_- (shocker)

I figured out the relation when i removed the iButton plugin constructor and everything went back to normal.

Can someone maybe help me with some feedback or if he can repro this bug...much appreciated

Note: I did try to switch off the silverlight module in order for flash to kick in. It seemed to work, but after i select a file this JS Error takes place and i have no clue how to handle it (Uncaught Syntax error, unrecognized expression #[object Object])
Omar
Top achievements
Rank 2
 answered on 18 Apr 2013
4 answers
185 views
How can I do to change font family and font size of the Item Label.

I have 3 series stackedbar and I need to put a label above each series
Paulo
Top achievements
Rank 1
 answered on 18 Apr 2013
1 answer
71 views
Hello everyone,

We developed a ASP.Net Page using Upload Async component and we are deploying the application but we have an issue, On Windows 7 with IE9 without Silverlight the Upload Async Component is blocked or does not work on the iFrame fallback.

Do we need to add a P3P header to the loading method of the Page or overriding the Process Method or there is a way to handle this issue so the IE 9 does not block the iFrame fallback?.

Also could be the PCs have flash installed so the Upload Async component gets for granted that it will use Flash but on IE 9 The component does not work the flash fallback. My understanding is that if there is not silverlight, on IE 9 it will fallback to iFrame or do I need explicitly to disable Flash support?.

Best Regards,
Skandar.
Hristo Valyavicharski
Telerik team
 answered on 18 Apr 2013
1 answer
142 views
I have a single aspx page that has a tabstrip and a ascx control with a tabstrip contained in it. This page is used in my custom skin to see how the controls look. When I use the following DOCTYPE the screen renders different for the ASCX tabstrip control:

<!DOCTYPE HTML PUBLIC "-W3C//DTD HTML 4.0 Transitional//EN">: the controls render fine. the ASCX control spans the entire page which is the behavior I want. Notice that the first tab text is not truncated. See attached file TabFull.png

<!DOCTYPE html PUBLIC "-W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">: the control renders different. The ASCX control only covers part of the screen and the first tab text is truncated. See attached file TabShort.png

Does anyone have any idea of why this is happening?

ASCX code:
<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="TabControl.ascx.vb"
    Inherits="CustomSkin_Hew.TabControl" %>
<telerik:RadTabStrip ID="RadAjaxTabStrip1" runat="server" AutoPostBack="false" Align="Left"
    Orientation="HorizontalTop" ShowBaseLine="true" Width="100%">
    <Tabs>
        <telerik:RadTab Text="Page1 Long Title" runat="server" Width="20%">
        </telerik:RadTab>
        <telerik:RadTab Text="Page2" runat="server" Width="20%">
        </telerik:RadTab>
        <telerik:RadTab Text="Page3" runat="server" Width="20%">
        </telerik:RadTab>
        <telerik:RadTab Text="Page4" runat="server" Width="20%">
        </telerik:RadTab>
        <telerik:RadTab Text="Page5" runat="server" Width="19%">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>

ASPX code:
<tr>
    <td>
        <asp:Label ID="Label2" runat="server" Text="RadTabStrip"></asp:Label>
    </td>
</tr>
<tr>
    <td>
        <telerik:RadTabStrip ID="RadTabStrip1" runat="server" SelectedIndex="3" Align="left"
            Orientation="HorizontalTop" ShowBaseLine="true" TabIndex="-1">
            <Tabs>
                <telerik:RadTab runat="server" Text="Root RadTab1">
                    <Tabs>
                        <telerik:RadTab runat="server" Text="Child RadTab 1">
                        </telerik:RadTab>
                    </Tabs>
                </telerik:RadTab>
                <telerik:RadTab runat="server" Text="Root RadTab2">
                    <Tabs>
                        <telerik:RadTab runat="server" Text="Child RadTab 2">
                        </telerik:RadTab>
                    </Tabs>
                </telerik:RadTab>
                <telerik:RadTab runat="server" Text="Root RadTab3">
                </telerik:RadTab>
                <telerik:RadTab runat="server" Text="Root RadTab4" Selected="True">
                </telerik:RadTab>
            </Tabs>
        </telerik:RadTabStrip>
    </td>
</tr>
<tr>
    <td>
          
    </td>
</tr>
<tr>
    <td>
        <rad:TabControl runat="server" ID="objTab"></rad:TabControl>
    </td>
</tr>


Ivan Zhekov
Telerik team
 answered on 18 Apr 2013
1 answer
212 views
We are having some issues with a drop down list when it is populated with a large amount of items (1800).

We have the drop down list containing vendors sitting on a master page and a couple of telerik RadHtmlCharts on a child page that show the sales for the selected vendor. On first load there is a default selected vendor and the graphs display that vendor's sales. The user can then change the vendor in the drop down list and the graphs will change to show that vendor's sales. Pretty basic stuff.

When the page is first loaded it renders quickly and without issue, but if the user changes the selected vendor the page takes a good 15 seconds to load. It loads partially, but then takes extra time to load the charts. The browser locks up while it's doing it. In some cases it will crash the browser.

We have tried replacing the drop down list with a rad combo box and the issue remains. If we change the rad drop down list to the standard ASP.NET drop down list the issue goes away.
 
The issue only seem to occur in Chrome. In Firefox the page loads quickly.

Attached is the Timeline from Chrome dev tools. I'm wondering if this is an issue with Layout and Recalculate Style? This happens a lot when the user changes the selected vendor, but you don't see it happening when the page first loads.

The data for the drop down list is loaded during Page_Load like so:

if (!IsPostBack)
 {
 
rddlVendors.Visible = false;
 
            DataTable dtVendors = dbMain.get_VendorList_by_AccountID_ForMenu((int)Session["AccountID"]);
 
            if (dtVendors.Rows.Count > 0)
            {
 
                if (dtVendors.Rows.Count > 1)
                {
                   rddlVendors.Visible = true;
 
                    
                    rddlVendors.DataSource = dtVendors;
                    rddlVendors.DataTextField = "name";
                    rddlVendors.DataValueField = "ID";
 
                    rddlVendors.DataBind();
 
                    rddlVendors.SelectedValue = Session["VendorID"].ToString();
                }
            }
 
}

Let me know if you require any more information.
Thanks


Nencho
Telerik team
 answered on 18 Apr 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?