Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
548 views

I'm having trouble finding documentation/example code for adding page numbers to merged PDF file.  Merging of PDF files/pages I can do, adding page numbers to this new document, I cannot do.  Can anyone point me in the right direction?

 

Thanks!

Martin
Telerik team
 answered on 17 Mar 2020
1 answer
752 views

Is it possible to set a specific zoom percentage, when/as a pdf is loading or to set the Default zoom to "Fit to Width" ?  

 

I looked in the Documentation and saw nothing about adjusting the default zoom.  

 

 

Vessy
Telerik team
 answered on 17 Mar 2020
6 answers
782 views

 

We use the RadFileExplorer to display a large set of folders and content.  However we have run into the issue that when the user scrolls down in the treeview and selects a subnode,  the tree does not maintain it's scroll position always to show the selected node.  Instead jumps back to top of view.  Strangely, this behavior seems to effect mostly the 1st subnode in the tree.  If a node had multiple sub-nodes, clicking a subnode other than first results in the tree maintaining scroll position correctly.  Attached PNG shows a simple test program we created that isolates the issue to a small web app based on your demo code.  I can provide the simple web app for your review to diagnose this issue if that is helpful. 

At moment am lost on how to proceed to correct this issue.

Note:  none of the RadFileExplorer demos online show this issue - there is not enough content in the tree view for it to scroll off bottom of view and have a scrollbar.

 

 

 

 

 

 

 

Vessy
Telerik team
 answered on 17 Mar 2020
1 answer
616 views

Dear Telerik Community,

 

I am having a requirement where rad gird column group text is rotated vertically. For that i want to insert some label and apply css. I have checked the docs to add template on Column group. but didn't find any. Is there any way or am i missed something.

Doncho
Telerik team
 answered on 16 Mar 2020
3 answers
130 views

