
I am using RadNavigation for my application and currently it looks like this.
I need 2 changes in the above settings.
1. The first level expansion, i. e the Sandwich menu at the top, when the screen is expanded, will be expanded horizontally. I need it to be expanded vertically.
(Currently the main Menu's, Menu 1, Menu 2 etc showing vertically as the screen is not expanded. If the screen is expanded, they will start showing Horizontally.)
2. The second level expansion Menu 2 --> Menu 2.1 --> Menu 2.1.1 is expanding vertically. I want it to be expanded Horizantally as shown in the below image.
How can i achieve this with RadNavigation Menu? Can you please help?

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