<telerik:RadChart           ID="RadChartModelingZones"           runat="server"           DataSourceID="SqlDataSourceModelingZones"           DefaultType="Spline"           Skin="Gray"           ChartTitle-TextBlock-Text="Merit">           <Appearance Corners="Round, Round, Round, Round, 7">               <FillStyle FillType="ComplexGradient">                   <FillSettings GradientMode="Horizontal">                       <ComplexGradient>                           <telerik:GradientElement Color="236, 236, 236" />                           <telerik:GradientElement Color="248, 248, 248" Position="0.5" />                           <telerik:GradientElement Color="236, 236, 236" Position="1" />                       </ComplexGradient>                   </FillSettings>               </FillStyle>               <Border Color="130, 130, 130" />           </Appearance>           <Series>               <telerik:ChartSeries Name="Series 1" Type="Spline">                   <Appearance>                       <FillStyle MainColor="164, 164, 164">                       </FillStyle>                       <TextAppearance TextProperties-Color="51, 51, 51">                       </TextAppearance>                   </Appearance>               </telerik:ChartSeries>               <telerik:ChartSeries Name="Series 2" Type="Spline">                   <Appearance>                       <FillStyle MainColor="108, 108, 108">                       </FillStyle>                       <TextAppearance TextProperties-Color="51, 51, 51">                       </TextAppearance>                   </Appearance>               </telerik:ChartSeries>           </Series>           <Legend>               <Appearance Dimensions-Margins="17.6%, 3%, 1px, 1px"                           Dimensions-Paddings="2px, 8px, 6px, 3px" Position-AlignedPosition="TopRight">                   <ItemMarkerAppearance Figure="Square">                       <Border Width="0" />                   </ItemMarkerAppearance>                   <FillStyle MainColor="">                   </FillStyle>                   <Border Width="0" />               </Appearance>           </Legend>           <PlotArea>               <XAxis>                   <Appearance Color="182, 182, 182" MajorTick-Color="216, 216, 216">                       <MajorGridLines Color="216, 216, 216" PenStyle="Solid" />                       <TextAppearance TextProperties-Color="51, 51, 51">                       </TextAppearance>                   </Appearance>                   <AxisLabel>                       <TextBlock>                           <Appearance TextProperties-Color="51, 51, 51">                           </Appearance>                       </TextBlock>                   </AxisLabel>               </XAxis>               <YAxis>                   <Appearance Color="182, 182, 182" MajorTick-Color="216, 216, 216"                               MinorTick-Color="223, 223, 223">                       <MajorGridLines Color="216, 216, 216" />                       <MinorGridLines Color="223, 223, 223" />                       <TextAppearance TextProperties-Color="51, 51, 51">                       </TextAppearance>                   </Appearance>                   <AxisLabel>                       <TextBlock>                           <Appearance TextProperties-Color="51, 51, 51">                           </Appearance>                       </TextBlock>                   </AxisLabel>               </YAxis>               <Appearance>                   <FillStyle FillType="Solid" MainColor="White">                   </FillStyle>                   <Border Color="182, 182, 182" />               </Appearance>           </PlotArea>           <ChartTitle>               <Appearance>                   <FillStyle MainColor="">                   </FillStyle>               </Appearance>               <TextBlock>                   <Appearance TextProperties-Color="102, 102, 102"                               TextProperties-Font="Arial, 18pt">                   </Appearance>               </TextBlock>           </ChartTitle>       </telerik:RadChart><asp:SqlDataSource    ID="SqlDataSourceModelingZones"    runat="server"    ConnectionString="<%$ ConnectionStrings:...%>"     SelectCommand="GetMeritModelingZones"     SelectCommandType="StoredProcedure">    <SelectParameters>        <asp:ControlParameter            ControlID="RadSlider"            DefaultValue="0.00"            Name="Merit"            PropertyName="SelectedValue"            Type="Decimal" />    </SelectParameters></asp:SqlDataSource>





