Trying to apply RadChartView localization. When overriding string "PaletteArctic" (lines 8,9) - the corresponding context menu item in control will not change the color of the chart.
Please reply if it is a bug or im doing it wrong way...
01.
public
ref
class
MyRadChartLocalizationProvider : Telerik::WinControls::UI::RadChartLocalizationProvider
02.
{
03.
public
:
04.
virtual
String^ GetLocalizedString(String ^id) override
05.
{
06.
if
( id ==
"Palette"
)
07.
return
"Palette"
;
08.
else
if
( id ==
"PaletteArctic"
)
09.
return
"123"
;
10.
11.
return
Telerik::WinControls::UI::RadChartLocalizationProvider::GetLocalizedString(id);
12.
}
13.
};
Telerik::WinControls::UI::RadChartLocalizationProvider::CurrentProvider = gcnew MyRadChartLocalizationProvider;
c++/cli, visual studio 2010, RadControls_WinForms_2012_3_1017_dev
Hello everyone
I'm facing a problem with RadMaskedEditBox control in UI for WinForms. I'm not able to paste a copied text into the control. Even if I set MaskType to None, I'm not able to paste some text. The first time I can paste some text, but then nothing more. Example:
I first copy a text like e.g. "hello" and paste it to the RadMaskedEditBox. This works. If I want to paste it then again, it doesn't work anymore. Step by step:
1. Copy a random text using CTRL+C
2. Paste it to the RadMaskedEditBox control using CTRL+V (works)
3. Try to paste it again using CTRL+V (doesn't work anymore).
I noticed that pasting a text always works if the user selects the whole text which is already in the box (like "overwrite" the existing text). But it's not possible to paste a text to the end of an existing text in the EditBox control.
Is this a known bug of this control? If yes, is there a planned bugfix?
Regards,
Danilo
Hello Support,
I have two Gridviews, when an item on the top grid is selected, the bottom grid populates with content related to the selection that is displayed by handling the SelectionChanged() event. I grid also includes GridViewHyperlinkColumn()s which show a popup window by handling the HyperlinkOpening() event.
Currently, when I click on a hyperlink on a row that is not selected, my dialog opens up. When I close the dialog the row is selected is the bottom content opens up.
The behavior I would like is that when I click a hyperlink, the row is not selected. Or, when clicking the hyperlink, the row is selected, then the hyperlinkOpening() is handled.
What is the recommended way to accomplish this?
Thanks!
How do I allow the mouse click to pass thorough this control transparent area to any controls behind it?