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

Out of the box, "ApplyClass" applies a class and "FormatBlock" applies an element type.  I want to do both at once.

For example: I want to be able to to make a red h2 by

  • Wrapping text in 'h2' tags
  • Adding class 'color-red'

I might even want to have an additional class for padding or something so I'd want to

  • Wrap text in 'h2'
  • Add 'color-red' class
  • Add 'padding-bottom-medium' class

I can set up my UI and get to the point where I have my element and list of classes, but can't get anything to work past that.  Do I need to write it all by myself?  I expected some build-in functionality to help with fundamental stuff like this

Rumen
Telerik team
 answered on 01 Aug 2022
6 answers
290 views

Hi,

 

Since the latest update I get error message [illegal characters in path] where I try to rename a file to a name which contains a space.

I am sure this was always allowed till now. Of course our CMS customers have thousands of assets containing spaces which cannot be renamed right now, so this is a very serious issue. Please see attached screenshots.

Marc

TestTeam
Top achievements
Rank 2
Iron
 updated answer on 01 Aug 2022
0 answers
659 views

Hi,

I have been throught a lot of trouble making work telerik controls with a proxy. I'm using asp.net webform on IIS with .net 4.5 and Telerik  2020.3.1021.45

I recently added a reverse proxy (ARR) to IIS to make my website work with the blue/green pattern to get a 0 downtime deployment. So I get a webfarm that redirect to the live website with the reverseproxy. Every things work great except telerik controls.

I get many javascript exception that make me think that the telerik webressource doesnt seems to get through the proxy :  

  • ASP.NET Ajax client-side framework failed to load
  • 'Sys' is undefined
  • “Telerik.Web.UI” is undefined

I tried to change many stuff but without sucess :

 

I don't know what to check next. Thank you for your advices/ideas...

 

JF

 

End User
Top achievements
Rank 1
 asked on 01 Aug 2022
0 answers
121 views

Hi,

Despite I know that only one windowmanager is allowed on a page....it just took me three hours to find out why a RadGantt isn't databinding at all without warning. The confilct lies in the fact that I had a seperate WindowManager defined on the page. is it possible to create a warning for this?

 

Thanks,

Marc

Fit2Page
Top achievements
Rank 2
Bronze
Iron
Iron
 asked on 27 Jul 2022
1 answer
365 views

So I set a datasoruce to the datatabler and then do .Databind().

The .items is full but the .columns is empty!!

Why is the .Columns empty I thought it was suppose to autogenerate the columns from the fields in the table!!

Confused!!

RadGrid objTheGrid

DataTable dtResult = new DataTable();

 dtResult = objLineTrendsTools.Reports.Provider.Grids.getDefaultView(objParameters);

 objTheGrid.DataSource = dtResult;
                objTheGrid.DataBind();

If ( objTheGrid.items.count >  0 )  // this works has items

if ( objTheGrid.columns.count > 0 )  // this doesnt works as the Columns is empty .Count = 0

 

Attila Antal
Telerik team
 updated answer on 27 Jul 2022
1 answer
102 views

I'm upgrading Telerik UI for ASP.NET AJAX from a very old version, from 2013, to the latest. For the most part it has been plug & play except for RadNumericTextBox, which doesn't display the spin buttons correctly and doesn't show the validation icon correctly.

Here is a screenshot of old vs new:

This is the markup:


<table>
	<tr id="trPassExp" runat="server" class="lhqDetailLabel">
		<td colspan="2" align="right">Password expires every&nbsp;</td>
		<td colspan="2" style="text-align: left;">
			<telerik:RadNumericTextBox runat="server" 
				RenderMode="Lightweight"
				ShowSpinButtons="true" 
				NumberFormat-DecimalDigits="0" 
				Width="60px"
				EnableEmbeddedSkins="True" 
				Skin="Sunset" 
				MinValue="7" 
				MaxValue="90" id="txtPassExpires"></telerik:RadNumericTextBox>&nbsp;days&nbsp;&nbsp;
		</td>
	</tr>
	<tr id="trPassLen" runat="server" class="lhqDetailLabel">
		<td colspan="2" align="right">Password must be at least&nbsp;</td>
		<td colspan="2" style="text-align: left;">
			<telerik:RadNumericTextBox runat="server" 
			   RenderMode="Lightweight" 
			   ShowSpinButtons="true" 
			   NumberFormat-DecimalDigits="0" 
			   Width="60px" 
			   EnableEmbeddedSkins="True" 
			   Skin="Sunset" 
			   MinValue="8" 
			   MaxValue="35" id="txtPassMin"></telerik:RadNumericTextBox>&nbsp;characters&nbsp;&nbsp;
		</td>
	</tr>
	 <tr id="trPassNumeric" runat="server" class="lhqDetailLabel">
		<td colspan="2" align="right">Password must contain at least&nbsp;</td>
		<td colspan="2" style="text-align: left;">
			<telerik:RadNumericTextBox runat="server" 
			   RenderMode="Lightweight" 
			   ShowSpinButtons="true" 
			   NumberFormat-DecimalDigits="0" 
			   Width="60px" 
			   EnableEmbeddedSkins="True" 
			   Skin="Sunset" 
			   MinValue="1" 
			   MaxValue="8" id="txtNumeric"></telerik:RadNumericTextBox>&nbsp;numbers&nbsp;&nbsp;
		</td>
	</tr>
	<tr id="trShutDown" runat="server" class="lhqDetailLabel">
		<td colspan="2" align="right">Disable user account after&nbsp;</td>
		<td colspan="2" style="text-align: left;">
			<telerik:RadNumericTextBox runat="server" 
			   RenderMode="Lightweight" 
			   ShowSpinButtons="true" 
			   NumberFormat-DecimalDigits="0" 
			   Width="60px" 
			   EnableEmbeddedSkins="True" 
			   Skin="Sunset" 
			   MinValue="3" 
			   MaxValue="6" id="txtLoginTrys"></telerik:RadNumericTextBox>&nbsp;unsuccessful login attempts&nbsp;&nbsp;
		</td>
	</tr>
</table>

Any ideas?
Rumen
Telerik team
 answered on 27 Jul 2022
1 answer
286 views

I'm curious if there are any plans to implement a feature for real-time collaboration for any of the editor controls? The two that I am most interested in would be the RadEditor and RadSpreadsheet.

There is a control called CKEditor that has all of these capabilities, but I really like the RadEditor (and all of the Telerik controls). because of the ease of use and other features.

As someone who is in the role of both an attorney (~11 years) and a software developer (~40 years), I see a huge demand from businesses to have this feature. I am more than happy to collaborate with you all on this.

If I am missing where this has been implemented, please point me in the right direction.

Rumen
Telerik team
 answered on 27 Jul 2022
0 answers
98 views

I have some controls in the Editform of the my Radgrid, and when I click on a button in the Editform, it shows a Radwindow that has a Radgrid. 

When I double-click a row in the Radgrid of the Radwindow, it returns a value to the parent EditForm and closes the Radwindow.

I was able to do all of this. However, what I need help with is how to place the returned value in a RadCombobox in the parent EditForm and

automatically retrieve all pertaining values of the returned value from the database and show them on the controls in the EditForm.

I would very much appreciate it if you can provide me with a sample of code. 

Adnan
Top achievements
Rank 1
 asked on 27 Jul 2022
0 answers
5.1K+ views

Hi,

I'm getting the following exception multiple time throughout the application in error log and the exception generates randomly while accessing any page in the application. It's  pretty much difficult to identify the exact reason for exception occurrence as the application is vast to debug in depth. Also, I'm using Telerik Control as well as Telerik Reporting in multiple place in the application.

EXCEPTION URL :

https://abp.roc-p.com:443/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZFJTiB1HaFtaGUfEvk469M0Ahcb1VPA81p1stPBulIctJXoc9_fThOXkBpob-_Dmsw2%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27%20AND%20%284423%3D4423&t=637453852754849868

EXCEPTION MESSAGE :

System.Web.HttpException (0x80004005): This is an invalid webresource request. at System.Web.Handlers.AssemblyResourceLoader.System.Web.IHttpHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

 

Can anyone please provide all the possible reason behind this exception along with its step to resolve. Any help will be highly appreciated!

NOTE :

I have already visited multiple page in the forum those have similar issue but the solutions provided were specific to their script attached. Here, I'm not sure about the script which causes this exception randomly. I need to try all possible solution to get this issue resolve.

 

0 answers
109 views
How can I override the current default window for assigning resources?  Would like to customize the way the resources are selected so being able to open my own window would be great.  Using Ajax controls...
Jerry
Top achievements
Rank 2
Iron
Iron
 asked on 21 Jul 2022
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
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
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?