Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
488 views
Hi
     How can I hide filter icon of radgrid column. Can somebody share a solution.

thanks
RT
Princy
Top achievements
Rank 2
 answered on 14 May 2013
5 answers
1.4K+ views
All,

I appologize if this is in the wrong forum...please direct me to the correct one if it is. 
I have inherited a project from a former co-worker and am receiving the following error when I attempt to run the project:

Could not load file or assembly 'Telerik.WinControls.UI, Version=8.2.0.0, Culture=neutral, PublicKeyToken=<REMOVED for privacy> ' or one of its dependencies. The system cannot find the file specified.

Any help would be appreciated.

Andrey
Telerik team
 answered on 14 May 2013
0 answers
88 views
Telerik Embedded skins are not apply for radcontrols in IE. For that Some expert told to add a Radstylesheetmanager to combine stylesheet request into single one.

if i add radstylesheetmanager like this

 string telerikAssembly= typeof(RadGrid).Assembly.FullName;
                    RadStyleSheetManager stylesheet = new RadStyleSheetManager();
                    
                    StyleSheetReference css1 = new StyleSheetReference();
                    css1.Assembly = telerikAssembly;
                    css1.Name = "Telerik.Web.UI.Skins.Telerik.Grid.Telerik.css";
                    stylesheet.StyleSheets.Add(css1);

                    StyleSheetReference css2 = new StyleSheetReference();
                    css2.Assembly = telerikAssembly;
                    css2.Name = "Telerik.Web.UI.Skins.Office2007.Grid.Office2007.css";
                    stylesheet.StyleSheets.Add(css2);
                    
                    StyleSheetReference css3 = new StyleSheetReference();
                    css3.Assembly = telerikAssembly;
                    css3.Name = "Telerik.Web.UI.Skins.Black.Grid.Black.css";
                    stylesheet.StyleSheets.Add(css3);
                    this.Page.Header.Controls.Add(stylesheet);



it doesn't work.
how can i solve this issue please help me to solve this issue.
Achuthan
Top achievements
Rank 1
 asked on 14 May 2013
1 answer
143 views

I'm having an issue where the autocomplete box is not working on Chrome for Android (Galaxy S4) - I can browse to the auto complete demo on demos.telerik.com and the box appears to work properly, pops up the demo data, autocompletes, etc.  When I try to place a control on my page and navigate with the same device, the control doesn't pop up with any data, nor does it appear to fire the OnTextChanged event.  The page does work in IE on the desktop, pops up the data, fires the event, works normally.  What am I missing?

Is there a better control for use in on a mobile page? 

Here's my page code

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %>
  
<!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>
    <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server" />
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        <Scripts>
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
        </Scripts>
    </telerik:RadScriptManager>
    <script type="text/javascript">
        //Put your JavaScript code here.
    </script>
    <telerik:RadAjaxManager runat="server">
    </telerik:RadAjaxManager>
    <div>
        <telerik:RadAutoCompleteBox ID="RadAutoCompleteBox1" runat="server" InputType="Text"
            DataSourceID="SqlDataSource1" DataValueField="item_id" DataTextField="item_id"
            Filter="StartsWith" Skin="BlackMetroTouch" OnTextChanged="RadAutoCompleteBox1_TextChanged"
            DropDownHeight="1000px" DropDownPosition="Automatic" DropDownWidth="1000px">
        </telerik:RadAutoCompleteBox>
          
        <telerik:RadAutoCompleteBox runat="server" ID="RadAutoCompleteBox2" EmptyMessage="Please type here"
            DataSourceID="SqlDataSource1" DataTextField="item_id" InputType="Text" Width="280"
            DropDownWidth="280">
        </telerik:RadAutoCompleteBox>
  
        <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="connection-string-here"
            SelectCommand="SELECT [item_id], [item_desc] FROM [ItemList] order by [item_id]">
        </asp:SqlDataSource>
    </div>
    </form>
</body>
</html>
Nencho
Telerik team
 answered on 14 May 2013
