Hi, how do I left-align the header text in the header of the RadListView when it's set to display multiple columns? By default it's centered (see attached screenshot).
documentWindow1.CloseAction = Telerik.WinControls.UI.Docking.DockWindowCloseAction.Hide;
SplitPanelElement e = documentWindow1.TabStrip.SplitPanelElement;
DockLayoutPanel panel = e.Children[3] as DockLayoutPanel;
RadButtonElement ee = panel.Children[0] as RadButtonElement;
ee.Tag = new RadButtonElement();
ee.Click+=ee_Click;
Whenever the click event of the close button in DocumentWindow is called Tag is null. The same thing happens when you Hide and Show the documentwindow as well. It seems like Telerik is actually destroying the document instead of hiding it.
I've been having difficulty trying to navigate to specific wizard pages while in DesignMode in Visual Studio 2012 and am wondering if I'm doing things correctly.
To get to a page I've created, it seems I have 2 choices.
1) Click on the "Next" button of the radWizard continuously until I've reached the desired page.
or
2) Click on the smart tag of the radWizard control, select Edit Pages, click on the page title of the page I want to edit, then click on the "Cancel" button.
I'm using method #2 right now, but it seems to me that pressing the OK button in the Pages Collection Editor should let you edit the page in DesignMode. If you click on the OK button (no matter what page you have selected) you are transported back to the WizardWelcomePage.
I am creating one theme in visual style builder and created one .tssp file with it.
Now i need to create design for draggable functionality in ListView.
I have attached one image with this post. In which you can see that when we enable drag and drop in ListView we can drag Items inside it.
So now this is ControlDefault theme by default which is showing very thin GripLine while dragging.
but in my new theme which i am creating from scratch is not having that Line Image while dragging.
Please can you tell me how to do that in design.
FYI, I am using telerik visual style builder 2014 version.
Hi, I am using a RadGridView in which some of the cells might be read-only depending on the values of the data in other columns.
To simulate the read-only behavior, I use «CellBeginEdit» event has recommended in some threads of this forum.
My code looks like this:
The «IsCellUpdatable» function seen above returns true or false depending on if the cell has to be modified.
Up to that part, everything works properly.
The problems I encounter are:
1. Normally, when I leave a cell using the tab key the next cell is entered and it is in edit mode (I mean it has the focus and I can see the cursor). This also works the same way if I leave a cell that is in a column that is read-only. But when I leave a cell in which I simulate the read-only behavior the next cell is not entered in edit mode. This different behavior confuse my users.
2. While adding a new row, normally if I leave the grid my new row (it's data) becomes a standard row and a new empty row is displayed as the new row. But when I leave the grid while I am in a cell for which I simulate the read-only behavior, nothing will happen (the data will stay in the new row) and it looks like the new row has not been added to the list of rows. Again, this behavior is really annoying for the users.
Can you please help me find a way to have read-only cells depending on the value of other columns while maintaining the same behavior for all the cells of the grid.