We currently have implemented RadEditor with the default paragraph tag new line mode. It is working correctly - when someone hits the Enter key in the editor, it encapsulates the content within paragraph tags.
However, when we paste content in from the clipboard, RadEditor is generating a <br/> tag for each new line.
We would like the Editor to have the same paragraph tag new line behavior when pasting. Is there an easy way to do this, or is writing a custom filter the only way to handle it?

Hi,
When I use the Bootstrap theme, controls don't stay inside their containers.
In the screenshot, the controls do not stay inside the grid column.
Hello!
I'm testing telerik components and looking for best approach to solve situation like on attached picture.
What is best solution to put "MarketingDescription" below this link? I wolud like to have something like second screenshot.
Thank you.
<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource2" GroupPanelPosition="Top" AllowPaging="True" PageSize="20"> <ExportSettings> <Pdf PageWidth=""> </Pdf> </ExportSettings> <MasterTableView DataSourceID="SqlDataSource2" NoMasterRecordsText="Molimo odaberite kategoriju."> <Columns> <telerik:GridBoundColumn DataField="Artikal_ID" FilterControlAltText="Filter Artikal_ID column" HeaderText="Å ifra artikala" ReadOnly="True" SortExpression="Artikal_ID" UniqueName="Artikal_ID"><ColumnValidationSettings><ModelErrorMessage Text=""></ModelErrorMessage></ColumnValidationSettings> </telerik:GridBoundColumn> <telerik:GridImageColumn DataImageUrlFields="Artikal_ID" DataImageUrlFormatString="IMG/{0}.jpg" AlternateText="Slika" DataAlternateTextField="Artikal" ImageAlign="Middle" ImageHeight="60px" ImageWidth="60px" HeaderText="Slika" HeaderButtonType="None"> </telerik:GridImageColumn> <telerik:GridHyperLinkColumn AllowSorting="False" DataNavigateUrlFields="Artikal_ID" DataNavigateUrlFormatString="product_info.aspx?artikal_ID={0}" DataTextField="Naziv_artikla" DataTextFormatString="{0}" FilterControlAltText="Filter column column" Text="Naziv" UniqueName="column"> </telerik:GridHyperLinkColumn> <telerik:GridBoundColumn DataField="Osnovica" DataType="System.Decimal" FilterControlAltText="Filter Osnovica column" HeaderText="VPC" ReadOnly="True" SortExpression="Osnovica" UniqueName="Osnovica" DataFormatString="{0:F2}"><ColumnValidationSettings><ModelErrorMessage Text=""></ModelErrorMessage></ColumnValidationSettings> <HeaderStyle HorizontalAlign="Right" /> <ItemStyle HorizontalAlign="Right" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="MPC" DataType="System.Decimal" FilterControlAltText="Filter MPC column" HeaderText="MPC" ReadOnly="True" SortExpression="MPC" UniqueName="MPC" DataFormatString="{0:F2}"> <ColumnValidationSettings> <ModelErrorMessage Text="" /> </ColumnValidationSettings> <HeaderStyle HorizontalAlign="Right" /> <ItemStyle HorizontalAlign="Right" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="MarketingDescription" FilterControlAltText="Filter MarketingDescription column" UniqueName="MarketingDescription" HeaderText="MarketingDescription" ReadOnly="True"> <ColumnValidationSettings> <ModelErrorMessage Text="" /> </ColumnValidationSettings> </telerik:GridBoundColumn> </Columns> </MasterTableView> </telerik:RadGrid>Hi,
I have a report must use rows group like image attach. I want move row group in last column.
Who know how to do this please help me.
Thanks a lot!
Hi All
Not sure this is possible, can't find any examples, so thought I'd ask.
We want to create a calendar, preferably using the RadCalendar, that shows the first day of the current week + 14 days. Ie, rather than showing the entire current month, just show this week and next week.
We'll then use the Day Render event to show relevant information in that cell for that day.
Has anyone seen something like this done with RadCalendar?
Shane

