Hi !
I try to manage default sorting on my grid. I add this markup into the MasterTableView :
<SortExpressions> <telerik:GridSortExpression FieldName="Prenom" SortOrder="Descending"/></SortExpressions>But the datas are not sorted and the code :
$find('RadGrid1').get_masterTableView().get_sortExpressions()return an empy array.
Is it normal ?

I have been trying to diagnose some annoying intermittent errors I see thrown by AWSSDK, which include it trying to locate my AWSSDK profile/credentials files.
I used this guide to create them: https://docs.aws.amazon.com/sdk-for-net/v3/developer-guide/net-dg-config-creds.html
To fix this, I created the profiles and credentials in a flat file and put references to them in <appSettings>:
<add key="AWSProfilesLocation" value="C:\Users\Administrator\.aws\credentials" />
<add key="AWSProfileName" value="default" />
<add key="AWSAccessKey" value="ABC123" />
<add key="AWSSecretKey" value="DEFG6789" />
<add key="AWSBucketName" value="media.mysite.com" />
This addition works well in projects I use that do not have CloudUploaders, such as WebAPIs and services. Unfortunately, if I add these lines to a project with CloudUploader, it makes it so the uploader barks on every single upload, as if all files are invalidated or errored when attempting to select one. The project doesn't spit out a useful error so I'm not 100% sure whats happening.
Hi sir,
I use rad splitter i give color but not display so how i give color but rad splitter now work.
Note:
I need give color for i mark in screenshot pls reply ASAP




<telerik:RadPanelBar runat="server" ID="RadPanelBar" ExpandMode="MultipleExpandedItems" Width="100%" ExpandAnimation-Type="InBack" OnItemClick="RadPanelBar_ItemClick"> <Items> <telerik:RadPanelItem Text="myReport" Value="myReport"> <ContentTemplate> <div style="height: 500px"> <asp:UpdatePanel ID="UpdatePanel3" runat="server" style="width:100%"> <Triggers> <asp:AsyncPostBackTrigger ControlID="RadPanelBar" /> </Triggers> <ContentTemplate> <telerik:ReportViewer ID="ReportViewer1" runat="server" Width="100%" Height="95%" ToolbarVisible="false"></telerik:ReportViewer> </ContentTemplate> </asp:UpdatePanel> </div> </ContentTemplate> </telerik:RadPanelItem> </Items></telerik:RadPanelBar>protected void RadPanelBar_ItemClick(object sender, RadPanelBarEventArgs e){ if (e.Item.Value == "myReport") { TheReport report01 = new TheReport(); chargeReport.ReportParameters["ID"].Value = this._myID; ReportViewer1.ReportSource = report01; ReportViewer1.Visible = true; }}
radcombobox
and in save function of javascript in the same page i want to get selected items text and value of that combobox.But i am not able to receive it.