I feel like I must be missing something very obvious. I have this:
<telerik:RadClientDataSource ID="RadClientDataSource1" runat="server" AllowBatchOperations="true" ClientEvents-OnRequestStart="RequestStart" ClientEvents-OnRequestEnd="ResponseEnd"> <DataSource> <WebServiceDataSourceSettings> <Select DataType="JSON" /> </WebServiceDataSourceSettings> </DataSource> <Schema> <Model ID="DialogIDChecksum"> .. <telerik:ClientDataSourceModelField FieldName="ConferenceDateTime" DataType="Date" /> .. </Model> </Schema> <SortExpressions> <telerik:ClientDataSourceSortExpression FieldName="ConferenceDateTime" SortOrder="Desc" /> </SortExpressions> </telerik:RadClientDataSource>
And it is tied to a RadGrid. Everything loads perfectly but it's not sorted. Is there something special I need to do in the RadGrid so it uses the SortExpressions object in the RadClientDataSource?
Thanks,
Richard

For RadDatePicker calendar control. I am trying to make the calendar popup control to be keyboard accessible by adding attributes: EnableKeyboardNavigation="true". Tabbing to the calendar and hitting spacebar or Enter key open up the calendar popup. This works well in navigating inside the popup calendar but if you don't change the existing date in the popup calendar and you hit spacebar or Enter key, the popup doesn't close or no window event was happening. It will close only if you change the date. I want the popup calendar to close even without updating the existing date.
Please help...I can't find a solutions from the internet....
Is this a known issues for Telerik RadDatePicker? thanks.
I have a filter column in my radgrid. Recently, I upgraded my telerik controls and the filter dropdown looks weird with a select word in it.
How can I remove the select word and show just the dropdown arrow.
Below is the rendered css from the developer tools:
<a id="ctl00_ctl00_MainContentPlaceHolderContent_ContentPlaceHolder1_rgDocumentManagement_ctl00_ctl02_ctl03_RadComboBoxPlanFilter_Arrow" style="overflow: hidden; display: block; position: relative;">select</a>

I want to add a custom header to each page of my pdf export.
My grid code has the following declaration.
1 - I have a left margin of 20px but my header does not align with the rest of the export. How can I add a padding to it.
2 - I also want to add a horizontal rule to each page just above the header. If I add it to the string below it just shows in the left cell and it also breaks my header into two separate pages.
string ExportTitle = "<b>ClientName</b><br /> " + " ReportName";grid.ExportSettings.Pdf.PageHeader.LeftCell.Text = ExportTitle;grid.ExportSettings.Pdf.PageHeader.LeftCell.TextAlign = GridPdfPageHeaderFooterCell.CellTextAlign.Left; grid.ExportSettings.Pdf.PageLeftMargin = Unit.Pixel(20);grid.ExportSettings.Pdf.PageRightMargin = Unit.Pixel(20);

Hi,
We are using latest RadGrid control with visual studio 2017. I have asp.net c# page with regular dropdownlist and RadGrid. Radgrid clientside binding should happen only when an item is selected in dropdownlist by passing selected value of dropdown to the webservice call. How can I do this binding on client side.
something like this:
protected void ddlDropdownList_SelectedIndexChanged(object sender, EventArgs e)
{ //clientside binding of grid should happen by passing ddlDropdownList.SelectedValue
}