Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
82 views
I have RadSkinManager in my master page and have telerik button in my aspx with master page.

But the skin is not appearing on buttons in IE and it is working fine in Mozilla


What will be the issue?
Danail Vasilev
Telerik team
 answered on 26 Nov 2012
1 answer
74 views
Hello    

How can I give myown filename to the uploaded file in radasyncupload? Please help. thanks in advance

RT
Princy
Top achievements
Rank 2
 answered on 26 Nov 2012
7 answers
152 views
I have a RadGrid with the export to PDF and export to Excel buttons enabled.

Recently I added a button inside my Column Headers and now when I press the export to pdf button I get the following error:

System.InvalidCastException: Unable to cast object of type 'Telerik.Web.Apoc.Layout.BlockArea' to type 'Telerik.Web.Apoc.Layout.AreaContainer'.
at Telerik.Web.Apoc.Fo.Flow.BlockContainer.Layout(Area area)
at Telerik.Web.Apoc.Fo.Flow.Block.Layout(Area area)
at Telerik.Web.Apoc.Fo.Flow.TableCell.Layout(Area area)
at Telerik.Web.Apoc.Fo.Flow.TableRow.Layout(Area area)
at Telerik.Web.Apoc.Fo.Flow.AbstractTableBody.Layout(Area area)
at Telerik.Web.Apoc.Fo.Flow.Table.Layout(Area area)
at Telerik.Web.Apoc.Fo.Flow.Block.Layout(Area area)
at Telerik.Web.Apoc.Fo.Flow.Flow.Layout(Area area, Region region)
at Telerik.Web.Apoc.Fo.Flow.Flow.Layout(Area area)
at Telerik.Web.Apoc.Fo.Pagination.PageSequence.Format(AreaTree areaTree)
at Telerik.Web.Apoc.StreamRenderer.Render(PageSequence pageSequence)
at Telerik.Web.Apoc.Fo.FOTreeBuilder.EndElement()
at Telerik.Web.Apoc.Fo.FOTreeBuilder.Parse(XmlReader reader)


When I click on the export to excel button, it puts all the page HTML into the excel spreadsheet instead of just the grid.

Any ideas?  Is there any way to ignore html controls in the grid?
Daniel
Telerik team
 answered on 26 Nov 2012
5 answers
82 views
Hi,

I am using the RadEditor in which i tried to paste using the "Paste as plain text option".
the text i am using is 

1-   قد لا تتمكن دائرة تقنية المعلومات الداخلية من إيجاد الموارد الssلازمة للأنظمة التي ستستحدث في أي من القطاعات في وقت كاف لتجنب التأخير في تنفيذ أي من المشاريع ذات العلاقة، كما قد لا تتوفر الإعتمادات المالية اللازمة فورا عند الحاجة إليها.

2-   عدم التمكن من تقييم الحاجة المستقبلية للمساحة (Capacity )الواجب توفرها في المزودات(Servers ) .



when i paste this text using the "Paste as plain text option" then my page does not render in IE 8.

Please can you guide for this.

Thanks & Regards
Praveen Tomar

Rumen
Telerik team
 answered on 26 Nov 2012
3 answers
186 views
Is telerik UI version 2011.2.712, compatible with IE10?
Slav
Telerik team
 answered on 26 Nov 2012
0 answers
67 views
Hi,

Which server side event is fired when appointment is moveEnd on scheduler?

Thanks,
Mangesh
Mangesh
Top achievements
Rank 1
 asked on 26 Nov 2012
7 answers
750 views
Im trying to use local resource files to localize my Windows as demonstrated here: Documentation, but always get the following error at loading (highlighting my <Localization... line):

Parser Error Message: The resource object with key 'Maximize' was not found.

