Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
56 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
97 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
315 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
101 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
510 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
149 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
1 answer
379 views
Hi Guys,

I have an issue with Rad Async Upload,
When URL rewriting rule specified in web.config file below is my rewriting rule
1.<rewrite>
2.           <rules>
3.               <rule name="Convert to lower case" stopProcessing="true">
4.                   <match url="[A-Z]" ignoreCase="false" />
5.                   <action type="Redirect" url="{ToLower:{URL}}" />
6.               </rule>
7.           </rules>
8.       </rewrite>

RadAsync upload file is blinking yellow., 
When I remove the rewriting URL, its working.

Could any one help me out so that, keeping the rewriting URL rad async upload file should work.



Thanks
Phaneendra
Genady Sergeev
Telerik team
 answered on 22 Dec 2014
1 answer
73 views
just updated telerik control from Q3-2013 to Q3-2014. I have a radgrid with paging and rowselect set to true.
when I click on a row after the grid loads its throws a webpage error. but it works just fine from the second try onwards without refreshing the grid.
any help will be appreciated.

thank you.
murali.
Angel Petrov
Telerik team
 answered on 22 Dec 2014
2 answers
185 views
I have a standard wizard with start, 2 steps and finish RadWizardSteps. On the Start Step I have a toggle Radbutton with the default Add New Product checked.

If I just hit the enter key nothing happens.
If I click anywhere within the wizard and hit enter the focus jumps to the built-in Cancel button and the Cancel action is performed (redirect to home page)

If I toggle to the other button Add New Product based on... This triggers some serverside code which displays a RadTextBox for the user to enter the existing product they want to base the new product on.

Entering a value in the RadTextBox and hitting enter the focus jumps to the built-in Cancel button and the Cancel action is performed.

How can I make the built-in Next button the default button?
Jon
Top achievements
Rank 1
 answered on 22 Dec 2014
4 answers
265 views
Hi,

We are using RadEditor to copy-paste the formatted text and it works fine.
Now the requirement is we should be able to copy-paste Image as well , How can we achieve this through RadEditor Control?
Please provide the solution at the earliest..

Thanks,
Savitha
Niko
Telerik team
 answered on 22 Dec 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?