I would like to display "Yes" or "No" for a Boolean in RadGridView instead of a checkbox. I would like to implement this changed in xaml. Columns are generating dynamically. This is how it's created now:
<telerik:RadGridView x:Name="Data" Grid.Row="3" Margin="5" AutoGenerateColumns="False" CanUserSortColumns="True" IsFilteringAllowed="True"
grid:RadGridViewColumnsBinding.ColumnsCollection="{Binding Path=Columns}"
IsReadOnly="False" CanUserResizeColumns="True"/>

Hello,
I made an ASP.NET page that uses a RadScheduler with client-side binding.
User access to the application is authenticated by a classical login form based on ASP.NET Membership.
Everything works fine except for an authentication issue that periodically occurs.
The following is an example to illustrate the scenario in which the issue is encountered:
My question is: what can I do in order to make user credentials be accepted by the server?
I already tried with this in web.config:
<system.web.extensions>
<scripting>
<webServices>
<!-- Allows for ajax.net user authentication -->
<authenticationService enabled="true" requireSSL="false" />
</webServices>
</scripting>
</system.web.extensions>
but nothing changed.
Any suggestion would be appreciated.
Thanks in advance
Regards
Mike
Hello,
I'm having a strange problem with stylesheets in tabs and I hope that you can help me.
I have an Upload control and some buttons in a tab in a page and, in IE 9 only it seems (I've tested Firefox, IE 10 & Chrome, this is not an issue there), when first loaded the page does not load the css for these controls.
If a postback occurs in the tab (ie if a file is uploaded) then the css is loaded (see attached files).
Is there any way to ensure that the css is loaded in this instance?
Thank you
Paul Herzberg
Hi,
Telerik Team,
I am using rad grid in batch editing mode ,suppose I have added 15 new records to grid and perform sorting on any column then it will lost data(newly added records in grid). I am facing this issue please help me on same. Is there any built in sorting available for edit mode?
Thanks


Hi,
As per the file, I want to show calculated 4_Average_Assigned % based on two column value i.e- 1_Demand / 2_Assigned.Please help me to implement this.
Thanks,
Sagar
I need to prevent some users from modifying some recurring events but allow them to edit others based on role permissions. I've built a function that gets called on "Edit" event but the problem is "Edit" event gets called when editing and also adding an event. I need to allow adding events but prevent editing/modifying existing recurring events. Currently scheduler_edit function prevents both editing and adding events.
Here is my stripped down scheduler_edit function:
function scheduler_edit(e) { if (!e.event.CanBeEdited) { e.preventDefault(); }}


Hi,
RadGrid throws an 'Index was outside the bounds of the array' error when using ColumnGroups and having datasource=nothing.
Version 2016.1.113.45
Example throwing error (dont bind grid to datasource):
<telerik:RadGrid runat="server" ID="rg"> <MasterTableView> <ColumnGroups> <telerik:GridColumnGroup HeaderText="Invoice" Name="Invoice"></telerik:GridColumnGroup> </ColumnGroups> <Columns> <telerik:GridBoundColumn ColumnGroupName="Invoice" HeaderText="Test" DataField="Test"></telerik:GridBoundColumn> </Columns> </MasterTableView></telerik:RadGrid>
Working:
<telerik:RadGrid runat="server" ID="rg"> <MasterTableView> <ColumnGroups> </ColumnGroups> <Columns> <telerik:GridBoundColumn HeaderText="Test" DataField="Test"></telerik:GridBoundColumn> </Columns> </MasterTableView></telerik:RadGrid>
