Telerik Forums
UI for ASP.NET AJAX Forum
10 answers
323 views
I'm trying to bind data to the combobox using my own ITemplate and then insert new items as separators to simulate grouping of the items in the list.  My tests so far have indicated that while it is possible to add a separator to the list of items after databinding, the text of the inserted item does not show.  What I'd like the list of items to look like is something like:

* Separator Item (With Text Showing)
* Templated Item
* Templated Item
* Separator Item (With Text Showing)
* Templated Item
* Templated Item
* Templated Item

I've got a bunch of client-side events hooked in - all of which work great - which is why I figured it would be easiest to add separator items since they can't be clicked.  But without the text in the separator item the groups don't make sense.  Any ideas?
Peter Milchev
Telerik team
 answered on 17 Sep 2020
0 answers
92 views

I am new in RadCloudUpload in Telerik. I am working on Amazon s3 Bucket. When I am uploading small images  with size 87.9 KB (ex: sample1.jpg) it is working fine with RadCloudUpload control but when I am trying to upload another image with size 4.15 MB (ex: sample2.jpg) , the control is firing an error saying "Size validation failed". I am using the below mentioned code: 

 <telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" MaxFileSize="3145728" RenderMode="Lightweight" MultipleFileSelection="Automatic"  OnFileUploaded="RadCloudUpload1_FileUploaded" ProviderType="Amazon" >
        </telerik:RadCloudUpload>

 

I have tested the same from below link also (same issue exist) :

https://demos.telerik.com/aspnet-ajax/cloud-upload/examples/overview/defaultcs.aspx?show-source=true

I am following -- https://docs.telerik.com/devtools/aspnet-ajax/controls/cloudupload/cloud-storage-providers/amazon-s3

 

How to resolve the issue as I need to upload large size file(Images, PDF, Doc and etc) in Amazon S3 server.

Thanks.

 

Soumen
Top achievements
Rank 1
Veteran
 asked on 16 Sep 2020
5 answers
125 views

     Hi, Looking at this demo with the Material skin, I was wondering if it was possible to show the text below the image?

https://demos.telerik.com/aspnet-ajax/wizard/overview/defaultcs.aspx?skin=Material

 

Doncho
Telerik team
 answered on 15 Sep 2020
2 answers
65 views

When I run my application using RadScheduler from Visual Studio, everything works properly.

When I publish it to an Azure Web App, some of the features stop working.

My default view is Week. I can create, edit, adjust or move appointments within that week without any issues.

  • I can't use the back/forward arrow keys to select a different week
  • I can't switch to a different view (Day, Month, Agenda)
  • I can't use the arrow keys to select a different week.

I have the latest version of Telerik UI for ASP.NET Ajax installed along with the latest version of Visual Studio 2019.

I'm not getting any error messages of any sort. The most frustrating part is that when I go back to my development environment to try to diagnose the problem (inside Visual Studio) everything works properly. So, I'm at a loss to explain why it would behave differently on Azure than inside Visual Studio.

 

Greg
Top achievements
Rank 1
Veteran
 answered on 15 Sep 2020
3 answers
163 views
Hi,

We are working on a RadPanelBar upgrade initiative. We are currently using RadPanelbar.Net2 (v2.0.50727) and want to upgrade it to the latest version (Latest Version is 2020.2.617).

The problem we are facing at the moment is:

- RadPanelBar requires Script Manager added to the page. In our implementation RadPanelBar is added to Master Page and so it requires a form tag having Script Manager on it.
- Some of the child pages in our case don't have form on them but there are instances where Child pages do have form on them. So, in these cases application stops working because the child page form becomes nested.
- We tried to resolve nested form issue by dynamically creating Form from Code-behind but it is not working as per expectations.

Is there any possibility to use RadPanelBar without Script Manager - this way it will become the save as of v2.0.50727?
Peter Milchev
Telerik team
 answered on 15 Sep 2020
1 answer
307 views

Hi,

How can we set source for video in client side using radmediaplayer..I'm struggling with this problem can someone help me on this issue

Thanks,

Yogesh Kumar

Eric R | Senior Technical Support Engineer
Telerik team
 answered on 14 Sep 2020
