All -
I'm trying to get the plain text as well as the HTML formatted text from my RichTextEditor, but the GetPlainText method is always returning back empty string. The GetContent method works just fine.
Is this a known issue or am I doing something wrong?
Thank You
string
sPlainText = rtbSMTPMessage.GetPlainText();
string
sHTMLText = rtbSMTPMessage.GetContent(
"html"
);
Hi I am having trouble merging the main menu with an MDIChild form. What i what to have happen is the MDI child menu is inserted into the main menu at particular points. For example:
Main Menu:
Hello,
I've created a custom RadListView following this page: Custom Items | UI for WinForms
However when I click a ButtonElement in RadListView, the correspondent ListViewItem is selected. How can I avoid this?
See also "image.png".
Thanks in advance,
Luca Scalzotto
Hi,
The label in my Pie Chart has the same backcolor as the Series. How do I make that white?
Laura
Hi,
ich would like to get the last entered Appointment date in the Scheduler and
the Appointment, wich has the recent date in Scheduler?
Can u help me?
Best Regards
Bledar
Okay upgraded to Q2_2015_2_728.
I have the following code
var exporter = new Telerik.WinControls.UI.Export.SpreadExport.SpreadExport(this.contents);
....
....
exporter.RunExport(fileName);
Since these are now obsolete, what is the replacement. Documentation is non-existent.
Thanks for the help.
radMultiColumnComboBox1.MultiColumnComboBoxElement.EditorControl.Relations.AddSelfReference(
this
.radMultiColumnComboBox1.MultiColumnComboBoxElement.EditorControl.MasterTemplate,
"id"
,
"parentid"
);
sqlDataAdapter1.Fill(dataSet11);
radMultiColumnComboBox1.DataSource = t1BindingSource;
radMultiColumnComboBox1.DisplayMember =
"name"
;
radMultiColumnComboBox1.ValueMember =
"id"
;
this
.radMultiColumnComboBox1.AutoFilter =
true
;
this
.radMultiColumnComboBox1.DisplayMember =
"name"
;
FilterDescriptor filter =
new
FilterDescriptor();
filter.PropertyName =
this
.radMultiColumnComboBox1.DisplayMember;
filter.Operator = FilterOperator.Contains;
this
.radMultiColumnComboBox1.EditorControl.MasterTemplate.FilterDescriptors.Add(filter);
CREATE
TABLE
[dbo].[T1](
[id] [
int
]
NOT
NULL
,
[
name
] [nvarchar](50)
COLLATE
Arabic_CI_AS
NULL
,
[parentid] [
int
]
NULL
,
CONSTRAINT
[PK_T1]
PRIMARY
KEY
CLUSTERED
(
[id]
ASC
)
WITH
(PAD_INDEX =
OFF
, STATISTICS_NORECOMPUTE =
OFF
, IGNORE_DUP_KEY =
OFF
, ALLOW_ROW_LOCKS =
ON
, ALLOW_PAGE_LOCKS =
ON
)
ON
[
PRIMARY
]
)
ON
[
PRIMARY
]
GO
ALTER
TABLE
[dbo].[T1]
WITH
CHECK
ADD
CONSTRAINT
[FK_T1_T1]
FOREIGN
KEY
([parentid])
REFERENCES
[dbo].[T1] ([id])
GO
ALTER
TABLE
[dbo].[T1]
CHECK
CONSTRAINT
[FK_T1_T1]