Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
141 views
Is there a property or method to set a radwindow's status bar text in code-behind?
Rumen
Telerik team
 answered on 05 May 2020
3 answers
261 views

Hi

   We have radbutton in one aspx and apply our own css style (external style sheet),if that page not contain RadRadioButtonList, our css can apply to radbutton, but if i add RadRadioButtonList in same page , then css not reflect for that radbutton.
This is radbutton
 <telerik:RadButton CssClass="btn btn-success" EnableEmbeddedSkins="false"  RenderMode="Lightweight" Primary="true" ID="RadButton1" runat="server" Text="RadButton"></telerik:RadButton>
This is radradiobuttonlist

   <telerik:RadRadioButtonList ID="radListType" AutoPostBack="true" runat="server">
                  <Items>
                      <telerik:ButtonListItem Selected="true"  Text ="Internal User" Value ="Internal User" />
                        <telerik:ButtonListItem  Text ="External User" Value ="External User" />
                
                  </Items>

                </telerik:RadRadioButtonList>

if i remove radradiobutton list   screenshot : http://prntscr.com/s6ixau

if i add radradiobutton list   screenshot : http://prntscr.com/s6ix3f

 

Pls reply asap,Same as some other page also css not reflect in radbutton, not sure which control affect this, for example i gave radbutton with radradiobuttonlist above.

Doncho
Telerik team
 answered on 04 May 2020
8 answers
550 views

I have developed a web-based application using ASP.Net for the company I work for.

I would like to make use of the new Spreadsheet control to export data from a database to an Excel .xlsx file on the client-side.  No need to view the data in the spreadsheet in the web browser.  Just would like to use the Spreadsheet control to export data from a database to an Excel .xlsx file on the client-side when the user clicks on a button on the ASP.Net page.

Can that be done?

Can you provide an example on how to do that with VB.Net as the code-behind?

Sincerely,

Keith Jackson

Peter Milchev
Telerik team
 answered on 04 May 2020
2 answers
105 views

Two questions:

1.

Can someone point me to an example of an unbound multicolumncombobox, e.g. adding items manually? I found an example

https://docs.telerik.com/devtools/winforms/controls/multicolumncombobox/populating-with-data/unbound-mode

 

but this refers to properties which do not seem to exist (e.g. MultiColumnComboBoxElement and EditorControl).

 

2. In a databound multicolumncomboBox, when the user uses the drop-down, the drop-down appears with a transparent background, so you can see the elements rendered under it as part of the text... this makes it almost impossible to read. Is there a way to remove this transparency? I do not see a property. Is there a reason why this control is designed this way as opposed to being like a standard drop-down combo box?

 

Peter Milchev
Telerik team
 answered on 04 May 2020
1 answer
108 views

Hello,

I have accessed the start date time picker from the advanced form of my scheduler and have implemented custom time values as below.

        Dim startPicker As RadTimePicker = TryCast(e.Container.FindControl("StartTime"), RadTimePicker)

        startPicker.TimeView.CustomTimeValues = New TimeSpan() {New TimeSpan(8, 30, 0), New TimeSpan(12, 30, 0)}

However, when I run the program, the custom values are in place but the labels remain the same? (see attached)

Is there any way to access and change the labels, so only labels for my custom time values are shown?

Thanks in advance,

Kieran

 

 

 

Kieran
Top achievements
Rank 1
 answered on 01 May 2020
4 answers
242 views
Hi.

Now, Web Application is performed on "Azure Web Sites".
However, when "RadScheduler.ExportToPdf()" is performed, the following errors will occur. 

「502 - Web server received an invalid response while acting as a gateway or proxy server.」

Is this caused by what?

Regards.

Ryuta.
Akansha
Top achievements
Rank 1
 answered on 30 Apr 2020
1 answer
529 views

Hi,

I am fairly new to Telerik controls and was experimenting with radtooltip and radtooltipmanager.

 

I created a tooltipmanager and a radtooltip from code behind with ID = "Test", rendermode = lightweight, title = "properties" and text = "CheckText". And this worked.

But when I went to add a radlabel I created as a control to it, saying

RTP.Controls.Add(radlabel1)

it wouldn't display it.

Can someone help me figure how to add controls to radtooltip or radtooltipmanager?

(Eventually, I want to add more controls like a table in the tooltip)

 

Thanks in advanced,

Swanand Nalawade

Vessy
Telerik team
 answered on 29 Apr 2020
2 answers
112 views

I am having an issue trying the get a radcontextmenu appear above a radmenu.  

Following the instruction about positioning controls from  https://docs.telerik.com/devtools/aspnet-ajax/controls/controlling-absolute-positioning-with-z-index

The appearance is correct on IE 11 and Edge, but appears as attached when viewed in Chrome.  

The deckaration for RadContextMenu:

 

  <telerik:RadContextMenu ID="RadContextMenu1" runat="server" Skin="Black1" EnableEmbeddedSkins="false"    RenderMode="Lightweight"    style="z-index:483647"  >
  <Items>
      <telerik:RadMenuItem>
      


      </telerik:RadMenuItem>

  </Items>
                                
                                        
</telerik:RadContextMenu>

The declaration for The Radmenu:

 <telerik:RadMenu ID="RadMenu1" runat="server"   Skin="Default"   RenderMode="Lightweight"  style="z-index: 12345"  OnItemClick="RadMenu1_ItemClick">
</telerik:RadMenu>

 

I don't think I am missing any thing.   

Brete
Top achievements
Rank 1
 answered on 29 Apr 2020
10 answers
607 views
I use client js method "startSpellCheck(); " to check spelling, it works fine when the text is small, but when the text content is large, for example 30k+ lines, an error page pop up:

 
Spell Check handler server error: 500<br><br><title>...The length of the string exceeds the value set on the maxJsonLength property.</title><br>...


I have set the maxJsonLength to a big value in web.config, but it seems that the spell check ignore the setting.
...

<system.web.extensions><br>    <scripting><br>      <webServices>       <br>        <jsonSerialization maxJsonLength="2147483644"></jsonSerialization><br>      </webServices><br>    </scripting><br>  </system.web.extensions>

Rumen
Telerik team
 answered on 29 Apr 2020
1 answer
120 views

There is no server event that gets triggered when a user uses the clear function. The logical event would be to trigger the SelectedIndexChanged since it is essentially going from a value to nothing, therefore changing the selected index.  I'm sure that since the world is slowly trying to forget about server programming and concentrating on Java that there is some java solution that won't do me a hill of bean worth of good.  

My point, would it be so bad to have the clear function trigger something?

Peter Milchev
Telerik team
 answered on 29 Apr 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?