Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
135 views
Hi,

When I load a page using the Office 2010 Blue skin if there is a radgrid and a radtreelist on it, they both use different text colours.  The grid uses the dark blue while the treelist uses black as the text colour.

I've had a quick look at other skins but they seem to use black on both.

Could these be aligned so that they match each other please?  

In the meantime I have used the following CSS to fix my issue.

.RadTreeList_Office2010Blue,
.RadTreeList_Office2010Blue .rtlHeader,
.RadTreeList_Office2010Blue .rtlHeader a
{
    color:#384e73 ! important;
}

Regards,

Jon
Jon
Top achievements
Rank 1
 answered on 17 Feb 2012
3 answers
180 views
Hi. I'm experiencing some display problems using a Scheduler control on an intranet page. In IE8, there's a 7px gap between the scheduler header and the table that contains the main scheduler appointment information (see screenshot 1). In Firefox 3.6, the same table is shifted around 90px right (see screenshot 2).

Using IE dev toolbar and Firebug, I've conclued the .rsContent div is positioned OK and that the problems arise with the child table being shifted down or right. I know the issue is being caused by global CSS rules in the intranet page style sheet interfering with the scheduler CSS settings but I'm really struggling to find out what's being overidden and causing the problems.

Is there any way I can insulate the Scheduler control from outside CSS 'interfernce' by wrapping it in a div with specific settings?
Regards, Ian
Jani
Top achievements
Rank 1
 answered on 17 Feb 2012
4 answers
126 views
I have a bunch of RADNumeric textboxes which use Access Keys
I put a tool tip in for the access keys
only problem - access keys need a shift key in Firefox
Alt + P is really Shift + Alt + P

any recommendation as to how / where to fix?
Elliott
Top achievements
Rank 2
 answered on 17 Feb 2012
3 answers
451 views
Hi,

I am having a RadGrid that has a CommandItemTemplate as described below :

<CommandItemTemplate>
 <asp:LinkButton runat="server" ID="lb_Button1" Visible="false">LinkButton1</asp:LinkButton>
<asp:LinkButton runat="server" ID="lb_Button2" Visible="false">LinkButton2</asp:LinkButton
</CommandItemTemplate>

OnRowSelect Client Event of the RadGrid, I want to enable/disable these Link Buttons. I want to achieve this using javascript.
Also, I tried setting : 
Visible='<%# rg_Alumni.SelectedItems.Count > 0 %>'
but it didn't work.
Please, help.

Thanks,
Anup
Richard
Top achievements
Rank 1
 answered on 17 Feb 2012
3 answers
233 views
I'm not sure I understand the potential uses of these properties.  They can take multiple values but I'm not sure how that is used by the control.  Are they to be used for multiple levels of self-referencing?  If so that would be nice and I'd like to see an example of that.  Currently I have to bind to data that has four levels in the hierarchy.  I am doing the work in the database to put results into a self-referencing ID-ParentID format.  I was hoping there was a way to tell the control that there were several levels of child-parent keys.  This appears like it might be the way but I haven't seen any examples.  Am I misinterpreting the uses of these properties?
Mira
Telerik team
 answered on 17 Feb 2012
7 answers
185 views
I am trying to make the RadMenu stretch to the width of the body of the page, however, when I change the width to 100%, the menu does stretch but the menu items disappear and the height of the menu become almost 0px. How do I set the width without this happening or is this a bug?
Richard
Top achievements
Rank 1
 answered on 17 Feb 2012
1 answer
151 views
Hi,
    How to get on drag/on drop event in Server side ? I need to update the time in database while drag and drop.
Plamen
Telerik team
 answered on 17 Feb 2012
6 answers
326 views
i having a rad grid with item template column consist of link button.i need to update the grid when i click the link button.

