This question is locked. New answers and comments are not allowed.
Hello,
I'm using a RadDropDownButton that contains a TableSizePicker. I would like the dropdown to collapse automatically when the user clicks on the TableSizePicker. Setting the 'KeepOpen' property of the RadDropDownButton to false didn't work. Any ideas?
Here is a code snippet. The element name 'richTextEditor' refers to a RadRichTextBox
I also would like to apply localization on the TableSizePicker. This control currently contains text like 'Insert Table' and 'a x b Table' (where a and b are the number of columns and rows selected by the user in the TableSizePicker). I would like to replace 'Insert Table' and the word Table in 'a x b Table' by my own translations. Is this possible?
Thanks
Sodi
I'm using a RadDropDownButton that contains a TableSizePicker. I would like the dropdown to collapse automatically when the user clicks on the TableSizePicker. Setting the 'KeepOpen' property of the RadDropDownButton to false didn't work. Any ideas?
Here is a code snippet. The element name 'richTextEditor' refers to a RadRichTextBox
<telerik:RadDropDownButton x:Name="btnTable" DataContext="{Binding Commands, ElementName=richTextEditor}" Command="{Binding Path=InsertTableCommand}" KeepOpen="False" > <Image Source="..." Style="..." ToolTipService.ToolTip="..."/> <telerik:RadDropDownButton.DropDownContent> <telerik:RadButton ClickMode="Press"> <telerik:TableSizePicker DataContext="{Binding Commands, ElementName=richTextEditor}" Command="{Binding Path=InsertTableCommand}" /> </telerik:RadButton> </telerik:RadDropDownButton.DropDownContent> </telerik:RadDropDownButton>I also would like to apply localization on the TableSizePicker. This control currently contains text like 'Insert Table' and 'a x b Table' (where a and b are the number of columns and rows selected by the user in the TableSizePicker). I would like to replace 'Insert Table' and the word Table in 'a x b Table' by my own translations. Is this possible?
Thanks
Sodi