My problem realated with Office2007 Custom Style.I created my custom skin from default Office2007 css files.
And I changed Alternative row backcolor from html.But When I select row.Problem with background color.In
white rows there is no problem.How can I redesign css file.Please look image what is my problem
I have changed just
.RadGrid_MyCustomSkin
.rgRow td ,
.RadGrid_MyCustomSkin
.rgAltRow
td
{
border-color:#d0d7e5 ;
border-width:0px ;
padding: 0 !important
; }
<telerik:RadGrid ID="grdGidis" Width="720px" Skin="MyCustomSkin" AlternatingItemStyle-BackColor="#F2F2F2" EnableEmbeddedSkins="false" Height="720px" runat="server" AutoGenerateColumns="False" OnItemCommand="grdGidis_ItemCommand"> <MasterTableView TableLayout="Fixed" DataKeyNames="UcusID,D_UcusID"> <NoRecordsTemplate> Sefer Bulunamadı... </NoRecordsTemplate> <Columns> <telerik:GridTemplateColumn ItemStyle-VerticalAlign="Middle" UniqueName="HavayoluLogo"> <HeaderTemplate> Header... </HeaderTemplate> <ItemTemplate> Items... </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> <PagerStyle Mode="NumericPages"></PagerStyle> <ClientSettings EnableRowHoverStyle="true" AllowRowsDragDrop="false" Selecting-AllowRowSelect="true" AllowColumnsReorder="False"> <Resizing AllowRowResize="False" EnableRealTimeResize="False" ResizeGridOnColumnResize="False" AllowColumnResize="False"></Resizing> <Selecting AllowRowSelect="false" /> <Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="true" /> </ClientSettings> </telerik:RadGrid>
<div id="Main_gob_CustomForm3_gob_ctl04_BGColorThumb_label" title="Background Color (Current Color is #FFFFFF)" class="rcpIcon"><a href="#">Background Color</a><em id="Main_gob_CustomForm3_gob_ctl04_BGColorThumb_icon" style="background-color:#FFFFFF;">(Current Color is #FFFFFF)</em></div><div id="Main_gob_CustomForm3_gob_ctl04_ctl11" class="RadSlider RadSlider_Default" style="position:absolute;top:-9999px;height:22px;width:200px;">I am relatively knew to the Telerik controls but have been a developer for several years. I want to implement a load on demand combo box for my newest project(well several really), the control will load from a page method. I got the control to load initially, but as you type the dropdown just bounces a little without narrowing the search or showing any type of error. Below is the code that is currently being used for the control, and page method.
private const int ItemsPerRequest = 20;
[WebMethod]
public static RadComboBoxData GetContributors(RadComboBoxContext context)
{
DataTable data = GetContributors();
RadComboBoxData comboData = new RadComboBoxData();
int itemOffset = context.NumberOfItems;
int endOffSet = Math.Min(itemOffset + ItemsPerRequest, data.Rows.Count);
comboData.EndOfItems = endOffSet == data.Rows.Count;
List<RadComboBoxItemData> results = new List<RadComboBoxItemData>(endOffSet - itemOffset);
for (int i = itemOffset; i < endOffSet; i++)
{
RadComboBoxItemData itemData = new RadComboBoxItemData();
itemData.Text = data.Rows[i]["Contributor"].ToString();
itemData.Value = data.Rows[i]["ContributorID"].ToString();
results.Add(itemData);
}
comboData.Message = GetStatusMessage(endOffSet, data.Rows.Count);
comboData.Items = results.ToArray();
return comboData;
}
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" /> <div style="display: none;"> <telerik:RadEditor runat="server" ID="MasterEditor" SkinID="DefaultSetOfTools" EnableViewState="false" Height="100px" ContentAreaMode="Div"> <Tools> <telerik:EditorToolGroup DockingZone="divToolbar"> <telerik:EditorTool Name="Bold" /> <telerik:EditorTool Name="Italic" /> <telerik:EditorTool Name="Underline" /> <telerik:EditorSplitButton Name="ForeColor" /> </telerik:EditorToolGroup> </Tools> </telerik:RadEditor> </div> <div id="divToolbar" style="background-color: Silver; height: 100px;"> </div> <div> <telerik:RadEditor ID="RadEditor1" runat="server" ToolProviderID="MasterEditor" Height="50" Width="100" ContentAreaMode="Div" EditModes="Design" EnableViewState="false" BorderStyle="None" AutoResizeHeight="True" OnClientLoad="RadEditorLoad" /> </div> <div> <telerik:RadEditor ID="RadEditor2" runat="server" ToolProviderID="MasterEditor" Height="50" Width="100" ContentAreaMode="Div" EditModes="Design" EnableViewState="false" BorderStyle="None" AutoResizeHeight="True" OnClientLoad="RadEditorLoad" /> </div> <script type="text/javascript"> function RadEditorLoad(editor, args) { editor.removeShortCut("InsertTab"); } </script><telerik:RadContextMenu ID="grdContextMenu" runat="server" EnableRoundedCorners="true" EnableShadows="true" OnClientItemPopulating="FetchUserList_Pre" EnableAutoScroll="true" OnClientItemPopulationFailed="ServiceFailure" > <WebServiceSettings Path="../Services/TimeSchedule.asmx" Method="FetchUserList" /> <LoadingStatusTemplate> <div style="padding-top:100px;text-align:right;width:120px;float:left;"> <asp:Image runat="server" ID="LoadingImage" ImageUrl="../Images/Working.gif" ToolTip="Loading..." Width="50px" Height="50px" /> <br /> Loading Users... </span> </LoadingStatusTemplate> <Items> <telerik:RadMenuItem Text="Add" ToolTip="Add a new record" /> <telerik:RadMenuItem Text="Delete" ToolTip="Delete this record"/> <telerik:RadMenuItem Text="Copy To Day" ToolTip="Copy this shift to the selected day" GroupSettings-Height="165" GroupSettings-ExpandDirection="Auto" > <Items> <telerik:RadMenuItem Text="Sunday" Value="Sunday"></telerik:RadMenuItem> <telerik:RadMenuItem Text="Monday" Value="Monday"></telerik:RadMenuItem> <telerik:RadMenuItem Text="Tuesday" Value="Tuesday"></telerik:RadMenuItem> <telerik:RadMenuItem Text="Wednesday" Value="Wednesday"></telerik:RadMenuItem> <telerik:RadMenuItem Text="Thursday" Value="Thursday"></telerik:RadMenuItem> <telerik:RadMenuItem Text="Friday" Value="Friday"></telerik:RadMenuItem> <telerik:RadMenuItem Text="Saturday" Value="Saturday"></telerik:RadMenuItem> </Items> </telerik:RadMenuItem> <telerik:RadMenuItem Text="Copy Shift (Open)" ToolTip="Copy this shift as open or to another user" GroupSettings-Height="250" GroupSettings-Width="200" GroupSettings-ExpandDirection="Auto" ExpandMode="WebService" > </telerik:RadMenuItem> </Items> </telerik:RadContextMenu>