Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
174 views

Hi,

 

   I'm having trouble viewing the bubble chart I developed which has bubbles that overlay. I am trying to find a way to scale these bubbles for better viewing (which can be done in excel bubble charts). Please suggest if there is any solution for this.

 

Thanks

MT

Vessy
Telerik team
 answered on 25 Nov 2015
8 answers
529 views
Hi,
I have a search form , in which user fills information.
Is is not compulsory to fill all the information, so whatever user has filled according to that i show the result in my RadGrid.

My query looks like this.

Dim connection As SqlConnection =
New SqlConnection(ConfigurationManager.ConnectionStrings("InductoServConnectionString").ToString())
            connection.Open()

            cmd = New SqlCommand("select * from tblServiceReports where " + Condition, connection)

            myReader = cmd.ExecuteReader()

            gdCstRecovery.DataSource = myReader

Here "condition" is a variable which contains parameters.

When radgrid shows the result, i try to export it using provided button Export to Excel in ExcelML format.
But excel is coming blank. No column or any data is present.
Please help. It is quite urgent.
   
Tom
Top achievements
Rank 1
 answered on 25 Nov 2015
3 answers
98 views
I want the default view to be 24 hours on the week view. I was told to set  : 

DayStartTime="00:00:00" DayEndTime="23:59:59"  


This works, when the page is loaded I now see the entire day. 

The problem now, if I create an appointment by click+dragging then hitting enter, I get a js error if I pass 4pm. 

If I click the link on the bottom "Show 24 hours..." I can drag past 4pm and it works fine. But I cant figure out how to get the "Show 24 hours..." view to be default. 


JS error when I drag past 4pm with DayStartTime="00:00:00" DayEndTime="23:59:59"   :

  1. Uncaught TypeError: Cannot call method 'get_rawIndex' of null
    1. b.Scheduler.WeekModel._getNextTimeSlotTelerik.Web.UI.WebResource.axd:5527
    2. b.Scheduler.WeekModel.getTimeSlotsBetweenTelerik.Web.UI.WebResource.axd:5522
    3. b.RadScheduler._updateRowSelectionTelerik.Web.UI.WebResource.axd:3918
    4. a.DayModel._processRowSelectionTelerik.Web.UI.WebResource.axd:5621
    5. b.RadScheduler._processRowSelectionTelerik.Web.UI.WebResource.axd:3914
    6. b.RadScheduler._onRowSelectionMouseMoveTelerik.Web.UI.WebResource.axd:3911
    7. g


I want to be able to click and drag past 4pm, in week view, while viewing all hours in the day



I just noticed now, when I drag past 4pm, it starts on the next day for some reason : screen shot http://imgur.com/qI9Yp 


Nencho
Telerik team
 answered on 25 Nov 2015
1 answer
77 views

Hello Team,

 Recently we have upgrade the telerik dll to 2015 version. after upgrade Rad grid edit is not working properly. the edit pop up is disabled not able to edit or close the popup. i have attached the screen shots and the aspx code. please help to solve the issue. Grid id is  :- ID="dgScenarioLineGrid"

 

