Currently, I am using RadPanelBar in my application.
The expansion is exactly as shown here in the example here - https://demos.telerik.com/aspnet-ajax/panelbar/examples/overview/defaultcs.aspx?_gl=1*1ii0316*_gcl_au*NjQ4MjM2MzI0LjE3Mzc0MTgwNTU.*_ga*MTQwMDI1ODExNy4xNzM3NDE4MDU1*_ga_9JSNBCSF54*MTczODczMzkwNC4xMC4xLjE3Mzg3MzY1NzAuMi4wLjA.
However, I want to change it to look like this -
Can you please suggest if this can be done with the existing RadPanelBar control? If yes, how can I do this.
If not, with which other control I can achieve this?

See subject. Created account only for a test.
BR

I’m working with a stock chart that has a navigator, but I’m running into two issues:
I’m not sure what’s causing these problems. Any help would be appreciated! Thanks!
Hello.
I wish to delete my Telerik account and all of the data associated with this account. Please help me out with it.
My customer id is: RH10100753.
Thanks.


I'm developing a project, and the ask is to show a popup/dialog-box when row is in edit mode and the user clicks on a specific input field in a row then a popup will be displayed.
Content of the opened window will be the same as column's data that is a Textarea.
I tried to implement through events associated to kendo-textarea, unfortunately they're not getting invoked.

I'm working on a C# application, having SQL-Server as database technology, and Telerik.OpenAccess as ORM.
Regularly, my customer sees the following `Exception` message:
Telerik.OpenAccess.OpenAccessException: Change operation canceled by user.
In order to investigate what causes this problem, I have restored the backup of the database, together with its transaction logs.
In there I have been looking for `LOP_ABORT_XACT` in the `Operation` column, but I don't find it.
Neither do I find anything in `EXEC xp_readerrorlog;`.
=> It's just as if there aren't any problems.
Edit6: decompiling Telerik OpenAccess DLL
After decompiling Telerik OpenAccess DLL, I have found two instances of Change operation canceled by user:
- File "DisconnectedStateManager.cs":
private ChangeEventArgs FireChanging(
object pc,
int field,
object oldV,
object newV)
{
ChangeEventArgs ev = new ChangeEventArgs(pc, this.cmd.getFieldName(field), oldV, newV, this.state == (short) 4, true);
this.repository.tracker.FireChanging(ev);
return !ev.Cancel ? ev : throw new OpenAccessException("Change operation canceled by user.", true);
}
- File ".../SPI/TrackingImpl.cs":
/// <summary>Raises the Changing event.</summary>
/// <remarks>Not intended for application use.</remarks>
/// <param name="ev">The event to raise.</param>
public void FireChanging(ChangeEventArgs ev)
{
if (this.evChanging == null)
return;
this.evChanging(this.owner, ev);
if (ev.Cancel)
throw new OpenAccessException("Change operation canceled by user.", true);
}
Does this ring a bell with someone?
What is going on? Why do I get this error message and what can I do about it?
Thanks in advance
Dominique
I'm currently working on a mobile app project using Xamarin.Forms and exploring ways to enhance the user interface and user experience. I've been integrating Telerik UI components and am impressed with their capabilities, but I want to ensure I'm following best practices for optimal performance and design consistency across Android and iOS platforms.
Specifically, I'm looking for advice on:
If you've used Telerik UI components in your mobile app development projects, I’d love to hear your tips, workflows, or challenges you’ve faced. Your insights will be incredibly helpful for refining my development approach!

Where do I start with packages and tools to do this?
I need to read details from a pdf doc, jsut need a pointer to get started.
Cant seem to find this package:
Telerik.Documents.PdfProcessing
and when trying to use:
using Telerik.Windows.Documents.Fixed; using Telerik.Windows.Documents.Fixed.FormatProviders.Pdf; using Telerik.Windows.Documents.Fixed.Model;
the last 2 dont seem to be recognoised!
I have an old net 4.7 console app that creates a telerik grid object and fills it with data and then exports the result to excel.
I want to upgrade this app to net8.
I am a bit unsure this is possible so first ? is:
1] Can you have a net8 console app and use Telerik grids in them?
something like: static Telerik.WinControls.UI.RadGridView objGrid = new Telerik.WinControls.UI.RadGridView();
2] If so what packages do you need installed and what using statements do you need?
3] If not, could you create a MAUI app with no forms , to act like a console app, and do it that way?
I have been all over the net looking and am just not finding a simple example. { So I am wonderiong if tis even possible now! }
Thanks in advance
Deasun.