I'm looking at the tutorial (https://demos.telerik.com/aspnet-ajax/multicolumncombobox/overview/defaultvb.aspx) and it uses a form of the ASP Embedded Code Blocks to reference the data source column.  Is it possible to use conditionals in this code, i.e. If clauses, so that the template can be customized based on the value?  I'd like to use it for an address to only show the comma separating Address Line 1 and Line 2 when Line 2 is not null/empty (so you don't have an extraneous comma at the end of the street address).  I tried the following code but it doesn't work (the drop-down never appears)

<span>#: Vendor_Address_1 #</span><span>#: If(Vendor_Address_2="","",", " & Vendor_Address_2) #</span>

Vessy
Telerik team
 answered on 16 Mar 2020
2 answers
1.3K+ views

 

I have RadWindow popup all things working on it fine just I faced  with a problem is that the RadWindow after PostBack  the RadWindow is closed immediately ..! I mean this event OnSelectedIndexChanged="ddltype_SelectedIndexChanged" has fired however I putted UpdatePanel  in side  

 

<p><telerik:RadWindow ID="RadWindow1" runat="server" Modal="true" Behaviors="Close">                                       <br> </p><p><ContentTemplate></p><p><strong>the UpdatePanel  goes here</strong></p><p></ContentTemplate></p><p></telerik:RadWindow ></p>

 but I getting this error mesasage

Cannot unregister UpdatePanel with ID '' since it was not registered with the ScriptManager. This might occur if the UpdatePanel was removed from the control tree and later added again, which is not supported. Parameter name: updatePanel

what is wrong with the code thanks in advance

Entire code

 

<p><telerik:RadWindowManager ID="RadWindowManager1" runat="server" Width="400" Height="200"><br>              <br><br>                <Windows><br><br>                    <telerik:RadWindow ID="RadWindow1" runat="server" Modal="true" Behaviors="Close"><br>                       <br>                        <br>                        <ContentTemplate><br><br>                  <br> <br>                                   <br><br><br>                 <asp:DropDownList ID="ddltype" runat="server" OnSelectedIndexChanged="ddltype_SelectedIndexChanged" DataSourceID="sdsCalFeulTypesNew" AutoPostBack="true" DataTextField="CalFeulTypeName" DataValueField="CalFeulTypeId"><br><br>                     <asp:ListItem Selected="True">Select ...</asp:ListItem><br><br><br><br>                 </asp:DropDownList><br><br><br><br><br>                                        <asp:SqlDataSource ID="sdsCalFeulTypesNew" runat="server"<br>                                            ConnectionString="<%$ ConnectionStrings:Myconnectionstring %>"<br>                                            SelectCommandType="StoredProcedure" SelectCommand="SPCommandName"><br><br>                                            <SelectParameters><br><br><br>                                                <asp:Parameter Name="FeulCatFkey" Type="Int32" DefaultValue="1" /><br><br><br>                                            </SelectParameters><br><br>                                        </asp:SqlDataSource><br><br><br><br><br><br><br>                                        <telerik:RadAutoCompleteBox ID="RadAutoCompleteBox1" CssClass="racSlide" Style="padding: 5px; margin: 5px; width: 70%;" Font-Bold="true"<br>                                            TextSettings-SelectionMode="Single" runat="server" DropDownWidth="240px"<br>                                            InputType="Text" DataSourceID="sdsCalculationName" DataTextField="CalculationName" DataValueField="Calculation_ID"<br>                                            EmptyMessage="Search Items" MinFilterLength="2" MaxResultCount="10" AllowTokenEditing="true"<br>                                            EnableClientFiltering="false" AllowCustomEntry="true"<br>                                            AutoPostBack="false" EnableAjaxSkinRendering="False" EnableTextSelection="True"<br>                                            EnableAriaSupport="True" Filter="StartsWith"><br>                                        </telerik:RadAutoCompleteBox><br><br><br><br><br><br><br><br><br>                                    <div style="margin-top: 60px; margin-left: 10px;"><br><br><br><br>                                        <asp:Button runat="server" ID="btnCancel" CssClass="btn btn-danger" Text="Cancel" Style="margin-top: 5px;" /><br><br><br><br>                                        <asp:Button runat="server" ID="btnNewCalculation" CssClass="btn btn-info" OnClick="btnNewCalculation_Click" Text="Start Calculation" Style="margin-top: 5px;" ValidationGroup="VGCal" /><br><br><br>                                    </div><br><br><br><br><br>                                    <asp:SqlDataSource ID="sdsCalculationName" runat="server"<br>                                        ConnectionString="<%$ ConnectionStrings:Myconnectionstring %>"<br>                                        SelectCommandType="StoredProcedure" SelectCommand="spCommandName"><br>                                        <SelectParameters><br><br><br>                                            <asp:Parameter Name="dep" Type="int16" DefaultValue="1" /><br><br>                                        </SelectParameters><br>                                    </asp:SqlDataSource><br>                        <br><br>                             <br><br><br><br><br>                        </ContentTemplate><br><br>                                 <br>                    </telerik:RadWindow><br><br>    </Windows><br><br>               <br><br><br> <br>            <br>            </telerik:RadWindowManager></p><p></p>

 

 

 

Doncho
Telerik team
 answered on 13 Mar 2020
5 answers
269 views

Hi,

I am receiving an issue when I upload a file of size 10 MB. The issue is that browser gets frozen immediately after selecting the file for some time(40 seconds for the excel file and I cannot attach the file here as it's accepting max 2 MB), and we cannot perform any activity on the browser. We experienced the same issue on the below link that is given by Telerik team member in one of the threads. Please note that this is happening only on https site, whereas it's working fine on http site.

 

Telerik demo site:

https://demos.telerik.com/aspnet-ajax/asyncupload/examples/overview/defaultcs.aspx?_ga=2.109691525.1087938382.1583129609-1001097786.1580547921

 

Below is the thread link where the above link is mentioned to check if the issue exists:

https://www.telerik.com/forums/radasyncupload-in-https

 

Please let me know if any questions or you need any information.

 

Regards,

Vijay

Rumen
Telerik team
 answered on 13 Mar 2020
1 answer
109 views

Hello All,

I want to export RadScheduler which is working fine and exporting to new file on client. I want to export it to a specific path on server so I know the exact path on server to attach that file to an email. The RadScheduler1.ExportToPdf just exports a file and opens in the browser.

Please suggest what is solution so I can use something like RadScheduler1.ExportToPdf(Server.MapPath("/myfile.pdf")).

Thanks in advance.

Rumen
Telerik team
 answered on 12 Mar 2020
4 answers
320 views

We have a numeric text box on a RadGrid, and the spin buttons are enabled. From a UX standpoint, we want to reverse the functionality of the up/down buttons. We want the up button to move the value lower, as the item is rising up the "rankings" in our list.

The page in question is not accessible, but I've attached a screenshot, and what we're trying to do should be pretty obvious from looking at it. In this shot, I have clicked the up arrow next to Josh Allen's "Rank" four times, with the intention of moving him higher in the list (by higher, I mean "better," as in a top ten list.) But, what it did was raise the value of "Rank" from 6 to 10.

Any idea how we can handle this?

Thanks...

 

Chris Barry

 

Vessy
Telerik team
 answered on 12 Mar 2020
4 answers
678 views

     Hi,

     I've added a Radcombobox to a page in my .net project. I set the properties as follows:

            radCmbLocation.AllowCustomText = false;
            radCmbLocation.MarkFirstMatch = true;
            radCmbLocation.AutoCompleteSeparator = "-";

 I am filling the combo box with a number of sorted strings in the following format:

  01-01-04

All of the strings have this format.If I type "0" this appears:

01-01-01

This makes sense as it is the first string in the sort order. If I keep typing "1-02" (which cumulatively would be "01-02") the number in the combo box comes out as:

01-02-01-01

I was expecting that typing the "02" would have brought up the first 01-02 string in the drop down but that is not happening. Obviously I only want whatever I type to bring up the first match in the combobox but that is not happening. I been looking at posts on the combo box and auto-complete for a while and can't find an answer.

Any help would be appreciated.

Thanks,

fig

 

Rumen
Telerik team
 answered on 12 Mar 2020
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?