Here the code:
<telerik:RadWindowManager ID="RadWindowManager1" Skin="WebBlue" runat="server" EnableShadow="true">
                             
                            <Windows>
                                <telerik:RadWindow ID="RadWindow1" runat="server" Title="Site Comments" meta:resourcekey="labSiteComment" Height="420px" Width="710px"
                                ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true"
                                    <Localization Maximize="<%$ Resources:RadWindow, Maximize %>" Minimize="<%$ Resources:RadWindow, Minimize %>"
                                    Close="<%$ Resources:RadWindow, Close %>" PinOff="<%$ Resources:RadWindow, PinOff %>"
                                    PinOn="<%$ Resources:RadWindow, PinOn %>" Reload="<%$ Resources:RadWindow,Reload %>"
                                    Restore="<%$ Resources:RadWindow, Restore%>" Cancel="<%$ Resources:RadWindow, Cancel %>"
                                    OK="<%$ Resources:RadWindow, OK %>" No="<%$ Resources:RadWindow, No %>" Yes="<%$ Resources:RadWindow, Yes %>" />
                                </telerik:RadWindow>
                            </Windows>
                        </telerik:RadWindowManager>

I also tried putting the <Localization> under the RadWindowManager as done here: Demo, but same results. And yes the resource files ("RadWindow.resx" and "RadWindow.fr-CA.resx") are in my "App_GlobalResources" folder.

The only way I can do it is by setting the string server-side. Is there a way I can access the resource file server-side?
public void LocalizeWindowManager(ref RadWindowManager Manager, string strCultureCode)
       {
           if (Manager != null)
           {
               if (strCultureCode == "fr-CA")
               {
                   Manager.Localization.Close = "Fermer"; //would like to get string from resource file (RadWindow.fr-CA.resx) instead
               }
               
           }
       }

Anyone can help?

TIA
Olivier
Top achievements
Rank 2
 answered on 26 Nov 2012
4 answers
139 views
Hello

Can you help me ?!

I've a grid with a textbox and  a combobox
With editing  (InPlace), i want to rebind the combox with new data depending on textbox value

<Grid......

1er Column
<telerik:GridTemplateColumn UniqueName="Dep" DataField="Dep" HeaderText="Dept" AllowFiltering="false">                          
      <ItemTemplate>
              <%# DataBinder.Eval(Container.DataItem, "Dep")%>

                          </ItemTemplate>
                                    <EditItemTemplate>
                                              <telerik:RadNumericTextBox ID="ntbDept" DataType="System.Integer" runat="server" Width="100%" AutoPostBack="true" ></telerik:RadNumericTextBox>
                                    </EditItemTemplate>                                                                        
                                                
/telerik:GridTemplateColumn>

2 Colum

<telerik:GridTemplateColumn UniqueName="NomCommune" DataField="NomComInsee" HeaderText="Commune" AllowFiltering="false">                          
    <ItemTemplate>
             <%# DataBinder.Eval(Container.DataItem, "NomComInsee")%>
    </ItemTemplate>
                                                    
     <EditItemTemplate>
    
                   <telerik:RadComboBox ID="cbCommune" runat="server" Width="90%" DropDownWidth="400" MarkFirstMatch="True" Filter="StartsWith">  </telerik:RadComboBox>
       </EditItemTemplate>     
       <HeaderStyle Width="40%" />
       </telerik:GridTemplateColumn>


And the code behind
On my grid  ItemDataBound ....

dim dt as new datatable
...fill dt with sqladpter (depending on NomCommune) .... That OK

 Dim cbCommune As RadComboBox = DirectCast(item.FindControl("cbCommune"), RadComboBox)
 cbCommune.DataSource = dt
 cbCommune.DataValueField = "CInsee"
 cbCommune.DataTextField = "NomCom"
 cbCommune.DataBind()

cbCommune is OK but the combobox in the grid  is not updated


PLEASE  HELP ME

Thank a lot

Anne





pedrotti
Top achievements
Rank 1
 answered on 26 Nov 2012
1 answer
102 views
Hai

I would like to have the sort icon hidden for all the columns. I know how to hide it in aspx, but I have to write it for all the columns. Hope there is a solution in code behind loop through all the column and hide the image.

thanks
Allen
Shinu
Top achievements
Rank 2
 answered on 26 Nov 2012
1 answer
67 views
Hi
    How to show tooltip to the aggregate showing in the footer of the radgrid.
thanks
Savyo
Shinu
Top achievements
Rank 2
 answered on 26 Nov 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?