<telerik:RadGrid ID="dgScenarioLineGrid" runat="server" Skin="Office2010Silver" AllowPaging="false"
                                                AllowSorting="false" GridLines="Vertical" OnItemCommand="dgScenarioLineGrid_ItemCommand"
                                                OnItemDataBound="dgScenarioLineGrid_ItemDataBound">
                                                <MasterTableView EditMode="PopUp" HorizontalAlign="NotSet" CommandItemDisplay="top"
                                                    CommandItemSettings-AddNewRecordText="Add New Scenario Line" AutoGenerateColumns="False"
                                                    CellPadding="1" DataKeyNames="SCL_ID">
                                                    <Columns>
                                                        <telerik:GridTemplateColumn HeaderStyle-Width="100px" UniqueName="CommandButtons"
                                                            HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Center">
                                                            <ItemTemplate>
                                                                <asp:ImageButton runat="server" ID="ImgEdit" CommandName="Edit" CommandArgument='<%# DataBinder.Eval(Container.DataItem, "SCL_ID")%>'
                                                                    ImageUrl="~/images/edit.png" ToolTip="Edit Scenario Line" />
                                                                &nbsp; &nbsp;
                                                                <asp:ImageButton runat="server" ID="ImgDelete" CommandName="Delete" CommandArgument='<%# DataBinder.Eval(Container.DataItem, "SCL_ID")%>'
                                                                    ImageUrl="~/images/delete.gif" ToolTip="Delete Scenario Line" />&nbsp; &nbsp;
                                                                <asp:ImageButton runat="server" ID="ImgSplit" CommandName="SPLIT" CommandArgument='<%# DataBinder.Eval(Container.DataItem, "SCL_ID")%>'
                                                                    ImageUrl="~/images/picto_cut16.gif" Width="15px" ToolTip="Split Scenario Line" />
                                                            </ItemTemplate>
                                                            <ItemStyle CssClass="MyImageButton" />
                                                        </telerik:GridTemplateColumn>
                                                        <telerik:GridTemplateColumn HeaderText="Analytical Nature" HeaderStyle-Width="200px"
                                                            ItemStyle-Width="200px">
                                                            <ItemTemplate>
                                                                <asp:Label ID="lbl_AnalyticName" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.NAT_NAME") %>'></asp:Label>
                                                            </ItemTemplate>
                                                        </telerik:GridTemplateColumn>
                                                        <telerik:GridTemplateColumn HeaderStyle-Width="80px" HeaderText="From K€">
                                                            <ItemTemplate>
                                                                <asp:Label ID="lbl_AmountFrom" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.SCL_AMOUNTFROM", "{0:N1}") %>'>
                                                                </asp:Label>
                                                            </ItemTemplate>
                                                        </telerik:GridTemplateColumn>
                                                        <telerik:GridTemplateColumn HeaderStyle-Width="80px" HeaderText="To K€">
                                                            <ItemTemplate>
                                                                <asp:Label ID="lbl_AmountTO" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.SCL_AMOUNTTO", "{0:N1}") %>'>
                                                                </asp:Label>
                                                            </ItemTemplate>
                                                        </telerik:GridTemplateColumn>
                                                        <telerik:GridTemplateColumn UniqueName="gtcRHLUHD" ItemStyle-HorizontalAlign="Center"
                                                            HeaderStyle-Width="100px" HeaderText="Requester Hierarchic Line until head of dpt.">
                                                            <ItemTemplate>
                                                                <asp:Label ID="Label12" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.HIERARCHIC") %>'>
                                                                </asp:Label>
                                                            </ItemTemplate>
                                                        </telerik:GridTemplateColumn>
                                                        <telerik:GridTemplateColumn HeaderText="Analytical Nature" Visible="False">
                                                            <EditItemTemplate>
                                                                <telerik:RadComboBox Font-Names="Arial Unicode MS" ID="cmbAnalNat" ZIndex="100001"
                                                                    runat="server" ForeColor="#32327F" Width="235px" Height="200px" Skin="Outlook">
                                                                </telerik:RadComboBox>
                                                            </EditItemTemplate>
                                                        </telerik:GridTemplateColumn>
                                                        <telerik:GridTemplateColumn HeaderText="From K€" Visible="False" UniqueName="FromAmount">
                                                            <EditItemTemplate>
                                                                <asp:TextBox ID="txtFrom" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.SCL_AMOUNTFROM", "{0:N1}") %>'></asp:TextBox>
                                                            </EditItemTemplate>
                                                        </telerik:GridTemplateColumn>
                                                        <telerik:GridTemplateColumn HeaderText="To K€" Visible="False" UniqueName="ToAmount">
                                                            <EditItemTemplate>
                                                                <asp:TextBox ID="txtTo" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.SCL_AMOUNTTO", "{0:N1}") %>'></asp:TextBox>
                                                            </EditItemTemplate>
                                                        </telerik:GridTemplateColumn>
                                                        <telerik:GridTemplateColumn HeaderText="Requester Hierarchic Line until head of dpt."
                                                            UniqueName="reqhier" Visible="False">
                                                            <EditItemTemplate>
                                                                <asp:CheckBox ID="chkreqhier" runat="server" Checked='<%# Convert.ToString(DataBinder.Eval(Container, "DataItem.HIERARCHIC"))=="X"  %>' />
                                                            </EditItemTemplate>
                                                        </telerik:GridTemplateColumn>
                                                    </Columns>
                                                    <EditFormSettings ColumnNumber="2" PopUpSettings-Modal="true" PopUpSettings-ScrollBars="Auto"
                                                        PopUpSettings-ZIndex="7001" PopUpSettings-Width="500px">
                                                        <FormTableItemStyle Wrap="False"></FormTableItemStyle>
                                                        <FormCaptionStyle CssClass="EditFormHeader"></FormCaptionStyle>
                                                        <FormMainTableStyle GridLines="None" CellSpacing="0" CellPadding="3" Width="95%" />
                                                        <FormTableStyle GridLines="Horizontal" CellSpacing="0" CellPadding="2" CssClass="module"
                                                            Height="110px" Width="95%" />
                                                        <FormTableAlternatingItemStyle Wrap="False"></FormTableAlternatingItemStyle>
                                                        <FormStyle BackColor="#eef2ea"></FormStyle>
                                                        <EditColumn ButtonType="ImageButton" UpdateImageUrl="~/images/Save.png" EditImageUrl="images/Edit.png"
                                                            InsertImageUrl="~/images/Save.png" CancelImageUrl="~/images/Cancel.gif" InsertText="Add Scenario Line"
                                                            UpdateText="Update Scenario Line" UniqueName="EditCommandColumn1" CancelText="Cancel edit">
                                                        </EditColumn>
                                                        <FormTableButtonRowStyle HorizontalAlign="Left" VerticalAlign="Top" CssClass="EditFormButtonRow">
                                                        </FormTableButtonRowStyle>
                                                    </EditFormSettings>
                                                </MasterTableView>
                                                <ClientSettings>
                                                    <ClientEvents OnPopUpShowing="PopUpShowing" />
                                                </ClientSettings>
                                            </telerik:RadGrid>

 

