Telerik Forums
UI for ASP.NET AJAX Forum
11 answers
244 views
Hi,

I'm using version 5.6.2 in a WCM scenario, and am having problems adding an iframe into the HTML.

In my page layout I have the editor specified like this:

<telerik:RadHtmlField runat="server" DisplayWidth="100%" ID="docAbstract" FieldName="ACAbstract" InputFieldLabel="Article content" AllowSpecialTags="True" AllowScripts="True"/>

I have also made AllowScripts True in the ConfigFile.xml, but it's still stripping out the tag on saving the page.  Is there something I'm missing? 

Thanks,

Richard
Richard Earle
Top achievements
Rank 1
 answered on 20 Oct 2011
3 answers
76 views
Hi there,

All the sudden, the RadComboBox acts very strange in IE browser even if I do not change any code and it just started a week ago. I am not sure if this is due to Microsoft update or what else could cause it.

Here is the code.

Case: 1
                        <telerik:RadComboBox ID="rcbCompany" runat="server" DataSourceID="SQLDS_CompanyList"
                            Skin="Gray" AutoPostBack="True" Height="200px" Width="390px" MarkFirstMatch="True" 
                            DataValueField="companyGuid" DataTextField="company" OnSelectedIndexChanged="rcbCompany_SelectedIndexChanged" />

Say one of the company is "My Company".

When I typed "My" it does not show the company. However, if I type "ym", it will show. It will not happen to FireFox and Chrome.

Case: 2

                                <telerik:RadComboBox ID="rcbModel" runat="server" DataSourceID="SQLDS_Model" Skin="Gray"
                                    AutoPostBack="False" Height="200px" Width="200px" MarkFirstMatch="True" DataValueField="model"
                                    DataTextField="model" AllowCustomText="true" ToolTip="Enter or select model" />

Say one of the model is "PT-9500".

When I typed "pt-", the first letter that I type will be the end of the word that I typed. In this case, it will change from "pt-" to "t-p" and it will not find what I would like to.

I have not updated the code for at least two weeks and it just happened for IE only. Please let me know how do I solve this problem.

Thank you,

Sompop





Dimitar Terziev
Telerik team
 answered on 20 Oct 2011
2 answers
115 views
;Hello,

I need to get a rtf text from a SQL field and convert it to a normal string.

after this i will convert it again to xml and send it by a soap service.

i'm using the rad editor control to convert from rtf to string using the  following code:

var entity= _container.someting.First();
 
          Telerik.Web.UI.RadEditor editor = new Telerik.Web.UI.RadEditor();
 
          editor.LoadRtfContent(entity.rtfText);
 
          var text = editor.Content.ToString();

But the variable text have html values.... i was expecting pure text content.

Is there a way to convert rtf to normal text?

Best Regards,
Marco



Marco Teodoro
Top achievements
Rank 1
 answered on 20 Oct 2011
1 answer
58 views
Hi,

I am using Telerik Radgrid in my page.I am providing pagination 
facility to the columns in the grid. Here in the grid for the first time pagesize is selected as 10  and we can change the page size accordingly. If records in the grid are less than 10 then i am not showing the pagination . It is working fine in IE and Firefox but in Chrome for the first time blank space is coming below the horizontal scroll bar  but when a postback occurs from then it is coming fine.

Can you please help me on this issue.

 <PagerStyle Mode="NextPrevAndNumeric" />

Thanks in advance.

Shinu
Top achievements
Rank 2
 answered on 20 Oct 2011
1 answer
184 views

hi dear telerik team :
my radgrid column like below :

<telerik:GridTemplateColumn FilterControlAltText="Filter TemplateColumn_Benefit" DataField="Benefit"
                    HeaderText="Benefit" UniqueName="TemplateColumn_Benefit" FilterImageToolTip="Filter">
                    <ItemTemplate>
                        <asp:Label ID="lblBenefitInsideGrd" runat="server" Font-Size="11px" Text='<%# (bool)Convert.IsDBNull(Eval("Benefit")) ? "<span class=\"lblInsideGrd\">Empty</span>" : String.Format("{0:#,0 Dollar;#,0- Dollar}", Eval("Benefit")) %>'></asp:Label>
                    </ItemTemplate>
                    <HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="60px" />
                    <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="60px" />
                </telerik:GridTemplateColumn

how can i String.Format(reformat) Sum result in footer for this template column ?
mean i want something like {0:#,0 Dollar;#,0- Dollar} in output...

best regards

thanks in advance

Phil
Top achievements
Rank 2
 answered on 20 Oct 2011
3 answers
102 views

I have a real problem for my application. Hopefully it is just a setting I overlooked. If I select a non-root item and collapse the branch it is on, it remains selected even though I selected another visible item without the using the shift or control keys. I have selected an item and collapsed its branch. Then I selected another item. When I expand the branch with the previously selected item, it is still selected. Visible selections are cleared with new selections, so hidden selections should be cleared with new selections.
What am I missing?

Thanks,
Paul

Tsvetina
Telerik team
 answered on 20 Oct 2011
7 answers
224 views
Hello,
I am trying out some different skins on my RadWindows. For most of them, the titlebar is about 50% transparent. I would like to make the titlebar more readable. Is there a setting for this?

Thanks,
Dan
Dan Lehmann
Top achievements
Rank 1
 answered on 20 Oct 2011
2 answers
91 views
Hi,
Can you please fix the datagrid user control as edit form example? It seems to be missing:http://demos.telerik.com/ErrorPageResources/error.aspx?aspxerrorpath=/aspnet-ajax/grid/examples/dataediting/usercontroleditform/defaultcs.aspx

thanks!

vitya
Viktor Takacs
Top achievements
Rank 2
 answered on 20 Oct 2011
3 answers
139 views
Hi all.

I have a question, Im currently working with radGrid and I need create hierarchy with this controls, but I need get data source from code-behind. In my first radgrid I can get data from code-behind but  I can't see the another radgrid in code.
I declared my two controls by this way:


<telerik:RadGrid ID="grdCompCliente" runat="server" Width="100%" Height="100px" OnItemDataBound="grdCompCliente_ItemDataBound1"
                   AutoGenerateColumns ="false" ShowGroupPanel="true">
                       <MasterTableView AllowMultiColumnSorting="True" >
                        
                       <NestedViewTemplate>
                       <asp:Panel runat="server" ID="InnerContainer" Visible="false">
                           <telerik:RadGrid  runat="server" ID="ID_Subasta" >
                               <MasterTableView>
                                  <Columns>
                                  <telerik:GridBoundColumn DataField="Id" HeaderText="ID">
                                    
                                  </telerik:GridBoundColumn>
                                  </Columns>
                               </MasterTableView>
                           </telerik:RadGrid>
                       </asp:Panel>
                       </NestedViewTemplate>
                            
                       </MasterTableView>
                   </telerik:RadGrid>


How can I do these?

Thank you for your attention!!
Jayesh Goyani
Top achievements
Rank 2
 answered on 20 Oct 2011
18 answers
395 views
I have 2 RadEditors amidst several textbox controls on a user control.
I can not tab to and from the text area inside each RadEditor Control. The tabindex is set.
It looks like it is tabbing to the control only and not the text inside.  I understand that the text area inside the control is an IFrame.
Is there a way to have textbox style tabbing with the RadEditors as a textbox?
Thanks
Bader
Top achievements
Rank 1
 answered on 20 Oct 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?