Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
260 views
We have a problem in converting non English characters to pdf using RadEditor. Only English characters are getting converted while "#" is displaying in place of characters  like chinese, japanese etc when converted to pdf.

Tested characters:
Polish - ąćęłńóśźż
Japanese - あ い う え お か き く け こ さ し す せ そ が ぎ ぐ げ ご ぱ ぴ ぷ ぺ ぽ
Chinese - 二: 第二 二十 十二 老二

I also tested this in your latest Editor semo service. (http://demos.telerik.com/aspnet-ajax/editor/examples/import-export/pdf-export/defaultcs.aspx). Still same result is found.

Could you please suggest some workaround possible to resolve this issue.
Ianko
Telerik team
 answered on 30 Jan 2015
1 answer
186 views
hi,
     Can you please tell me that how we can use the RadGrid to create an interface like a spreadsheet?
or any other telerik control for doing the same.
and one more, want to use  tab index in grid by default vertically not a horizantally in spreadsheet grid.

thank you.
Pavlina
Telerik team
 answered on 30 Jan 2015
2 answers
83 views
Hi,

I have been struggling with some of the grouping mechanisms.  The documentation really isn't that great on this and could do with some more examples.

Take the example of multiple levels of grouping on this page: http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/grouping/grouping/defaultvb.aspx?show-source=true

How do you add a custom GroupHeaderTemplate to this page.  If you do it the way that is described in the documentation it crashes.  Why?  Because in the example there are two levels of grouping.  The GroupHeaderTemplate docs only cater for one template while there can be multiple groups.  

Pulling my hair out on this one!

Any pointers

Regards

Jon
Jon
Top achievements
Rank 1
 answered on 30 Jan 2015
1 answer
176 views
I need to have a client side template on my application without using webservice binding.

When I try to use client side template with other types of databing like datatable or arraylist the client side template does not
maintain its layout.

The reason I need this is because I need client side template with load on demand.

For example: 
* The bellow code adds an item but doens't preseve the client template
Dim itemData As New RadListBoxItem()
itemData.Text ="Text"
itemData.Attributes.Add("Attr1", "Attr1")
itemData.Attributes.Add("Attr2", "Attr2")
itemData.Attributes.Add("Attr3", "Attr3")
radListBox.Items.Add(itemData)

* The code below works when its set as webservice biding
Dim result As New List(Of RadListBoxItemData)()
Dim itemData As New RadListBoxItemData()
itemData.Text = "Text"
itemData.Attributes.Add("Attr1", "Attr1")
itemData.Attributes.Add("Attr2", "Attr2")
itemData.Attributes.Add("Attr3", "Attr3")
result.Add(itemData)

Return result.ToArray()
Nencho
Telerik team
 answered on 30 Jan 2015
2 answers
137 views
Apologies if this has been answered before but all I could find was guides on displaying multiple columns from the datasource..

In this instance I have a single column from the datasource that gives a very long list. What I would like is spread this single data column over 2 or 3 columns in the RadcomboBox to try and avoid need for user scrolling.. I figured this would be pretty straight forward but I can't find any info on what I'm trying to achieve..

ie..  rather than                   I need something like            in the drop down..

1                                          1             2            3
2                                          4             5            6
3                                          7             8            9
4
5
6
7​​
Nencho
Telerik team
 answered on 30 Jan 2015
1 answer
86 views
Dear All

Please help me for this issue.
(1) I am using radGridview and it's rowsdrop function. It's work perfectly in normal use. But in chrome browser, cannot drop while page is Zoom (+/-) . This issue not happen in other browser.

Please help and thank you very much for time


Thank and Best Regards

Win
Eyup
Telerik team
 answered on 30 Jan 2015
4 answers
94 views
Hello,

I need inherited versions of the RadButton and RadGrid.

<telerik:RadButton ID="NewActionBtn" runat="server" NavigateUrl="New.aspx">
    <ContentTemplate>
        <span class="glyphicon glyphicon-2x glyphicon-plus" style="color: grey"></span><span class="glyphicon-2x"> Add</span>
    </ContentTemplate>
</telerik:RadButton>

Here is a sample of the RadButton currently in use.  It is use in an "Action" bar which is part of our UI.  I need to standardize the button so I only need to pass in the icon and button text for the Content Template.

I also need a custom RadGrid.  I need to be able to standadize things like the page size, control location, export settings, etc across all grids on my site.

If you have experience inheriting RadControls please contact me.

Thanks
-Noah
Noah
Top achievements
Rank 2
 answered on 29 Jan 2015
1 answer
68 views
Hi,

if i go to the demo http://demos.telerik.com/aspnet-ajax/grid/examples/functionality/paging/basic-paging/defaultcs.aspx , and I choose the pager mode to NextPrevNumericAndAdvanced , i have a strange behaviour.

In the field "page xxx of xxx",
if I enter a number from the keypad ==> it works
If i try to enter a number from the normal keyboard ==> do not work

same behavior with "page size"

I have a french keyboard. On the keyboard, I have to press the shift key to enter a number.
IE 11

Thanks for your help

Konstantin Dikov
Telerik team
 answered on 29 Jan 2015
1 answer
178 views
Hello I have the below code:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ImageSlider2.ascx.cs" Inherits="UserControls_ImageSlider2" %>

<asp:Panel id="ImageGalleryPnl" Visible="false" runat="server">
<telerik:RadImageGallery ID="RadImageGallery1" Width="350px" DisplayAreaMode="Image" LoopItems="true" runat="server" >
<ImageAreaSettings Height="250px" ShowDescriptionBox="false" />
<ThumbnailsAreaSettings Mode="ImageSlider" />
<ClientSettings AllowKeyboardNavigation="true">
</ClientSettings>
</telerik:RadImageGallery>

</asp:Panel>
<asp:Panel ID="MsgPnl" Visible="true" runat="server">
<asp:Label ID="lblMessage" Text="No images avaliable at this time" runat="server"></asp:Label>
</asp:Panel>

The imageGallery is in a ajax ModalPopupExtender. It is populated dynamically just before showing the popup as below:

Method: Grid_OnRowCommand:
rowIndex = Integer.Parse(e.CommandArgument) Mod grdLocations.PageSize
oRow = grdLocations.Rows(rowIndex)
grdLocations.SelectedIndex = rowIndex

Dim lblAddress As Label = oRow.FindControl("lblAddress1")
Dim lblCityState As Label = oRow.FindControl("lblCity")

Dim lblLocDescription As Label = oRow.FindControl("lblLocDescription")
lblModalInfo.Text = lblLocDescription.Text
sFullAddress = lblAddress.Text & " " & lblCityState.Text
lblModalFooter.Text = sFullAddress

ImageSlider1.showSlider(True)

ImgContent.Visible = False
Dim lblLocation As Label = oRow.FindControl("lblLocation")

ImageSlider1.sMSClient = _sMSClient
ImageSlider1.sLocation = lblLocation.Text
ImageSlider1.populateGallery()
ModalPopupExt1.Show()

The imageGallery works ok, I can navigate through all the images, but the first one is always showing in black after displaying the popup. If I move to next image and then back to the first I can see it. So it is loaded. It looks like it were inactivated or something.

Please advice.

Carlos

Viktor Tachev
Telerik team
 answered on 29 Jan 2015
1 answer
135 views
Hi

How to Implemented RadComboBox AutoCompleteBox using WebService in C#
any one guide me for this Process.
then any one do and post helpful for me.
Ivan Danchev
Telerik team
 answered on 29 Jan 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?