Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
101 views
I have got the Telerik CDN setup as listed in the URL below:
http://www.telerik.com/help/aspnet-ajax/cdn-custom-provider.html

However, it causes scripts to load twice. One file - jQuery.Easing is loaded as part of jQuery.plugins.js and ScriptResource.axd. There are other files that load twice similarly. 

The settings I have made are exactly as provided in the URL above. Please let me know if I have missed something and how to resolve this issue.

We are using telerik version 2011.
Dimitar Terziev
Telerik team
 answered on 17 Feb 2015
1 answer
86 views

I am getting small arrows in  the radtreeview . Every Node has a small arrow like ">" before it  . I am not sure its a bug in the control or whether its a setting . Please help to get rid of this arrow.

+ > Mainnode .

     > Subnode one .

     > Subnode two.

I have tried to recreate the  issue.

Bala
Top achievements
Rank 1
 answered on 17 Feb 2015
6 answers
137 views
Hi

How to Implemented Filter and Sorting Radgrid using Datatable in C# Code for example my field this

ex:Name,Empno,Amout,Dob Fields

any one guide me how will do this?

Thanks
for supports to all
Pavlina
Telerik team
 answered on 16 Feb 2015
2 answers
84 views
I'm trying to resize a splitter using the HeightOffset="60" property. It works perfect until I add a RadAjaxManager to the page. After that the splitter no longer takes up the full screen like i want it too. This is a simple example just to demo my issue. Obviously i need to keep the radajaxmanager otherwise i would just remove it. Thanks. Any help would be great!!!

Notice in the code below it does not size correctly, but if i remove  the radajaxmanager block it works perfect.
         <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
            <AjaxSettings>
             <telerik:AjaxSetting AjaxControlID="RadGrid1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="LatePanel"  LoadingPanelID="RadAjaxLoadingPanel1"/>
                </UpdatedControls>
            </telerik:AjaxSetting>
          </AjaxSettings>
        </telerik:RadAjaxManager>

<%@ Page Language="C#" %>
<%@ Import Namespace="System.Data" %>
 
<!DOCTYPE html>
 
<script runat="server">
    protected void RadGrid1_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
    {
        DataTable dt = new DataTable();
        dt.Columns.Add("EmployeeID");
        dt.Columns.Add("LastName");
        dt.Columns.Add("FirstName");
        dt.Columns.Add("Title");
        dt.Columns.Add("ReportsTo");
        dt.Rows.Add(new object[] { 1, "Davalio", "Nancy", "Sales Representative", 2 });
        dt.Rows.Add(new object[] { 2, "Fuller", "Andrew", "Vice President, Sales", null });
        dt.Rows.Add(new object[] { 3, "Leverling", "Janet", "Sales Representative", 2 });
        dt.Rows.Add(new object[] { 4, "Peacock", "Margaret", "Sales Representative", 2 });
        (sender as RadGrid).DataSource = dt;
    }
</script>
 
<head runat="server">
    <title></title>
    <style>
        html,
        body,
        form {
            height: 100%;
            width: 100%;
            margin: 0px;
            padding: 0px;
        }
 
        .header {
            width: 100%;
            height: 20px;
            background: blue;
            color: white;
        }
 
        .menu {
            width: 100%;
            height: 20px;
            background: black;
            color: white;
        }
 
        .footer {
            height: 20px;
            width: 100%;
            background: blue;
            color: white;
            position: absolute;
            bottom: 0;
        }
    </style>
 
 
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server" EnableTheming="True">
        </telerik:RadScriptManager>
 
        <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
            <AjaxSettings>
             <telerik:AjaxSetting AjaxControlID="RadGrid1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="LatePanel"  LoadingPanelID="RadAjaxLoadingPanel1"/>
                </UpdatedControls>
            </telerik:AjaxSetting>
          </AjaxSettings>
        </telerik:RadAjaxManager>
 
        <div class="header">Header</div>
 
        <div class="menu">Menu</div>
 
      <asp:Panel ID="LatePanel" runat="server" Height="100%" Width="100%" >
      <telerik:RadSplitter runat="server" id="InnerSplitter" Orientation="Vertical" VisibleDuringInit="false" Width="100%" Height="100%" HeightOffset="60">
 
              <telerik:RadPane ID="LeftMenuPane" runat="server" Scrolling="None" BackColor="SteelBlue" Width="27%"  >
                    right           
              </telerik:RadPane>
 
              <telerik:RadSplitBar runat="server" id="RadSplitBar4" />
         
              <telerik:RadPane ID="RightMenuPane" runat="server" Scrolling="None" BackColor="Tomato" >      
                           <%-- >>RADGRID--%>
                        <telerik:RadGrid ID="RadGrid1" Height="100%" runat="server" OnNeedDataSource="RadGrid1_NeedDataSource"
                            AllowSorting="true">
                        <ClientSettings EnablePostBackOnRowClick="true" EnableRowHoverStyle="true">
                            <Selecting AllowRowSelect="true" />
                            <Scrolling AllowScroll="True" UseStaticHeaders="True" />
                        </ClientSettings>
                            <MasterTableView Width="100%" TableLayout="Fixed" AutoGenerateColumns="false">
                                <Columns>
                                    <telerik:GridBoundColumn DataField="EmployeeID" HeaderText="EmployeeID"></telerik:GridBoundColumn>
                                    <telerik:GridBoundColumn DataField="LastName" HeaderText="LastName"></telerik:GridBoundColumn>
                                    <telerik:GridBoundColumn DataField="FirstName" HeaderText="FirstName"></telerik:GridBoundColumn>
                                    <telerik:GridBoundColumn DataField="Title" HeaderText="Title"></telerik:GridBoundColumn>
                                    <telerik:GridBoundColumn DataField="ReportsTo" HeaderText="ReportsTo"></telerik:GridBoundColumn>
                                </Columns>
                            </MasterTableView>
                            <ClientSettings>
                                <Scrolling AllowScroll="true" UseStaticHeaders="true" />
                            </ClientSettings>
                        </telerik:RadGrid>
                        <%-- <<RADGRID--%>
              </telerik:RadPane>
 
      </telerik:RadSplitter>
    </asp:Panel>
 
        <div class="footer">Footer</div>
 
    </form>