1 answer
589 views

Hi,

I am currently working on a problem where I have to add a radComboBox in editItemTemplate.

Background: The radGrid I am using is being added from the codebehind. All the columns are being added from the code behind too and are based on a local DataTable. The Grid is in BatchEditMode and has a RadAjaxManager used with it. It saves the change to the table as soon as the change is made. It is handled by calling SaveChanges function from javascript of cell value changed.

Problem: I need to add an ItemTemplate column to radGrid for a column in DataTable which has multiple values in it. Lets call this column as Tags. The values stored in it are either {Tag1}, {Tag2}, {} or {Tag1, Tag2}. It shows that multiple values(or no values) can be associated with one record. I need to be able to select these items or unselect them and then trigger the cell value changed function or any other function in the codebehind.

 

Can someone help me with a demo for this problem please? I am open for changing it to some other control if RadComboBox is not a good item to be used here.

Thanks in advance,

Swanand Nalawade

Doncho
Telerik team
 answered on 14 Sep 2020
5 answers
151 views

Please see attached screen shots for exception details and aspx page control where exception is raised.

 

Steps to reproduce exception:

I have Telerik rich text editor on aspx page in update mode, so text is loaded from DB and I can edit and save it.When I click Find Replace button with Binoculars icon in screen shot, the find replace popup appears fine but exception is raised in Prefix and Retrace tools by Stackify.

Any ideas? Thanks.


Rumen
Telerik team
 answered on 14 Sep 2020
13 answers
590 views
Hi,

I am using AutoCompleteBox to help user search various data. Now, the data shown to the user might not exactly correspond to what is written in table field. As I saw that AutoCompleteBoxItemData has Text and Value field, I have filled both accordingly, so that I would know what was their search term.

Traversing thorugh AutoCompleteBox.Entries however shows, that AutoCompleteBoxEntry has Value property set to string.Empty, no matter what I inserted in AutoCompleteBoxItemData Value property. Wouldn't it be nice to get Value property of an entry as well? Specially when I set it.

My markup:
<telerik:RadAutoCompleteBox ID="tbSearch" runat="server" InputType="Text" >
    <WebServiceSettings Method="EventSearch" Path="~/services/SearchService.asmx" />
</telerik:RadAutoCompleteBox>
<telerik:RadButton ID="btnSearch" runat="server" Text="<%$ Resources:Global,Search %>" OnClick="btnSearch_Click"></telerik:RadButton><br />

My code behind:
    Protected Sub btnSearch_Click(ByVal sender As ObjectByVal e As System.EventArgs)
        For Each entry As AutoCompleteBoxEntry In tbSearch.Entries
            Dim strValue As String = Nothing
            strValue = entry.Value   'value = string.Empty
        Next
    End Sub

Part of web-service that fills the data:
    Private Function GetDataResultFromSearchIndex(ByVal htIndex As HashtableAs AutoCompleteBoxData
        Dim acdataResult As AutoCompleteBoxData = Nothing
        Dim lstitemAutoComplete As List(Of AutoCompleteBoxItemData) = Nothing
        acdataResult = New AutoCompleteBoxData()
        lstitemAutoComplete = New List(Of AutoCompleteBoxItemData)()
        For Each de As DictionaryEntry In htIndex
            Dim itemAutoComplete As AutoCompleteBoxItemData = Nothing
            itemAutoComplete = New AutoCompleteBoxItemData()
            itemAutoComplete.Text = GetKeyValue(de)
            itemAutoComplete.Value = GetResultValue(de)  'value is filled
            Call lstitemAutoComplete.Add(itemAutoComplete)
        Next
        acdataResult.Items = lstitemAutoComplete.ToArray()
        Return acdataResult
    End Function
Alejandro Genovesi
Top achievements
Rank 2
 answered on 12 Sep 2020
6 answers
610 views
Hi,

I am using this RadEditor and I found that the Editor ContentArea height is little bit more than what i wants. I tried to set the height but no effects. Please the attached screenshot. And let me know how can i do that.

Thanks,
--Jai
Rumen
Telerik team
 answered on 11 Sep 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?