currently i am using radajaxmanger with ajax request function .but my grid doesnt get updated.
my code snippets are below
<telerik:RadGrid runat="server" ID="uxAlerts" OnItemCreated="uxAlerts_ItemCreated" OnNeedDataSource="uxAlerts_NeedDataSource"  OnItemDataBound="uxAlerts_OnItemDataBound" Skin="Simple" AllowPaging="True" AllowSorting="True"
                    CellSpacing="0" GridLines="Both" CssClass="Grid" AutoGenerateColumns="false"
                    ShowHeader="true">
                    <MasterTableView>
                        <Columns>
                            <telerik:GridBoundColumn DataField="Subject" HeaderText="Subject" HeaderStyle-HorizontalAlign="Left">
                            </telerik:GridBoundColumn>
                            <telerik:GridBoundColumn DataField="AssignedTo" HeaderText="Assigned To" HeaderStyle-HorizontalAlign="Left"
                                ItemStyle-Width="200px">
                            </telerik:GridBoundColumn>
                            <telerik:GridBoundColumn DataField="CreatedDate" HeaderText="Date/Time" ItemStyle-Width="100px"
                                ItemStyle-HorizontalAlign="Center" HeaderStyle-HorizontalAlign="Center">
                            </telerik:GridBoundColumn>
                            <telerik:GridTemplateColumn HeaderText="Action" ItemStyle-Width="100px" ItemStyle-HorizontalAlign="Center"
                                HeaderStyle-HorizontalAlign="Center">
                                <ItemTemplate>
                                    <asp:LinkButton ID="uxUnread"  runat="server" Text='<%# Bind("ReadStatus")%>'></asp:LinkButton>
                                    <asp:LinkButton ID="uxClose"  Text="Close"  runat="server"></asp:LinkButton>
                                </ItemTemplate>
                            </telerik:GridTemplateColumn>
                        </Columns>
                    </MasterTableView>
                </telerik:RadGrid>
<telerik:RadAjaxLoadingPanel runat="server" Skin="Default" ID="uxLoadingPanel" />
                    <telerik:RadAjaxManager ID="uxRadAjaxManager" runat="server" OnAjaxRequest="uxRadAjaxManager_AjaxRequest">
                        <AjaxSettings>
                            <telerik:AjaxSetting AjaxControlID="uxAlerts">
                                <UpdatedControls>
                                    <telerik:AjaxUpdatedControl ControlID="uxAlerts" LoadingPanelID="uxLoadingPanel" />
                                </UpdatedControls>
                            </telerik:AjaxSetting>
                        </AjaxSettings>
                    </telerik:RadAjaxManager>
and js func is

function CloseClick(index) {
            var ajaxManager = $find("<%= uxRadAjaxManager.ClientID %>");
               if (ajaxManager != null)
                {
                   ajaxManager.ajaxRequest(index);
               }

and cs func are
protected void uxAlerts_OnItemDataBound(object sender, GridItemEventArgs e)
        {

            if (e.Item is GridDataItem)
            {
                CaseAlert caseAlertDetails = e.Item.DataItem as CaseAlert;
                if (caseAlertDetails != null)
                {
                    GridDataItem dataItem = (GridDataItem)e.Item;
                    LinkButton rblHyperLink = (e.Item.FindControl("uxClose") as LinkButton);
 
                    string alertID = caseAlertDetails.Id.ToString();

                    rblHyperLink.OnClientClick = string.Format("return CloseClick('" + alertID + "');");


                }
            }
        }
protected void uxRadAjaxManager_AjaxRequest(object sender, AjaxRequestEventArgs e)
        {
            if (e.Argument != null)
            {
                //uxAlerts.DataSource = new List<CaseAlert>();
                //uxAlerts.DataBind();
          
                    
                }

            
        }

When i click close link button it works and it calls ajax request but i dnt find any loading panel working on grid and no update on grid
Casey
Top achievements
Rank 1
 answered on 17 Feb 2012
1 answer
110 views
I am using a RadTreeView control in RadPane. I have set Scrolling="None" in the pane which has my tree. I want the Tree to have height of its container pane. I have set RadTreeView height="100%" but it doesn't work. Also I have same problem for RadEditor not fitting in the RadPane.


HELP...
Plamen
Telerik team
 answered on 17 Feb 2012
2 answers
141 views
hi

I have attached a sample to show how the chinese characters in the resource is being cut off. The english text is fine.
It should be this 贵宾房 instead the top portion of the characters is cut off by about a few pixel.
How should i resolve this?
Plamen
Telerik team
 answered on 17 Feb 2012
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?