Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
99 views
I visit this page to test spreadsheet export:

http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/exporting/excel-export/defaultcs.aspx

The code shows the ability to directly export XLSX files. When I try to use the same code in 2014.3.1209.35, the Xlsx export type does not exist. How can your demo be doing this but not my project using the latest UI for AJAX release?
Kostadin
Telerik team
 answered on 23 Dec 2014
1 answer
101 views
I want to display my OrgChart like that image
http://whidsoft.com/OrgChartGallery/OrgChartCustomization.aspx?style=0
who can help me! thanks!
Peter Filipov
Telerik team
 answered on 23 Dec 2014
2 answers
137 views
Hi!
We have updated our code with the latest Telerik version (Q3 2014 SP1) and after this we got problems with the DropDrownTree.
Our application relies on a postback when users selects a checkbox inside the DropDownTree (singlestate). This postback doesn't occur anymore for some reason. No errors are shown in Chromes Developer Tools.
It seems like there is a problem with the latest version..?

//Daniel

Daniel
Top achievements
Rank 1
 answered on 23 Dec 2014
7 answers
119 views
Please test http://demos.telerik.com/aspnet-ajax/progressarea/examples/asyncuploadintegration/defaultvb.aspx?product=asyncupload in IE9;

and you would notice that it is not showing the progress correctly.


I am having problems with IE9 with asyncupload with the progress but not in other versions / browsers
Genady Sergeev
Telerik team
 answered on 23 Dec 2014
1 answer
59 views
Hi,

I have several radgrid controls tucked into an aspx page and have tried to implement the frozen column count functionality on two of them. When it's enabled, the grid will not scroll at all. I'm using IE 10 and telerik v.2014.2.618.40. I thought that upgrading to IE 10 would fix this, but still very broken and is a business requirement. Any help would be very appreciated.

Thanks,

Joe
Angel Petrov
Telerik team
 answered on 23 Dec 2014
1 answer
100 views
Hi guys,

I have a big question (for me).

I have an ASP.NET MVC4 projet, .NET 4.0 with Razor views. (cshtml)

I have a cshtml file name create.cshtml, in it, I have this kind of things to filter a Grid :

@(Html.LocalizedEditor<PurchaseInvoiceModel, PurchaseInvoiceLocalizedModel>("purchaseInvoice-info-localized",
    @<table class="adminContent">
       <tr>
            <td class="adminTitle">
                @Html.NopLabelFor(model => model.PaymentStatusId):
            </td>
            <td class="adminData">
                @Html.DropDownListFor(m => m.PaymentStatusId, Model.AvailablePaymentStatuses, new { @class = "adminInput" })
            </td>
        </tr
     .... blablabla

BUT, I wanna have an DropDownList with a treeView like this: http://demos.telerik.com/aspnet-ajax/dropdowntree/examples/overview/defaultcs.aspx

Is this possible ? Because I'm a little bit lost :(

Thank you for your help :)



Plamen
Telerik team
 answered on 23 Dec 2014
4 answers
322 views
How to set default focus to RaDComoBox in javascript. We used Edit mode is Batch.
 <telerik:GridTemplateColumn DataField="Product" UniqueName="countrycode" ItemStyle-HorizontalAlign="Right" HeaderStyle-Width="120px"
                                            HeaderText="Product" ItemStyle-Height="18px">
<EditItemTemplate>
 <telerik:RadComboBox ShowDropDownOnTextboxClick="true" EnableEmbeddedSkins="false" DropDownWidth="265px" Height="300px" runat="server" ID="txt"     Style="font: 9px Verdana, Arial, Sans-serif;" Width="120px" BackColor="#ffffcc" EnableVirtualScrolling="true" MarkFirstMatch="true"
                                                    DataSourceID="sqlproduct" AutoPostBack="false" DataTextField="product" DataValueField="productid" 
                                                    HighlightTemplatedItems="true" >


                                                    <ItemTemplate>
                                                        <table style="width: 245px; text-align: left">
                                                            <tr>
                                                                <td style="width: 40px;"><%# DataBinder.Eval(Container.DataItem, "productid")%> </td>
                                                                <td style="width: 205px;"><%# DataBinder.Eval(Container.DataItem, "productname")%>  </td>
                                                            </tr>
                                                        </table>
                                                    </ItemTemplate>
                                                </telerik:RadComboBox>
                          

                                            </EditItemTemplate>

</telerik:GridTemplateColumn>
Senthil
Top achievements
Rank 1
 answered on 23 Dec 2014
0 answers
106 views
hi, please i am using the cold below to show a varbinary image in a binaryimage but its not showing. 

         <telerik:RadBinaryImage runat="server" ID="RadBinaryImage1" DataValue='<%#Eval("Front_Image") %>'
                            AutoAdjustImageControlSize="false" Height="355px" Width="700px" ToolTip="Front Image"
                            AlternateText='<%#Eval("Front_Image", "Photo of {0}") %>' >
              
         </telerik:RadBinaryImage>
 
       <asp:SqlDataSource ID="SqlDataSourceImage" runat="server" ConnectionString="<%$ ConnectionStrings:ChequeViewConnectionString %>" SelectCommand="SELECT Front_Image FROM [Transactions]">
 
</asp:SqlDataSource>


below is also the code used in saving the image
System.IO.FileStream fs = new System.IO.FileStream(filepath, System.IO.FileMode.Open);
byte[] imageAsBytes = new byte[fs.Length];
fs.Read(imageAsBytes, 0, imageAsBytes.Length);
fs.Close();
 
SqlConnection conn = new SqlConnection(strconnection);
conn.Open();
SqlCommand cmd = new SqlCommand("INSERT INTO Transactions(Front_Image) VALUES (@Front_Image)", conn);
cmd.Parameters.AddWithValue("@Front_Image", imageAsBytes);
cmd.ExecuteNonQuery();
conn.Close();
any help as to what is wrong.

thanks
Edd
Top achievements
Rank 1
 asked on 22 Dec 2014
3 answers
522 views
We are evaluating the OrgChart control to have a suitable solution to maintain our organization chart. Is it poosible to export chart into pdf/word/ppt file?
Xavier
Top achievements
Rank 1
 answered on 22 Dec 2014
3 answers
155 views
Hello Team,
I have links within RadContentTemplateTile. On click it should redirect to specified URL, But Link is not working.
The same will work if I remove EnableDragAndDrop="true".
I need drag able Tile and links inside it.
Here is my sample code.
<telerik:RadScriptManager runat="server" ID="RadScriptManager" />
    <telerik:RadTileList runat="server" ID="RadTileList1" TileRows="1" Skin="Glow" ScrollingMode="None" EnableDragAndDrop="true" >
        <Groups>
      <telerik:TileGroup>
<telerik:RadContentTemplateTile CssClass="tileContent" Shape="Wide" Height="250px" BackColor="#00899E" >
     <ContentTemplate>
       1. <a href="This'>http://www.inszoom.com/">This is a test message (Jon Doe) </a>
      <br />
      2. Send the files for this client (H1B - Will Smith)
      <br />
      3. Bill this client (ABC Corporation)
     </ContentTemplate>
     <Title Text="Test links"></Title>
     <Badge Value="5" />
     </telerik:RadContentTemplateTile>
                </telerik:TileGroup>
     </Groups>
 </telerik:RadTileList>
Bob
Top achievements
Rank 1
 answered on 22 Dec 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?