1 answer
98 views
I have a page that contains a variable number of TreeView objects lined up horizontally, with the TreeView objects being created during Page_Init. The structure is like this:

<div style="overflow:auto">
    <RadAjaxPanel>
        <asp:Table>
            <asp:TableRow>
                 [ one asp:TableCell object per tree to be displayed ]
            </asp:TableRow>
        </asp:table>
    </RadAjaxPanel>
</div>


Each RadTreeView uses a NodeTemplate to customize its display, as each node may contain various combinations of text and graphics. All of this works very well and displays correctly. I assign an ID to an element inside one particular node (or to the node itself, using Node.Attributes("id") = "FixedValue"). Assigning the ID works fine, and all the TreeViews continue to display properly. The ID is set in ClientIDMode=Static.

The problem comes when I try to use window.location.hash to make the external div scroll to display the element that I assigned an ID to. On Internet Explorer 10, this works correctly. In Firefox 20 and Chrome 26, the first node in the tree containing the element to which I am scrolling is vertically offset, moving it up and partially out of the visible area of the div (each node contains up to three lines of text; the first line is pushed out of the visible area). The other RadTreeView objects continue to display correctly; only the one tree containing the scrolled-to object is vertically repositioned.

Any thoughts on what might be causing this display issue? All three browsers I've tested on have been on Windows.
Boyan Dimitrov
Telerik team
 answered on 14 May 2013
2 answers
134 views
Hi,

I am using the RadAjaxManager, but I keep getting this error as a YSOD. I got it once before and it was because I didn't have runat set to server on my form. But now I do. Here is my code:



<body>
    <form id="form1" runat="server">
      <telerik:RadAjaxManager  ID="RadAjaxManager1" EnableAJAX="true" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest">      
        <AjaxSettings>        
        <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
        <UpdatedControls>
        <telerik:AjaxUpdatedControl ControlID="RadGrid1" />
        </UpdatedControls>
        </telerik:AjaxSetting>
        </AjaxSettings>
        </telerik:RadAjaxManager>


    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>  
 
This seems correct to me. What am I missing?

Thanks
Rajinder Singh
Top achievements
Rank 1
 answered on 14 May 2013
1 answer
280 views
Hi,

How can I create a rad day object and add to the special days of Raddatepicker calendar from server code?

Thanks,
Freddy
Shinu
Top achievements
Rank 2
 answered on 14 May 2013
1 answer
64 views
I need to figure out a way to programmatically change the color of friday on every week to either red or green

That way at a glance people can see (based on their schedule) which fridays they have off that month.

i ONLY need this in month view. I have been racking my brain trying to figure it out for hours on end.
Please help.

I have tried the TimeSlotCreated event handler but apparently i'm not sure when that is actually fired off during the loading of the scheduler. I'm so lost.
Kate
Telerik team
 answered on 14 May 2013
1 answer
114 views
Hello Team,
                    I have a Rad Scheduler in a content page and Ribbon Bar in Master Page. And i am using localization in my project. As a part when i was trying to change the culture of scheduler and it works good for the first time. When i move to next tab of ribbon and when i come back to the tab having scheduler with arabic culture, the scheduler returns an error. I have attached the error page which i get. 
                     Please do post me a solution for the problem. 
Boyan Dimitrov
Telerik team
 answered on 14 May 2013
5 answers
282 views
Hi, 

After i update my project with telerik new dll version 2012.3.1205.35, below code is not working which was working good before.

function pageLoad() {
                var $ = $telerik.$;
                $(".RecurrenceEditor").children().each(function (i) {
                    if (i == 0) {
                        $($($(this).children()[0]).children()[0]).attr("checked", "checked");
                    }
                    else if (i == 1) {
                        this.style.display = "block";
                    }
                });               
            }

Now I am getting Weekly as default checked option.I want to check all first option as it was before.
Please reply fast.

Nehal
Boyan Dimitrov
Telerik team
 answered on 14 May 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?