<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
        <script type="text/javascript" id="telerikClientEvents1">


            var popUp;
            function PopUpShowing(sender, eventArgs) {
                popUp = eventArgs.get_popUp();
                var gridWidth = sender.get_element().offsetWidth;
                var gridHeight = sender.get_element().offsetHeight;
                var popUpWidth = popUp.style.width.substr(0, popUp.style.width.indexOf("px"));
                var popUpHeight = popUp.style.height.substr(0, popUp.style.height.indexOf("px"));
                popUp.style.left = ((gridWidth - popUpWidth) / 2 + sender.get_element().offsetLeft).toString() + "px";
                popUp.style.top = ((gridHeight - popUpHeight) / 2 + sender.get_element().offsetTop).toString() + "px";
            } 
                           
        </script>
    </telerik:RadCodeBlock>

Maria Ilieva
Telerik team
 answered on 25 Nov 2015
3 answers
123 views

I have a form, on it I have two sets of Radio Button Lists, each set has AutoPostBack set to true and an event on OnSelectedIndexChanged.  The goal is to have the grid show different sets of data depending on what the user selects from the Radio Buttons.  The first RBL is either forms entered by the user or all, the second is all, complete or incomplete forms.  By default, I have set the RBL's to have "My" selected and "Incomplete".  When a user changes an RBL, the grid is refreshed with appropriate data, however if the user re-selects back to the default item, no postback happens.  If I remove the AjaxManager from the page, it works, but the whole page refreshes, not just the grid.  How can I make it work with the AjaxManager so no matter what is checked, the grid refreshes it's data.

Here is the AjaxManager code I have:

<telerik:RadAjaxManager runat="server" ID="radAjaxManager" EnableAJAX="True">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="radSafetyForms">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="radSafetyForms" LoadingPanelID="radLpSafetyForms" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="rblScope">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="radSafetyForms" LoadingPanelID="radLpSafetyForms" />
            </UpdatedControls>
        </telerik:AjaxSetting>
        <telerik:AjaxSetting AjaxControlID="rblComplete">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="radSafetyForms" LoadingPanelID="radLpSafetyForms" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>

I'm not sure if I have the AjaxManager configured correctly or not. 

 

 

Maria Ilieva
Telerik team
 answered on 25 Nov 2015
1 answer
158 views

Hi,

 I have a RadTreeList each node has a sort order that comes from the database, that is relative to the parent. (Sort order is part of the object the RadTreeList is bound to).  How can I sort the RadTreeList using this sort order? Simply using an 'ORDER BY' clause on the Database query doesn't work because the sort order isn't universal for the tree it's only relative to it's parent. I want to sort the children of each individual node. 

 I saw these help article relating to the RadTreeView:

http://www.telerik.com/forums/how-to-sort-child-nodes-of-a-node

&

http://www.telerik.com/support/kb/aspnet-ajax/details/sorting-treenodes

 Does it work similarly for the RadTreeList - can I write a compare class that compares the sort order of the two given TreeListDataItems and it will work? (Hasn't so far for me, but I could be missing something). Is there any way to implement this simply by manipulating the entries for the ParentDataKeyNames/DataKeyNames or adding multiple entries? I tried making the DataKeyNames Sort Order, but that fails to bind.

I basically just want to use the Sort Order to sort all child nodes of each particular node, instead of just sorting by DataKeyName (AttributeId in this case). 

Thanks much,

Craig

 If it helps here is the RadTreeList in question.

<telerik:RadTreeList ID="rtlCopsAttributes" runat="server" OnNeedDataSource="rtlCopsAttributes_NeedDataSource" AutoGenerateColumns="false"
    ParentDataKeyNames="ParentId" DataKeyNames="AttributeId" AllowMultiItemSelection="true" AllowPaging="false" AllowSorting="false"
    OnItemDataBound="rtlCopsAttributes_ItemDataBound" Height="800px" Width="500px" AllowRecursiveSelection="true" AllowRecursiveDelete="true">
<Columns>
    <telerik:TreeListBoundColumn DataField="AttributeId" UniqueName="AttributeId" HeaderText="Id" Display="false" />
    <telerik:TreeListBoundColumn DataField="SortOrder" UniqueName="SortOrder" HeaderText="Sort Order" Display="false" />
    <telerik:TreeListBoundColumn DataField="Description" UniqueName="Description" HeaderText="Description" Display="false" />
    <telerik:TreeListBoundColumn DataField="ParentName" UniqueName="ParentName" HeaderText="Parent Name" Display="false" />
    <telerik:TreeListCheckBoxColumn DataField="HasChildren" UniqueName="HasChildren" HeaderText="Has Children" Display="false" />
    <telerik:TreeListCheckBoxColumn DataField="IsRequired" UniqueName="IsRequired" HeaderText="Is Required" Display="false"/>                                                                        
    <telerik:TreeListBoundColumn DataField="ParentId" UniqueName="ParentId" HeaderText="Parent Id" Display="false" />
    <telerik:TreeListBoundColumn DataField="Name" UniqueName="AttributeName" HeaderText="Name" />
    <telerik:TreeListCheckBoxColumn DataField="IsDefault" UniqueName="IsDefault" HeaderText="Default" HeaderStyle-Width="50px" ItemStyle-Width="50px" />
    <telerik:TreeListTemplateColumn HeaderText="Include" HeaderStyle-Width="50px" ItemStyle-Width="50px">
        <ItemTemplate>
            <asp:CheckBox ID="cboxExplicitInclude" runat="server" AutoPostBack="true" OnCheckedChanged="cboxExplicitInclude_CheckedChanged" />
         </ItemTemplate>
    </telerik:TreeListTemplateColumn>
    <telerik:TreeListTemplateColumn HeaderText="Exclude" HeaderStyle-Width="50px" ItemStyle-Width="50px">
        <ItemTemplate>
            <asp:CheckBox ID="cboxExplicitExclude" runat="server" AutoPostBack="true" OnCheckedChanged="cboxExplicitExclude_CheckedChanged" />
         </ItemTemplate>
    </telerik:TreeListTemplateColumn>
</Columns>
    <ClientSettings>
        <Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="true" ScrollHeight="520px" />
    </ClientSettings>
</telerik:RadTreeList>

 

Viktor Tachev
Telerik team
 answered on 25 Nov 2015
1 answer
662 views

I've RadGrid where I want to add a column dynamically so I've done something like this in page load

               GridTemplateColumn gtc = new GridTemplateColumn();
                gtc.DataField = "chqNumber";
                gtc.HeaderText = "Cheque Number";
                gtc.UniqueName = "chqNumber";
                RadGrid1.MasterTableView.Columns.Add(gtc);        

It work fine, now I want to add textbox in this column as the user click "+add new record" on grid here is my code of itemCreated event 

                            GridEditableItem gdit = (GridEditableItem)e.Item;
                            RadTextBox txtBox = new RadTextBox();
                            txtBox.ID = "someIDWhatEver";

                            gdit["chqNumber"].Controls.Add(txtBox);

but this textbox gets added to another new column what I mean is this textbox does not added to same chqNumber column you can view my attached image which will illustrate better

as you can see my dynamic column gets added at the last even after insert and cancel button and dynamic textbox doesn't gets in this column please avoid my english grammatical mistakes :P

 

Eyup
Telerik team
 answered on 25 Nov 2015
4 answers
272 views

As part our product development, we have created a RADCOMBO skin. When we apply this skin to the telerik combobox, it’s not showing down arrow as expected on IE. (See the picture attached) But the same works on Chrome / FireFox.

As part of troubleshooting, we isolated this skin to a clear vanilla ASP.NET web project & test page which has only telerik combobox having this skin applied and checked. It works..! But when we apply same skin inside our project, arrow is not showing on the IE . For further troubleshooting inside our project,  we copied the test page that has only Radcombo applied with this skin, but no luck. We have used the same CSS in the isolation project that is in our main project, still doesn't show in our project in IE. Any explanation or guesses at what's happening?

Here is the code

WebForm:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Telerik_Test.WebForm1" %>
 
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<!DOCTYPE html>
 
<head runat="server">
    <title></title>
     
    <link rel="stylesheet" type="text/css" href="/Branding2015/CSS/Telerik_Skins/ComboBox.evalueBC.css" />
    
 
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <asp:ScriptManager ID="ScriptManager1" runat="server">
            </asp:ScriptManager>
             
                <telerik:RadComboBox ID="rcboStatReportTypes" runat="server" Width="250" MaxHeight="300" AutoPostBack="true" Skin="evalueBC" EnableEmbeddedSkins="false" />
             
        </div>
    </form>
</body>
</html>

 

CSS:

 

.RadComboBox_evalueBC
{
    color:#000;font-size:12px;font-family:"Segoe UI",Arial,Helvetica,sans-serif
 
}
.RadComboBox_evalueBC .rcbInputCell,.RadComboBox_evalueBC .rcbArrowCell{
    height:20px;border-width:1px;border-style:solid
 
}
.RadComboBox_evalueBC table td.rcbInputCell,.RadComboBox_evalueBC table td.rcbArrowCell{border-width:1px}
.RadComboBox_evalueBC .rcbInputCell{border-color:#e5e5e5;color:#000;background-color:#fff}
.RadComboBox_evalueBC table td.rcbInputCellLeft{border-right-width:0}
.RadComboBox_evalueBC table td.rcbInputCellRight{border-left-width:0}
.RadComboBox_evalueBC .rcbInput{height:17px;color:#000;font-size:12px;font-family:"Segoe UI",Arial,Helvetica,sans-serif;line-height:16px}
.RadComboBox_evalueBC .rcbEmptyMessage{color:#bbb}.RadComboBox_evalueBC .rcbArrowCell{border-color:#e5e5e5;color:#000;background-color:#f9f9f9}                                                 
.RadComboBox_evalueBC .rcbArrowCell a{width:16px;height:20px;background-image:url('Common/radActionsSprite.png');background-position:-2px -20px;background-repeat:no-repeat}
.RadComboBox_evalueBC .rcbArrowCellHidden,.RadComboBox_evalueBC .rcbArrowCellHidden a{width:0}.RadComboBox_evalueBC .rcbArrowCellHidden.rcbArrowCellLeft{border-right-width:0}
.RadComboBox_evalueBC .rcbArrowCellHidden.rcbArrowCellRight{border-left-width:0}
                                                                                               
.RadComboBox_evalueBC .rcbReadOnly .rcbArrowCellLeft{border-right-width:0}                                                                                            
.RadComboBox_evalueBC .rcbReadOnly .rcbArrowCellRight{border-left-width:0}
.RadComboBox_evalueBC .rcbHovered .rcbInputCell{border-color:#e5e5e5;color:#000;background-color:#fff}
.RadComboBox_evalueBC .rcbHovered .rcbInput{color:#000}
.RadComboBox_evalueBC .rcbHovered .rcbArrowCell{border-color:#e5e5e5;color:#000;background-color:#e5e5e5}
.RadComboBox_evalueBC .rcbHovered .rcbArrowCell a{background-position:-2px -20px}
.RadComboBox_evalueBC .rcbFocused .rcbInputCell{border-color:#25a0da;color:#000;background-color:#fff}
.RadComboBox_evalueBC .rcbFocused .rcbInput{color:#000}
.RadComboBox_evalueBC .rcbFocused .rcbArrowCell{border-color:#25a0da;color:#fff;background-color:#25a0da}
.RadComboBox_evalueBC .rcbFocused .rcbArrowCell a{background-position:-42px -20px}
.RadComboBox_evalueBC .rcbReadOnly .rcbInputCell{border-color:#e5e5e5;background-color:#f9f9f9;color:#000}
.RadComboBox_evalueBC .rcbReadOnly .rcbInput{color:#000}
.RadComboBox_evalueBC .rcbHovered .rcbReadOnly .rcbInputCell{border-color:#e5e5e5;color:#000;background-color:#e5e5e5}
.RadComboBox_evalueBC .rcbHovered .rcbReadOnly .rcbInput{color:#000}
.RadComboBox_evalueBC .rcbFocused .rcbReadOnly .rcbInputCell{border-color:#25a0da;color:#fff;background-color:#25a0da}
.RadComboBox_evalueBC .rcbFocused .rcbReadOnly .rcbInput{color:#fff}
.RadComboBoxDropDown_evalueBC{border-color:#cdcdcd;color:#000;background-color:#fff;font-size:12px;font-family:"Segoe UI",Arial,Helvetica,sans-serif}
.RadComboBoxDropDown_evalueBC .rcbHeader,.RadComboBoxDropDown_evalueBC .rcbFooter{color:#000;background-color:#e8e8e8}
.RadComboBoxDropDown_evalueBC .rcbHeader{border-bottom-color:#e5e5e5}.RadComboBoxDropDown_evalueBC .rcbFooter{border-top-color:#e5e5e5}
.RadComboBoxDropDown_evalueBC .rcbHovered{color:#000;background-color:#e8e8e8}
.RadComboBoxDropDown_evalueBC .rcbSelected{color:#fff;background-color:#25a0da}
.RadComboBoxDropDown_evalueBC .rcbLoading{color:#000;background-color:#e8e8e8}
.RadComboBoxDropDown_evalueBC .rcbItem em{color:#000;background-color:#e8e8e8}
.RadComboBoxDropDown_evalueBC .rcbCheckAllItems{border-color:#e5e5e5;color:#000;background-color:#e8e8e8}
.RadComboBoxDropDown_evalueBC .rcbMoreResults{border-color:#e5e5e5;color:#000;background-color:#e8e8e8}
.RadComboBoxDropDown_evalueBC .rcbSeparator{color:#fff;background:#e8e8e8}
 
 div.RadComboBox_evalueBC .rcbInputCell {
 
    background-color: rgb(234, 234, 234);
 
}
 
 div.RadComboBox_evalueBC .rcbArrowCell {
 
    background-image: none;
 
    background-color: rgb(237, 237, 237);
 
    background-repeat: no-repeat;
 
}
 
 div.RadComboBox_evalueBC .rcbFocused .rcbInputCell {
 
    border-color: rgb(7, 129, 154);
 
    background-color: rgb(7, 129, 154);
 
}
 
 div.RadComboBox_evalueBC .rcbFocused .rcbInput {
 
    color: rgb(255, 255, 255);
 
}
 
 div.RadComboBox_evalueBC .rcbFocused .rcbArrowCell {
 
    background-color: rgb(7, 129, 154);
 
}

Thanks much,

Craig

Nencho
Telerik team
 answered on 25 Nov 2015
1 answer
153 views

Hi,

I'd like to change the mouse cursor when doing drag and drop on the org chart - there are three states that I use with other controls on my page: hover, drag/nodrag, drop. I can't see any event to hook into though to control the cursor, is such a thing available?

 

Plamen
Telerik team
 answered on 25 Nov 2015
1 answer
163 views

Hello,

 

I am with problem to configuration of resx files to the RadNotification. In addition to creating the resx file, some other configuration is necessary?

Marin Bratanov
Telerik team
 answered on 25 Nov 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?