</body>
</html>

Vessy
Telerik team
 answered on 16 Feb 2015
1 answer
52 views
I know that the Express editions of the Visual IDEs don't support third-party extensions (but the controls can be manually added using the zip distribution) and I'm guessing this includes registering the "Creation and Configuration Wizard" but is there any documentation on how to replicate the wizard features manually?  I've found the "web.config Settings Overview", which seems to cover some of it but the wizard seems to provide a lot more functionality.

Cheers
Marin Bratanov
Telerik team
 answered on 16 Feb 2015
2 answers
435 views
Hi,

We have a RadGrid with the following configuration:

<telerik:RadGrid ID="Grid" runat="server"
       AutoGenerateColumns="false"
       Skin="Simple"
       AllowSorting="true"
       AllowFilteringByColumn="true"
       EnableHeaderContextMenu="true"
       EnableHeaderContextFilterMenu="true"
       OnNeedDataSource="Grid_NeedDataSource"
       OnItemDataBound="Grid_ItemDataBound"
       ViewStateMode="Disabled"
       AllowPaging="true" PageSize="500" AllowCustomPaging="true">

It has batch editing enabled, too.

It has about 30 columns, 20 of them are GridTemplateColumn with RadComboBox. When we have more than 100 rows, page load is very slow, and customer doesn't want us to have pagination.

Is there any way so we can speed up page load? It's a mandatory requirement for us.

Thanks in advance,

Alfonso
Pavlina
Telerik team
 answered on 16 Feb 2015
1 answer
91 views
We have been using the ReorderList for several years without any issue. No we are having clients say that it is not working in "OX Yosemite with Safari 8.0.3". They can drag the fields fine but when it is saved they revert to the initial order. Firefox on the OX Yosemite seems to work just fine. How do we get this fixed?
Dimitar
Telerik team
 answered on 16 Feb 2015
6 answers
92 views
Hi Team,

Please advise me how to use more than one (User) dictionary?

Thanks
Marin Bratanov
Telerik team
 answered on 16 Feb 2015
3 answers
152 views
I am wondering how I can color code individual cells based on data from a table in a RadPivotControl.  I do not want to color code the Totals rows or columns.  My row has the values Neonate, Infant, Child, and Adult.  My Columns are 2012, 2013, 2014.  The color code is based on a national average of mortality rates and can change from one year to the next.  So an expected value for a neonate in 2012 is between 1 and 2% while 2013 is 0.5-1.5%.  If my neonate mortality rate in 2012 is 2% then I am GREEN.  However if my mortality rate is 2% for 2013 then I am RED.  Please let me know the best method to accomplish this.

Owen
Eyup
Telerik team
 answered on 16 Feb 2015
3 answers
183 views
Hi Dears ,
im facing problem in RadNumericTextBox 
  problem is : RadNumericTextBox.Value or DbValue or Text is always null
  problems occours when i set the empty message in java script then try to get value of RadNumericTextBox  in Server side

Java Script Code :
rntbAutoBidValue.set_emptyMessage(Some Value );

then user insert values in  RadNumericTextBox
and what ever what user insert i always get null value
Server side Code :
rntbAutoBidValue.DbValue

i fix the probem in this Code 
on RadNumericTextBox  Control :
ClientEvents-OnValueChanged="Save"

Java Script Code
    // Solve problem in RadNumericTextBox
function Save(sender) {
var rntbAutoBidValue = $find("<%= rntbAutoBidValue.ClientID%>");
var Value = rntbAutoBidValue.get_value();
rntbAutoBidValue.set_emptyMessage(null);
}

if there flexible solution for this problem Kindly let me know
Regards ,,






Eyup
Telerik team
 answered on 16 Feb 2015
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?