Hello,
we have a mix from auto generated columns and custom columns.
GridBoundColumn boundColumn = new GridBoundColumn(); grid.MasterTableView.Columns.Add(boundColumn);boundColumn.HeaderText = page.GetMessage(name);boundColumn.UniqueName = name;boundColumn.SortExpression = name;boundColumn.Display = false;When we try to Group any column in the Grid, we get the following Javascript-Exception:
Sys.WebForms.PageRequestManagerServerErrorException: An item with the same key has already been added
What are we doing wrong?
Thank you in advance!
Roxane
Hi,
I have an asp:textbox and I wanted to display red lines under incorrect words.
I try to use telerik RadSpell in hebrew but I get spelling only on button click and it's not display the red lines.
I use Internet Explorer so I don't have red lines in default.
How can I do it?
Thanks
When using GridClientSelectColumn, AllowRowSelect and AllowMultiRowSelection multiple selections can be made only by click the checkboxes not the rows.
Steps to Duplicate
1. Goto the following URL
http://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/columns/column-types/defaultcs.aspx
2.Click all 3 checkboxes one after the other. Notice that after doing so all 3 checkboxes are selected.
3. Uncheck the checkboxes or refresh the page.
4. Now try to select all rows by clicking on the row, not the checkbox. Notice that only one checkbox can be selected.

I have about 20 or so columns. I am looking for a way to lay them out in Edit or Add New Record (EdititemTemplate) so they are not all in a vertical line. Normaly I would use tables but since I am using the GridTemplateCoumn I am not sure how to create a layout. Here is a sample. I would like the text boxes to display the first 10 or so on the left and the last 10 on the right. Can I use tables with the GridTemplateColumns? Yeah I am new to Telerik and somewhat new to Web Dev.
Thanks in advance.
<telerik:GridTemplateColumn DataField="Last_Name" HeaderText="Last Name" SortExpression="Last_Name" UniqueName="Last_Name">
<EditItemTemplate>
<div>
<asp:TextBox runat="server" ID="Last_NameTextBox" Text='<%# Bind("Last_Name") %>'></asp:TextBox>
</div>
</EditItemTemplate>
<ItemTemplate>
<asp:Label runat="server" ID="Last_NameLabel" Text='<%# Eval("Last_Name") %>'></asp:Label>
</ItemTemplate>
<FilterTemplate>
<telerik:RadComboBox ID="LastNameComboFilter" runat="server" DataSourceID="SqlDataSourceLastName"
DataTextField="Last_Name" DataValueField="Last_Name" AppendDataBoundItems="True"
SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("Last_Name").CurrentFilterValue %>'
OnClientSelectedIndexChanged="Last_NameChanged"
MarkFirstMatch="True"
Filter="StartsWith"
AllowCustomText="True" Width="110px">
<Items>
<telerik:RadComboBoxItem Text="All" />
</Items>
</telerik:RadComboBox>
<telerik:RadScriptBlock ID="RadScriptBlockLastName" runat="server">
<script type="text/javascript">
function Last_NameChanged(sender, args) {
var tableView = $find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
tableView.filter("Last_Name", args.get_item().get_value(), "EqualTo");
}
</script>
</telerik:RadScriptBlock>
</FilterTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn DataField="First_Name" HeaderText="First Name" SortExpression="First_Name" UniqueName="First_Name">
<EditItemTemplate>
<asp:TextBox runat="server" ID="First_NameTextBox" Text='<%# Bind("First_Name") %>'></asp:TextBox>
</EditItemTemplate>
<ItemTemplate>
<asp:Label runat="server" ID="First_NameLabel" Text='<%# Eval("First_Name") %>'></asp:Label>
</ItemTemplate>
<FilterTemplate>
<telerik:RadComboBox ID="FirstNameComboFilter" runat="server" DataSourceID="SqlDataSourceFirstName"
DataTextField="First_Name" DataValueField="First_Name" AppendDataBoundItems="True"
SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("First_Name").CurrentFilterValue %>'
OnClientSelectedIndexChanged="First_NameChanged"
MarkFirstMatch="True"
Filter="StartsWith"
AllowCustomText="True" Width="110px">
<Items>
<telerik:RadComboBoxItem Text="All" />
</Items>
</telerik:RadComboBox>
<telerik:RadScriptBlock ID="RadScriptBlockFirstName" runat="server">
<script type="text/javascript">
function First_NameChanged(sender, args) {
var tableView = $find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");
tableView.filter("First_Name", args.get_item().get_value(), "EqualTo");
}
</script>
</telerik:RadScriptBlock>
</FilterTemplate>
</telerik:GridTemplateColumn>