Hi, 
I have a radgrid with edit mode = custom edit form in asp.net page.  There are several asp textbox in the FormTemplate.  
I follow the sample in http://www.telerik.com/help/aspnet-ajax/grid-set-focus-on-textboxes-in-edit-control.html to set one of the textbox focus when itemcreated.  However, I found that this the script did not work when I set AllowKeyboardNavigation = true in client setting.  If I set AllowKeyboardNavigation  = false, the textbox can get the foucs when I edit the row.
Below is my coding for the FormTemplate and ClientSetting
<EditFormSettings EditFormType="Template" >                      <EditColumn UniqueName="EditColumn" AutoPostBackOnFilter="true"></EditColumn>                                         <FormTemplate>                        <asp:Table ID="EditTable" runat="server" cellspacing="0" cellpadding="0" BorderStyle=None>                           <asp:TableRow>                               <asp:TableCell>                                   <asp:Label ID="lblOrgCode" runat="server" Text="Org. Code" ></asp:Label>                               </asp:TableCell>                               <asp:TableCell>                                   <asp:TextBox ID="txtOrgCode" Text='<%# Bind("OrgCode") %>' runat="server" CssClass="uppercase" TabIndex="1" Readonly='<%#IIf(TypeOf(Container) is GridEditFormInsertItem,"false","true")%>' ></asp:TextBox>                               </asp:TableCell>                               <asp:TableCell></asp:TableCell>                               <asp:TableCell>                                   <asp:RequiredFieldValidator ID="RequiredFieldValidator1" Runat="server" Display="Dynamic"                                       ControlToValidate="txtOrgCode" ForeColor="Red"                                       ErrorMessage="Organization code can not be empty!">                                   </asp:RequiredFieldValidator>                                   <asp:CustomValidator ID="CustomValidator1" runat="server" Display="Dynamic"                                       ControlToValidate="txtOrgCode" ForeColor="Red" OnServerValidate="OrgCode_ServerValidate"                                       ErrorMessage="Org. code must be less than 100 characters">                                   </asp:CustomValidator>                               </asp:TableCell>                           </asp:TableRow>                           <asp:TableRow>                               <asp:TableCell>                                   <asp:Label ID="lblOrgName" runat="server" Text="Org. Name" ></asp:Label>                               </asp:TableCell>                               <asp:TableCell>                                   <asp:TextBox ID="txtOrgName" Text='<%# Bind("OrgName") %>' runat="server" TabIndex="2" ></asp:TextBox>                               </asp:TableCell>                               <asp:TableCell></asp:TableCell>                               <asp:TableCell>                                   <asp:RequiredFieldValidator ID="RequiredFieldValidator2" Runat="server" Display="Dynamic"                                       ControlToValidate="txtOrgName" ForeColor="Red"                                       ErrorMessage="Organization name can not be empty!">                                   </asp:RequiredFieldValidator>                                   <asp:CustomValidator ID="CustomValidator2" runat="server" Display="Dynamic"                                       ControlToValidate="txtOrgName" ForeColor="Red" OnServerValidate="OrgName_ServerValidate"                                       ErrorMessage="Org. name must be less than 100 characters">                                   </asp:CustomValidator>                               </asp:TableCell>                           </asp:TableRow>                           <asp:TableRow>                               <asp:TableCell>                                   Creation Date                               </asp:TableCell>                               <asp:TableCell>                                   <asp:TextBox ID="txtCreationDate" Text='<%# Bind("CreationDate") %>' runat="server" ReadOnly="true">                                     </asp:TextBox>                               </asp:TableCell>                               <asp:TableCell>                                     By                                  </asp:TableCell>                               <asp:TableCell>                                   <asp:TextBox ID="txtCreationUser" runat="server" Text='<%# Bind("CreationUser") %>' ReadOnly="true">                                     </asp:TextBox>                               </asp:TableCell>                           </asp:TableRow>                           <asp:TableRow>                               <asp:TableCell>                                   Last Change Date                                  </asp:TableCell>                               <asp:TableCell>                                   <asp:TextBox ID="txtLastChangeDate" Text='<%# Bind("LastChangeDate") %>' runat="server" ReadOnly="true">                                     </asp:TextBox>                               </asp:TableCell>                               <asp:TableCell>                                     By                                  </asp:TableCell>                               <asp:TableCell>                                   <asp:TextBox ID="txtLastChangeUser" runat="server" Text='<%# Bind("LastChangeUser") %>' ReadOnly="true">                                     </asp:TextBox>                               </asp:TableCell>                           </asp:TableRow>                       </asp:Table>                       <asp:Table runat="server">                           <asp:TableRow>                                <asp:TableCell HorizontalAlign=Left>                                     <asp:Button ID="Button1" Text='<%#IIf(TypeOf(Container) is GridEditFormInsertItem,"Insert","Update")%>' runat="server" CommandName='<%#IIf(TypeOf(Container) is GridEditFormInsertItem,"PerformInsert","Update")%>' TabIndex="3"> </asp:Button>                                    <asp:Button ID="Button2" Text="Cancel" runat="server" CausesValidation="False" CommandName="Cancel" TabIndex="4"></asp:Button>                                </asp:TableCell>                            </asp:TableRow>                        </asp:Table>                   </FormTemplate>                </EditFormSettings>            </MasterTableView>           <ClientSettings ReorderColumnsOnClient="True"  AllowColumnsReorder="True" AllowKeyboardNavigation="true" >               <Selecting AllowRowSelect="True"></Selecting>               <KeyboardNavigationSettings AllowSubmitOnEnter="true" EnableKeyboardShortcuts="true" AllowActiveRowCycle="true" CollapseDetailTableKey="LeftArrow" ExpandDetailTableKey="RightArrow" />                              </ClientSettings>Below is my coding in setting the textbox focus on ItemCreated event.
If e.Item.IsInEditMode Then                If TypeOf (e.Item) Is GridEditFormInsertItem Then                    ControlToFocus = DirectCast(DirectCast(e.Item, GridEditableItem).FindControl("txtOrgCode"), TextBox)                Else                    ' Dim lGridEditableItem As GridEditableItem = DirectCast(e.Item, GridEditableItem)                    ControlToFocus = DirectCast(DirectCast(e.Item, GridEditableItem).FindControl("txtOrgName"), TextBox)                End If            End If            If Not ControlToFocus Is Nothing Then                Dim script As String = [String].Format("$get('{0}').focus(); $get('{0}').select();", ControlToFocus.ClientID)                RadScriptManager.RegisterStartupScript(Page, GetType(Page), "EditFocusScript", script, True)            End IfThanks!

Hi,
We are using the Real Font Sizes for the RadEditor.
When I create new line, RadEditor does not inherit font size to the line.
1. All clear
2. Input any string and set any font size.
3. move cursor to end of the string.
4. Input enter key.
Result:
 <p><span style="font-size: 22px;">testtesttest</span></p>
 <p> </p>
Expected Result:
 <p><span style="font-size: 22px;">testtesttest</span></p>
 <p><span style="font-size: 22px;"> </span></p>
If I use the Default Font Size instead of the Real Font Size, the behavior is expected.
Please tell me any workarounds.
Thanks,
Akinori

