Hi,
When I have a window in floating mode then keyboard tabbing will tab around the controls within the window, rolling around from the last control to the first control.
However, when the same window is docked and I tab, the focus 'escapes' from the window and enters another area.
Is there a way to keep the focus within a docked window on tab?
Hi.
Can different localizations be applied for different grids on a form? For example, one is English, one is German, the other is Spanish, etc.
Is there a property to increase the indent of each level of the child groups?
Thanks.
Greetings,
I have 2 controls :
1- Rad Carousel (name = Slideshow) , with 5 Image items , each image is labeled on with its corresponding index.
2- Label1
I wrote the code below to check the selected item of Rad Carousel control (Using a very simple method : showing the selected index value in form of a label's text)
Private
Sub
SlideShow_SelectedItemChanged(sender
As
Object
, e
As
EventArgs)
Handles
SlideShow.SelectedItemChanged
Label1.Text = SlideShow.SelectedIndex
End
Sub
Private
Sub
SlideShow_SelectedIndexChanged(sender
As
Object
, e
As
EventArgs)
Handles
SlideShow.SelectedIndexChanged
Label1.Text = SlideShow.SelectedIndex
End
If
End
Sub
I attached a gif file that illustrates the issue with odd indexing.
Surprisingly, When I switch between items moving backward and forward, the selected item's index, shown in the label, doesn't match with the real indexing of the item . As you can see, clicking on the right arrow of the Rad Carousel seems to work just fine and indexing is correctly shown, but clicking on the left arrow of the Rad Carousel doesn't seem to be showing the real index of the selected item (doesn't make any sense).
Thanks for your attention.
Hi,
I want to add the Previous and Next buttons to a tab strip on the RadDock.
I followed https://www.telerik.com/forums/660191-dock-host-window-scrollbars to get the buttons visible, however they are just disabled and do not have any functionality to them.
The item list has multiple items in it, so there's definitely items to scroll through.
What am I missing?
Thanks,
Dan
Hello!
I have a grid that adds a little triangle image to cells that contain note information. The triangles are rendering properly and show the correct content when hovering over them but as soon as you begin to scroll the grid the triangles start to appear on other cells that they shouldn't. I have attached some images showing the issue. The first triangle is correct but then the subsequent ones are added when you start to scroll down or minimize the window and then maximize it again. The code I'm using is below and I can't figure out what the problem could be.
Thanks for any help!
private
void
gridOptions_CellFormatting(
object
sender, CellFormattingEventArgs e)
{
if
(e.Column.Name ==
"colText"
)
{
// Add a triangle if the row contains note data.
if
(!
string
.IsNullOrEmpty(OptionRowNotes(tJobOption.fAuditNotes, e.Row))
&& e.CellElement.Children.Count == 0)
{
var image =
new
RadImageItem();
image.Image = Resources.RedTriangle;
image.ToolTipText = OptionRowNotes(tJobOption.fAuditNotes, e.Row);
image.PositionOffset =
new
SizeF(e.CellElement.ColumnInfo.Width - 10, -1);
image.ZIndex = 1;
e.CellElement.Children.Add(image);
}
}
}
I have code like the following:
public RadDocument SetPracticeNotesRtf(string practiceNotes)
{
return !string.IsNullOrEmpty(practiceNotes) ? new RtfFormatProvider().Import(practiceNotes) : null;
}
In the code block (a loop) I am working with:
var docMerger = new RadDocumentMerger(SetPracticeNotesRtf(firstNoteRtf));
docMerger.AppendDocument(SetPracticeNotesRtf(nextNoteRtf));
All code is working exactly as intended (the Rtf strings are well formed, etc.)--except that I don't get a merger. The firstNoteRtf does not change (other than the attempted merger) while the nextNoteRtf changes with each new record.
The intent is to consolidate log entries (all entries for a given day merged into one). However, no matter how I juggle the first/next etc. I always end up with either the first note or the last note - only.
What am I missing?
I made the following code to implement this:
e.SelectedTabChanged += (obj, ev) =>
{
foreach
(RadTabbedFormControlTab tab
in
e.Tabs)
{
tab.Item.BackColor = Color.FromArgb(0, 255, 255, 255);
tab.Item.BorderColor = Color.FromArgb(0, 255, 255, 255);
tab.Item.ShadowColor = Color.FromArgb(0, 255, 255, 255);
}
e.SelectedTab.Item.BackColor = Color.White;
e.SelectedTab.Item.BorderColor = Color.White;
e.SelectedTab.Item.ShadowColor = Color.White;
};
It is right? Or is there another way to change the colors of the tabs when they become active?