It would be convenient to be able to specify default values for SortAscImageURL and SortDescImageURL at a level above the individual column elements At present the SortAscImageURL and SortDescImageURL attributes appear in the GridBoundColumn element. This requires specifying them for each column definition. Often the UI will use the same icons for all sort-able columns. An obvious choice might be the <SortingSettings> element, as is done for the sorting tool tip and sorted background color.
It makes no sense that the GridButtonColumn does not have the Single Click feature just like the RadButton. Why would the web users not be double-clicking this button as opposed to a stand-alone button? It is not even consistent - the button in a RadGrid's GridButtonColumn should be a RadButton.
The issue will not be fixed since there is a big chance to introduce a breaking change. Nevertheless, there is a simple solution that could be use. The solution is to manually remove the hidden column from the ClientState on the client.
<script type="text/javascript">
function test() {
var gridID = $telerik.$(".RadGrid")[0].id;
var clientState = document.getElementById(gridID + "_ClientState");
var value = clientState.value;
if (value) {
var parsedValue = JSON.parse(value);
parsedValue.hidedColumns = [];
clientState.value = JSON.stringify(parsedValue);
}
}
</script>
"onrowdropping" event fires after clicking an already selected grid item (no drag and drop involved). You can see this behavior in your demo: http://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/rows/drag-and-drop/defaultcs.aspx
In RadGrid with client-side binding a js error appear after trying to change the page size if a button column has been reordered prior that.
With the use of the "UseStaticHeaders"-Parameter all ARIA-Tags are gone in the rendered RadGrid. We need the support of WAI-ARIA in our application for our customer. Dont using this Parameter is no option for us. You are not telling this missing function in your documentation.
You can workaround this issue with the following CSS rule.
<style>
div.RadGrid .t-font-icon{
font: 16px/1 "TelerikWebUI";
}
</style>
Setting CurrentFilterValue for specific column does not work in case other column is filtered.
Hi, I am getting the below issue on button click.Its working fine in all browsers ,but not in Edge.Please help. Microsoft Edge SCRIPT65535: Argument not optional It is saying grid is not available.
When I'm having an accessibility tool like JAWS read the numerical pager (see screenshot attached), it reads: "1 : Link", "2 : Link" etc. (and "Dot dot dot : Link" for any GridLinkButton with that text.)
I want it to read a custom message, like "Go to page {0:D}", for the numerical pager GridLinkButtons, either in the corresponding GridLinkButton's title or aria-label attribute. The custom text should preferably be retrieved from GlobalResources.
I also want to be able to provide a separate, customizable title/aria-label text for the [...] GridLinkButtons, too.
For details see support ticket #1068383.
I have added Listview in Header template in Template column, its showing the data on the grid as expected. When I am exporting to Excel or PDF its not exporting the header. Header you see in headertemplate.jpg is not exporting to PDF Thanks