Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
88 views
Hi,

I have problem with loadcontrol also.
If I load control on server side:
Control userControl = LoadControl("usercontrols/result/resultgrid.ascx");
myDock.ContentContainer.Controls.Add(userControl); 

I have problem with client script on RadGrid. Some client ajax function are not ok (paging, page size, grouping, I see ajax load image only first time then only when refresh pages...).
I I load control as <uc1:ResultGrid ID="ResultGrid1" runat="server" /> all is OK.
But I need add control dynamically :(

Inside my usercontrol I have only RadGrid

<div> 
<telerik:RadAjaxManager ID="radAjaxManager1" runat="server"
    <AjaxSettings> 
        <telerik:AjaxSetting AjaxControlID="grdResult"
            <UpdatedControls> 
                <telerik:AjaxUpdatedControl ControlID="grdResult" LoadingPanelID="radAjaxLoadingPanel1"/> 
            </UpdatedControls> 
        </telerik:AjaxSetting> 
    </AjaxSettings> 
</telerik:RadAjaxManager> 
<telerik:RadAjaxLoadingPanel ID="radAjaxLoadingPanel1" runat="server" Transparency="5"
</telerik:RadAjaxLoadingPanel> 
</div> 
 
<asp:Panel ID="panelView1" runat="server"
 
<telerik:RadAjaxPanel ID="radAjaxPanel1" runat="server"
    
    <telerik:RadGrid ID="grdResult" runat="server" AllowPaging="True" PageSize="15" 
            ShowGroupPanel="True" GridLines="None" onitemdatabound="grdResult_ItemDataBound" 
            AllowSorting="True" RegisterWithScriptManager="true" onneeddatasource="grdResult_NeedDataSource"
        <PagerStyle Mode="NumericPages"></PagerStyle> 
        <ClientSettings AllowDragToGroup="True"
            <DataBinding EnableCaching="true" /> 
            <Selecting AllowRowSelect="true" /> 
            <ClientEvents/> 
        </ClientSettings> 
        <GroupingSettings ShowUnGroupButton="true" /> 
    </telerik:RadGrid> 
 
</telerik:RadAjaxPanel> 
 
</asp:Panel> 

Thanks for answer.

Regards
Roman Krsko

Pavlina
Telerik team
 answered on 02 Apr 2010
3 answers
110 views

In  RadPanelBar1_ItemDataBound event I create a redtreeview (at runtime)

Dim item_TreeView As New RadTreeView

item_TreeView.ID = "item_TreeView"

item_TreeView.DataSourceID = "ObjectDataSource2"

item_TreeView.DataFieldID = "IDCategory"

item_TreeView.DataFieldParentID = "IDParent"

item_TreeView.DataTextField = "Name"

item_TreeView.DataValueField = "IDCategory"

item_TreeView.Skin = "Default"

item_TreeView.ExpandAllNodes()

itemPanel.Controls.Add(item_TreeView)

----------------

My goal is to expand all tree nodes, despite this

item_TreeView.ExpandAllNodes()

it doesn’t happen, it remains collapsed

How can I do that?

Thank you so much

 

 

 

Veselin Vasilev
Telerik team
 answered on 02 Apr 2010
6 answers
231 views
Hey there,

We have a built an application that uses custom ASPX pages inside SharePoint. A few of our ASPX pages use the RadEditor control. We would like to turn on SpellCheck inside the RadEditor, but are running into problems getting this working inside SharePoint.

We can get the Spell Check toolbar button to be visible but when you click on the Spell Check button we see the label "Spell checking in progress..." but a javascript error is getting returned: Message: Sys.ArgumentException: Cannot deserialize. The data does not correspond to valid JSON. Parameter name: data

The en-US.tdf and Telerik.Web.UI.SpellCheckHandler.ashx exist in a folder inside the 12 hive folder. My guess is that we are not setting up the RadEditor with the two files mentioned above properly.

We also have added the following line to the web.config of the SharePoint folder in inetpub.

<add verb="*" validate="false" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI">

We are also setting some of the SpellCheckSettings of the RadEditor control:

SpellCheckSettings.AjaxUrl = "/_layouts/Telerik/Telerik.Web.UI.SpellCheckHandler.ashx"
SpellCheckSettings.DictionaryPath = "/_layouts/Telerik/en-US.tdf"

Can you see anything that is missing or incorrect? Or anything else you can suggest?

TIA,
C
Rumen
Telerik team
 answered on 02 Apr 2010
4 answers
299 views
I am fairly new to C# .NET and very new to Telerik controls so please forgive me if this is trivial.

I am having trouble getting the paging element to work for a RadGrid control.  Here is what I am doing: I read in a CVS file, parse it into a List<Dictionary<string,object>> and then add the data source to the RadGrid as such (omitting the code behind that creates the data).

                var data = ReadInCSVData(csvData); 
                var Idata = ConvertToIEnumerable(data); 
 
                RadGrid1.DataSource = Idata.ToDataSource(); 
                RadGrid1.DataBind(); 

Now, this works as far as when the page comes up I get the initial grid populated with data.  However, when I try to perform any of the paging (i.e. select a page to go to, or click on next page) I get errors on the web page and the callbacks never happen.  I have break points in every function and none of them ever get called.  The error in the browser (script error) is:

Sys.WebForms.PageRequestManagerServerErrorException: The state information is invalid for this page and might be corrupted.

I have googled this error without being able to find a solution.  I have been trying to follow the examples from the telerik site.  Here is my ASPX page:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs"  
    Inherits="BAPTFileUpload._Default" EnableEventValidation="false" ValidateRequest="false"%> 
 
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/tr/xhtml11/DTD/xhtml11.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"
<head></head
<body> 
    <form runat="server" id="mainForm" method="post"
        <h2>Table below</h2> 
        <br /> 
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server"  
            ondatabinding="Page_Load" /> 
        <!-- content start --> 
            <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"
                <AjaxSettings> 
                    <telerik:AjaxSetting AjaxControlID="RadGrid1"
                        <UpdatedControls> 
                            <telerik:AjaxUpdatedControl ControlID="RadGrid1" /> 
                        </UpdatedControls> 
                    </telerik:AjaxSetting> 
                </AjaxSettings> 
            </telerik:RadAjaxManager> 
            <telerik:RadGrid ID="RadGrid1" OnSortCommand="RadGrid1_SortCommand"  
                OnPageIndexChanged="RadGrid1_PageIndexChanged" Width="97%" AllowSorting="True"  
                PageSize="15" AllowPaging="True" AllowMultiRowSelection="True" runat="server"  
                Gridlines="None"  
            onselectedindexchanged="RadGrid1_SelectedIndexChanged"
                <MasterTableView Width="100%" Summary="RadGrid table" />     
                <PagerStyle Mode="NextPrevAndNumeric" /> 
            </telerik:RadGrid> 
    </form> 
</body> 
</html> 
 





Pavlina
Telerik team
 answered on 02 Apr 2010
1 answer
179 views
Hello,
I have a question about the Title property of the RadWindow.

On a master page, I've added a RadWindowManager, with a RadWindow inside. 
There is more than one page that is using this master, and depending of the current content page, the same popup displays different data (the popup content is ensured by other aspx pages, especially created for this).

I'm trying to set up a different title on the popup, depending of the current page of the master, with no luck. Because the aspx pages used in the popup are used in other parts of my site, I cannot set a title at design time on these pages (using Page.Title, or <head><title></title></head> tags).

Now I'm setting the title programmatically in the content page on Page_Load, like this:

myMasterPage.wndPopup.Title
 = "My Title";

, but this does not seem to work. I'm assuming this happens because this property gets overriden by the empty property on the popup pages (in the <head><title> tags)

Any suggestions are welcome.

Thanks


Tsvetie
Telerik team
 answered on 02 Apr 2010
1 answer
523 views
Hi all,

I thought I'd post this here, in case it helps anyone else who gets as stuck as I did with this! I am using RadControls for ASP.NET AJAX Q3 2009.

I have a RadGrid using Filtering (AllowFilteringByColumn="True" EnableLinqExpressions="false") and declarative data binding with ObjectDataSource. I have several GridTemplateColumns, the final one is bound to a bool property on a business object. All looks fine until I try to filter any of the columns - when I do, no records are returned and the grid is empty.

I tracked this down to enabling filtering on the GridTemplateColumn bound to the boolean property. If I enable fitering on this particular column, no columns will filter and I get no records at all.  If I disable filtering on this column (see code below), filtering on the other columns works fine!!!

Fixed GridTemplateColumn:
                <telerik:GridTemplateColumn HeaderText="Enabled" DataField="Enabled" UniqueName="Enabled" SortExpression="Enabled" InitializeTemplatesFirst="false" ForceExtractValue="Always" AllowFiltering="false">  
                    <ItemTemplate> 
                        <%# (Boolean.Parse(Eval("Enabled").ToString())) ? "Yes" : "No" %> 
                     </ItemTemplate> 
                     <EditItemTemplate> 
                        <asp:CheckBox ID="chkEnabled" runat="server" Text="Enabled" Checked='<%# Bind("Enabled")%>'></asp:CheckBox> 
                      </EditItemTemplate> 
                </telerik:GridTemplateColumn> 

If anyone know of a fix, it would be great, if not, I hope this helps someone else out.

Anthony
Pavlina
Telerik team
 answered on 02 Apr 2010
3 answers
127 views
i have a raddatepicker on a user control.. i used selecteddate.value but it return me null value. why is it so? i have a radcombobox and there is value when do a return. pls help.
Daniel
Telerik team
 answered on 02 Apr 2010
3 answers
169 views
Hey guys,

Please help me with formatting of the page size part of the grid! I'm using a custom skin, but the page size doesn't even show properly as you can see on the images and even pop up grid with number does not look good at all... Cheers!!

/*Telerik RadGrid Default Skin*/ 
 
/*global*/ 
 
.RadGrid_GridBannered  
{  
    background-position#fff;  
    border1px solid #828282;  
    background#ffffff;  
    color#000000;  
}  
 
.RadGrid_GridBannered,  
.RadGrid_GridBannered .rgMasterTable,  
.RadGrid_GridBannered .rgDetailTable,  
.RadGrid_GridBannered .rgGroupPanel table,  
.RadGrid_GridBannered .rgCommandRow table,  
.RadGrid_GridBannered .rgEditForm table,  
.RadGrid_GridBannered .rgPager table,  
.GridToolTip_GridBannered  
{  
    font:12px/16px arial,sans-serif;  
}  
 
.RadGrid_GridBannered .rgMasterTable,  
.RadGrid_GridBannered .rgDetailTable  
{  
    border-collapse:separate;  
}  
 
.RadGrid_GridBannered .rgRow,  
.RadGrid_GridBannered .rgAltRow,  
.RadGrid_GridBannered .rgHeader,  
.RadGrid_GridBannered .rgResizeCol,  
.RadGrid_GridBannered .rgPager,  
.RadGrid_GridBannered .rgGroupPanel,  
.RadGrid_GridBannered .rgGroupHeader  
{  
    cursor:default;  
}  
 
.RadGrid_GridBannered input[type="image"]  
{  
    cursor:pointer;  
}  
 
.RadGrid_GridBannered .rgRow td,  
.RadGrid_GridBannered .rgAltRow td,  
.RadGrid_GridBannered .rgEditRow td,  
.RadGrid_GridBannered .rgFooter td,  
.RadGrid_GridBannered .rgFilterRow td,  
.RadGrid_GridBannered .rgHeader,  
.RadGrid_GridBannered .rgResizeCol,  
.RadGrid_GridBannered .rgGroupHeader td  
{  
    padding-left:7px;  
    padding-right:7px;  
}  
 
.RadGrid_GridBannered .rgClipCells .rgHeader,  
.RadGrid_GridBannered .rgClipCells .rgRow>td,  
.RadGrid_GridBannered .rgClipCells .rgAltRow>td  
{  
    overflow:hidden;  
}  
 
.RadGrid_GridBannered .rgAdd,  
.RadGrid_GridBannered .rgRefresh,  
.RadGrid_GridBannered .rgEdit,  
.RadGrid_GridBannered .rgDel,  
.RadGrid_GridBannered .rgFilter,  
.RadGrid_GridBannered .rgPagePrev,  
.RadGrid_GridBannered .rgPageNext,  
.RadGrid_GridBannered .rgPageFirst,  
.RadGrid_GridBannered .rgPageLast,  
.RadGrid_GridBannered .rgExpand,  
.RadGrid_GridBannered .rgCollapse,  
.RadGrid_GridBannered .rgSortAsc,  
.RadGrid_GridBannered .rgSortDesc,  
.RadGrid_GridBannered .rgUpdate,  
.RadGrid_GridBannered .rgCancel,  
.RadGrid_GridBannered .rgUngroup  
{  
    width:16px;  
    height:16px;  
    border:0;  
    margin:0;  
    padding:0;  
    background-color:transparent;  
    background-image:url('Grid/sprite.gif');  
    background-repeat:no-repeat;  
    vertical-align:middle;  
    font-size:1px;  
    cursor:pointer;  
}  
 
.RadGrid_GridBannered .rgGroupItem input,  
.RadGrid_GridBannered .rgCommandRow img,  
.RadGrid_GridBannered .rgHeader input,  
.RadGrid_GridBannered .rgFilterRow img,  
.RadGrid_GridBannered .rgFilterRow input,  
.RadGrid_GridBannered .rgPager img  
{  
    vertical-align:middle;  
}  
 
/*header*/ 
 
.RadGrid_GridBannered .rgHeaderDiv  
{  
    /*background:#EDB512 0 -5900px repeat-x url('Grid/sprite.gif');*/ 
    background:#EDB512;  
}  
.rgTwoLines .rgHeaderDiv  
{  
    background-position:0 -6200px;  
}  
 
.rgNoScrollImage .rgHeaderDiv  
{  
    background-image:none;  
}  
 
.RadGrid_GridBannered .rgHeader,  
.RadGrid_GridBannered th.rgResizeCol  
{  
    border:0;  
    border:1px solid #d12421;     
    padding-top:5px;  
    padding-bottom:4px;  
    /*background:#ffffff 0 -2300px repeat-x url('Grid/sprite.gif');*/ 
    background:#EDB512;  
    color:#d12421;  
    text-align:left;  
    font-weight:bold;  
}  
 
.RadGrid_GridBannered th.rgSorted  
{  
    background-color:#ffffff;  
    background-position:0 -2600px;  
}  
 
.RadGrid_GridBannered .rgHeader, .RadGrid_GridBannered .rgHeader a  
{  
    color#d12421;  
    text-decorationnone;  
}  
 
.RadGrid_GridBannered .rgCheck  
{  
    height:15px;  
    margin:0;  
    padding:0;  
}  
 
/*rows*/ 
 
div.RadGrid_GridBannered .rgRow td,  
div.RadGrid_GridBannered .rgAltRow td,  
div.RadGrid_GridBannered .rgEditRow td,  
div.RadGrid_GridBannered .rgFooter td  
{  
    border:0;  
    /*border-top:1px solid;
    border-bottom:1px solid;*/ 
    padding-top:4px;  
    padding-bottom:3px;  
}  
 
.RadGrid_GridBannered .rgRow td  
{  
    border-color:#fff;    
}  
 
.RadGrid_GridBannered .rgAltRow  
{  
    background:#fff;      
}  
 
.RadGrid_GridBannered .rgAltRow td  
{  
      
}  
 
.RadGrid_GridBannered .rgRow .rgSorted  
{  
      
}  
 
.RadGrid_GridBannered .rgAltRow .rgSorted  
{  
      
}  
 
.RadGrid_GridBannered .rgSelectedRow .rgSorted,  
.RadGrid_GridBannered .rgActiveRow .rgSorted,  
.RadGrid_GridBannered .rgHoveredRow .rgSorted,  
.RadGrid_GridBannered .rgEditRow .rgSorted  
{  
    background-color:transparent;  
}  
 
.RadGrid_GridBannered .rgRow a,  
.RadGrid_GridBannered .rgAltRow a,  
.RadGrid_GridBannered .rgEditRow a,  
.RadGrid_GridBannered .rgFooter a,  
.RadGrid_GridBannered .rgEditForm a  
{  
    color:#000;  
}  
 
.RadGrid_GridBannered .rgSelectedRow  
{  
    background-color:#EDB512;  
    font-weightbold;  
    color:#d12421;  
}  
*+html .RadGrid_GridBannered .rgSelectedRow .rgSorted{background-color:#EDB512}  
* html .RadGrid_GridBannered .rgSelectedRow .rgSorted{background-color:#EDB512}  
 
.RadGrid_GridBannered .rgSelectedRow a  
{  
    color:#d12421;  
}  
 
.RadGrid_GridBannered .rgActiveRow,  
.RadGrid_GridBannered .rgHoveredRow  
{  
    /*background:#ffffff 0 -2900px repeat-x url('Grid/sprite.gif');*/ 
    background-color:#EDB512;  
    font-weightbold;  
    color:#d12421;  
}  
*+html .RadGrid_GridBannered .rgActiveRow .rgSorted,  
*+html .RadGrid_GridBannered .rgHoveredRow .rgSorted{background-color:#EDB512}  
* html .RadGrid_GridBannered .rgActiveRow .rgSorted,  
* html .RadGrid_GridBannered .rgHoveredRow .rgSorted{background-color:#EDB512}  
 
.RadGrid_GridBannered .rgEditRow  
{  
    background-color:#EDB512;  
    /*background:#fff 0 -4900px repeat-x url('Grid/sprite.gif');*/ 
}  
 
.RadGrid_GridBannered .rgActiveRow td,  
.RadGrid_GridBannered .rgActiveRow td.rgSorted,  
.RadGrid_GridBannered .rgHoveredRow td,  
.RadGrid_GridBannered .rgHoveredRow td.rgSorted  
{  
      
}  
 
.RadGrid_GridBannered .rgSelectedRow td,  
.RadGrid_GridBannered .rgSelectedRow td.rgSorted  
{  
      
}  
 
/*footer*/ 
 
.RadGrid_GridBannered .rgFooterDiv,  
.RadGrid_GridBannered .rgFooter  
{  
    background:#ffffff;  
}  
 
.RadGrid_GridBannered .rgFooter td  
{  
    border-top:1px solid #828282;  
    border-bottom:1px solid #fff;  
}  
 
/*status*/ 
 
.RadGrid_GridBannered .rgPager .rgStatus  
{  
    width:35px;  
    border:1px solid;  
    border-color:#828282 #c9c9c9 #eee #c9c9c9;  
    border-left:0;  
    padding:3px 0 2px;  
}  
 
.RadGrid_GridBannered .rgStatus div  
{  
    width:24px;  
    height:24px;  
    overflow:hidden;  
    border:0;  
    margin:0 auto;  
    padding:0;  
    /*background:transparent center center no-repeat url('Common/loading_small.gif');*/ 
    text-indent:-2222px;  
}  
 
/*pager*/ 
 
.RadGrid_GridBannered .rgPager  
{  
    background:#eee;  
}  
 
.RadGrid_GridBannered .rgPager td  
{  
    padding:0;  
}  
 
.RadGrid_GridBannered .rgPager .rgPagerCell  
{  
    border:1px solid;  
    border-color:#828282 #eee #eee;  
    border-right:0;  
    padding:5px 0 4px;  
}  
 
.RadGrid_GridBannered .rgWrap  
{  
    float:left;  
    padding:0 10px;  
    line-height:22px;  
    whitewhite-space:nowrap;  
}  
 
.RadGrid_GridBannered .rgArrPart1  
{  
    padding-right:0;  
}  
 
.RadGrid_GridBannered .rgArrPart2  
{  
    padding-left:0;  
}  
 
.RadGrid_GridBannered .rgInfoPart  
{  
    float:rightright;  
    color:#8a8a8a;  
}  
 
.RadGrid_GridBannered .rgInfoPart strong  
{  
    font-weight:normal;  
    color:#4c4e54;  
}  
 
.RadGrid_GridBannered .rgArrPart1 img,  
.RadGrid_GridBannered .rgArrPart2 img  
{  
    margin:0 8px;  
}  
 
.RadGrid_GridBannered .rgPageFirst,  
.RadGrid_GridBannered .rgPagePrev,  
.RadGrid_GridBannered .rgPageNext,  
.RadGrid_GridBannered .rgPageLast  
{  
    width:22px;  
    height:22px;  
    vertical-align:top;  
}  
 
.RadGrid_GridBannered .NextPrev .rgPageFirst,  
.RadGrid_GridBannered .NextPrev .rgPagePrev,  
.RadGrid_GridBannered .NextPrev .rgPageNext,  
.RadGrid_GridBannered .NextPrev .rgPageLast  
{  
    vertical-align:middle;  
}  
 
.RadGrid_GridBannered .rgPageFirst  
{  
    background-position:0 -550px;  
}  
.RadGrid_GridBannered .rgPageFirst:hover  
{  
    background-position:0 -600px;  
}  
.RadGrid_GridBannered .rgPagePrev  
{  
    background-position:0 -700px;  
}  
.RadGrid_GridBannered .rgPagePrev:hover  
{  
    background-position:0 -750px;  
}  
.RadGrid_GridBannered .rgPageNext  
{  
    background-position:0 -850px;  
}  
.RadGrid_GridBannered .rgPageNext:hover  
{  
    background-position:0 -900px;  
}  
.RadGrid_GridBannered .rgPageLast  
{  
    background-position:0 -1000px;  
}  
.RadGrid_GridBannered .rgPageLast:hover  
{  
    background-position:0 -1050px;  
}  
 
.RadGrid_GridBannered .rgPagerButton  
{  
    height:22px;  
    border:1px solid;  
    border-color:#d0d0d0 #aeaeae #8b8b8b;  
    margin:0 14px 0 0;  
    padding:0 4px 2px;  
    background:#e8e8e8 repeat-x 0 -1550px url('Grid/sprite.gif');  
    color:#000;  
    font:12px/12px "segoe ui",arial,sans-serif;  
    vertical-align:middle;  
    cursor:pointer;  
}  
 
.RadGrid_GridBannered .rgNumPart  
{  
    padding:0;  
}  
 
.RadGrid_GridBannered .NumericPages .rgNumPart  
{  
    padding:0 10px;  
}  
 
.RadGrid_GridBannered .rgNumPart a:hover,  
.RadGrid_GridBannered .rgNumPart a:hover span,  
.RadGrid_GridBannered .rgNumPart a.rgCurrentPage,  
.RadGrid_GridBannered .rgNumPart a.rgCurrentPage span  
{  
    background:no-repeat url('Grid/sprite.gif');  
}  
 
.RadGrid_GridBannered .rgNumPart a  
{  
    float:left;  
    line-height:22px;  
    margin:0;  
    padding:0 5px 0 0;  
    color:#000;  
    text-decoration:none;  
}  
 
.RadGrid_GridBannered .rgNumPart span  
{  
    float:left;  
    padding:0 0 0 5px;  
}  
 
.RadGrid_GridBannered .rgNumPart a:hover  
{  
    background-position:100% -1250px;  
}  
 
.RadGrid_GridBannered .rgNumPart a:hover span  
{  
    background-position:0 -1150px;  
    cursor:pointer;  
}  
 
.RadGrid_GridBannered .rgNumPart a.rgCurrentPage,  
.RadGrid_GridBannered .rgNumPart a.rgCurrentPage:hover  
{  
    background-position:100% -1450px;  
    cursor:default;  
}  
 
.RadGrid_GridBannered .rgNumPart a.rgCurrentPage span,  
.RadGrid_GridBannered .rgNumPart a.rgCurrentPage:hover span  
{  
    background-position:0 -1350px;  
    cursor:default;  
}  
 
.RadGrid_GridBannered .NextPrevNumericAndAdvanced .rgAdvPart  
{  
    float:none;  
    text-align:center;  
}  
 
.RadGrid_GridBannered .rgPager .RadSlider  
{  
    float:left;  
    margin:0 10px 0 0;  
}  
 
.RadGrid_GridBannered .rgPagerLabel,  
.RadGrid_GridBannered .rgPager .RadComboBox,  
.RadGrid_GridBannered .rgPager .RadInput_GridBannered  
{  
    margin:0 4px 0 0;  
    vertical-align:middle;  
}  
 
*+html .RadGrid_GridBannered .rgPager .RadComboBox{margin-top:-1px;}  
* html .RadGrid_GridBannered .rgPager .RadComboBox{margin-top:-1px;padding:1px 0;}  
 
.RadGrid_GridBannered .rgPagerTextBox  
{  
    text-align:center;  
}  
 
/*sorting, reordering*/ 
 
.RadGrid_GridBannered .rgHeader .rgSortAsc  
{  
    background-position:3px -248px;  
    height:10px;  
}  
 
.RadGrid_GridBannered .rgHeader .rgSortDesc  
{  
    background-position:3px -198px;  
    height:10px;  
}  
 
.GridReorderTop_GridBannered,  
.GridReorderBottom_GridBannered  
{  
    width:9px !important;  
    height:9px !important;  
    margin-left:-5px;     
}  
 
.GridReorderBottom_GridBannered  
{  
    background-position:0 -50px;  
}  
 
/*filtering*/ 
 
.RadGrid_GridBannered .rgFilterRow  
{  
    background:#ffffff;  
}  
 
.RadGrid_GridBannered .rgFilterRow td  
{  
    border-bottom:1px solid #828282;  
    padding-top:4px;  
    padding-bottom:7px;  
}  
 
.RadGrid_GridBannered .rgFilter  
{  
    width:22px;  
    height:22px;  
    margin:0 0 0 2px;  
    background-position:0 -300px;  
}  
 
.RadGrid_GridBannered .rgFilter:hover  
{  
    background-position:0 -350px;  
}  
 
.RadGrid_GridBannered .rgFilterActive,  
.RadGrid_GridBannered .rgFilterActive:hover  
{  
    background-position:0 -400px;  
}  
 
.RadGrid_GridBannered .rgFilterBox  
{  
    border:1px solid;  
    border-color:#8e8e8e #c9c9c9 #c9c9c9 #8e8e8e;  
    padding:2px 1px 3px;  
    font:12px arial,sans-serif;  
    color:#333;  
    vertical-align:middle;  
}  
 
/*grouping*/ 
 
.RadGrid_GridBannered .rgGroupPanel  
{  
    height:24px;  
    border:0;  
    border-bottom:1px solid #828282;  
    background:#eee 0 -1900px repeat-x url('Grid/sprite.gif');  
}  
 
.RadGrid_GridBannered .rgGroupPanel td  
{  
    border:0;  
    padding:3px 4px;  
}  
 
.RadGrid_GridBannered .rgGroupPanel td td  
{  
    padding:0;  
}  
 
.RadGrid_GridBannered .rgGroupPanel .rgSortAsc  
{  
    background-position:4px -144px;  
}  
 
.RadGrid_GridBannered .rgGroupPanel .rgSortDesc  
{  
    background-position:4px -94px;  
}  
 
.RadGrid_GridBannered .rgUngroup  
{  
    background-position:0 -6998px;  
}  
 
.RadGrid_GridBannered .rgGroupItem  
{  
    border:1px solid;  
    border-color:#c4c4c4 #c4c4c4 #9e9e9e;  
    padding:0 2px 1px 3px;  
    background-color:#ffffff;  
    line-height:20px;  
    font-weight:normal;  
    vertical-align:middle;  
}  
 
.RadGrid_GridBannered .rgMasterTable td.rgGroupCol,  
.RadGrid_GridBannered .rgMasterTable td.rgExpandCol  
{  
 
}  
 
.RadGrid_GridBannered .rgGroupHeader  
{  
    font-size:1.1em;  
    line-height:21px;  
    color:#000;  
}  
 
.RadGrid_GridBannered .rgGroupHeader td  
{  
    border-top:1px solid #828282;  
    border-bottom:1px solid #d9d9d9;  
    padding-top:0;  
    padding-bottom:0;  
}  
 
.RadGrid_GridBannered .rgGroupHeader td.rgGroupCol  
{  
    border-top-color:#828282;  
}  
 
.RadGrid_GridBannered .rgExpand  
{  
    background-position:5px -496px;  
}  
 
.RadGrid_GridBannered .rgCollapse  
{  
    background-position:3px -444px;  
}  
 
.RadGrid_GridBannered .rgGroupHeader td p  
{  
    display:inline;  
    margin:0;  
    padding:0 10px;  
}  
 
.RadGrid_GridBannered .rgGroupHeader td div div  
{  
    top:-0.8em;  
    padding:0 10px;  
}  
 
.RadGrid_GridBannered .rgGroupHeader td div div div  
{  
    top:0;  
    padding:0;  
    border:0;  
}  
 
/*editing*/ 
 
.RadGrid_GridBannered .rgEditForm  
{  
    border-bottom:1px solid #828282;  
}  
 
.RadGrid_GridBannered .rgUpdate  
{  
    background-position:0 -1800px;  
}  
 
.RadGrid_GridBannered .rgCancel  
{  
    background-position:2px -1848px;  
}  
 
/*hierarchy*/ 
 
.RadGrid_GridBannered .rgDetailTable  
{  
    border:1px solid #828282;  
    border-right:0;  
}  
 
/*command row*/ 
 
.RadGrid_GridBannered .rgCommandRow  
{  
    background:#c5c5c5 0 -2099px repeat-x url('Grid/sprite.gif');  
    color:#000;  
}  
 
.RadGrid_GridBannered .rgCommandCell  
{  
    border:1px solid;  
    border-color:#999 #f2f2f2;  
    border-top:0;  
    padding:0;  
}  
 
.RadGrid_GridBannered tfoot .rgCommandCell  
{  
    border-top:1px solid;  
    border-bottom:0;  
}  
 
.RadGrid_GridBannered .rgCommandTable td  
{  
    border:0;  
    padding:3px 7px 4px;  
}  
 
.RadGrid_GridBannered .rgCommandTable  
{  
    border:0;  
    border-top:1px solid #fdfdfd;  
    border-bottom:1px solid #e7e7e7;  
}  
 
.RadGrid_GridBannered .rgCommandRow a  
{  
    color:#000;  
    text-decoration:none;  
}  
 
.RadGrid_GridBannered .rgAdd  
{  
    margin-right:3px;  
    background-position:0 -1650px;  
}  
 
.RadGrid_GridBannered .rgRefresh  
{  
    margin-right:3px;  
    background-position:0 -1600px;  
}  
 
.RadGrid_GridBannered .rgEdit  
{  
    background-position:0 -1700px;  
}  
 
.RadGrid_GridBannered .rgDel  
{  
    background-position:0 -1750px;  
}  
 
/*multirow select*/ 
 
.GridRowSelector_GridBannered  
{  
    background:#4c4e54;  
}  
 
/*row drag n drop*/ 
 
.GridItemDropIndicator_GridBannered  
{  
    border-top:1px dashed #666;  
}  
 
/*tooltip*/ 
 
.GridToolTip_GridBannered  
{  
    border:1px solid #828282;  
    padding:3px;  
    background:#fff;  
    color:#333;  
}  
 
/*rtl*/ 
 
.RadGridRTL_GridBannered .rgHeader,  
.RadGridRTL_GridBannered .rgResizeCol  
{  
    text-align:rightright;  
}  
 
.RadGridRTL_GridBannered .rgPager .rgStatus  
{  
    border-right:0;  
    border-left-width:1px;  
}  
 
.RadGridRTL_GridBannered .rgWrap  
{  
    float:rightright;  
}  
 
.RadGridRTL_GridBannered .rgInfoPart  
{  
    float:left;  
}  
 
.RadGridRTL_GridBannered .rgNumPart  
{  
    width:220px;  
}  
 
.RadGridRTL_GridBannered .rgNumPart a  
{  
    float:rightright;  
}  
 
.RadGridRTL_GridBannered .rgDetailTable  
{  
    border-right:1px solid;  
    border-left:0;  
}  
 
Dimo
Telerik team
 answered on 02 Apr 2010
6 answers
149 views
Hello guys,
i m not much familier with rad controls, i have problem with radcombobox while i m populating data in 3rd radcombobox using selected value of first 2 radcomboboxes using web service. please help me to do this
thanks in advance.
prachi s
Top achievements
Rank 1
 answered on 02 Apr 2010
4 answers
216 views
i am using telerik radcontrols(2008.3.1105.20) in that radschedular not displaying properly i here attach the image. please required solution as soon as posible.

ekc ekc
Top achievements
Rank 1
 answered on 02 Apr 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?