or
<
telerik:RadFilter
runat
=
"server"
ID
=
"filter"
FilterContainerID
=
"articles"
ShowApplyButton
=
"true"
OnFieldEditorCreating
=
"filter_FieldEditorCreating"
>
<
FieldEditors
>
<
telerik:RadFilterTextFieldEditor
FieldName
=
"Title"
/>
<
km:RadFilterDropDownEditor
DataSourceID
=
"dsStates"
DataTextField
=
"Name"
DataValueField
=
"ArticleStatusId"
FieldName
=
"StatusId"
/>
<
telerik:RadFilterTextFieldEditor
FieldName
=
"AuthorFullName"
/>
<
telerik:RadFilterNumericFieldEditor
FieldName
=
"Rating"
/>
<
telerik:RadFilterNumericFieldEditor
FieldName
=
"TimesRated"
/>
<
telerik:RadFilterDateFieldEditor
FieldName
=
"CreatedDate"
/>
<
telerik:RadFilterDateFieldEditor
FieldName
=
"ModifiedDate"
/>
</
FieldEditors
>
</
telerik:RadFilter
>
<
telerik:RadGrid
ID
=
"articles"
runat
=
"server"
OnNeedDataSource
=
"articles_NeedDataSource"
EnableLinqExpressions
=
"false"
ShowFooter
=
"True"
AllowFilteringByColumn
=
"True"
AllowSorting
=
"True"
ShowGroupPanel
=
"True"
AllowPaging
=
"true"
PageSize
=
"10"
>
<
MasterTableView
AutoGenerateColumns
=
"False"
EnableHeaderContextMenu
=
"true"
IsFilterItemExpanded
=
"false"
>
<
Columns
>
<
telerik:GridBoundColumn
DataField
=
"Title"
HeaderText
=
"Title"
/>
<
telerik:GridDropDownColumn
DataField
=
"StatusId"
HeaderText
=
"Status"
DataSourceID
=
"dsStates"
ListTextField
=
"Name"
ListValueField
=
"ArticleStatusId"
/>
<
telerik:GridBoundColumn
DataField
=
"AuthorFullName"
HeaderText
=
"Author"
/>
<
telerik:GridBoundColumn
DataField
=
"Rating"
HeaderText
=
"Rating"
/>
<
telerik:GridBoundColumn
DataField
=
"TimesRated"
HeaderText
=
"TimesRated"
/>
<
telerik:GridBoundColumn
DataField
=
"CreatedDate"
HeaderText
=
"Created"
/>
<
telerik:GridBoundColumn
DataField
=
"ModifiedDate"
HeaderText
=
"Modified"
/>
</
Columns
>
</
MasterTableView
>
<
GroupingSettings
ShowUnGroupButton
=
"true"
CaseSensitive
=
"false"
/>
<
ClientSettings
AllowDragToGroup
=
"True"
AllowColumnsReorder
=
"True"
/>
</
telerik:RadGrid
>
protected
void
filter_FieldEditorCreating(
object
sender, RadFilterFieldEditorCreatingEventArgs e)
{
if
(e.EditorType ==
"RadFilterDropDownEditor"
)
{
e.Editor =
new
RadFilterDropDownEditor();
}
}
Protected
Sub
RadChart1_ItemDataBound(
ByVal
sender
As
Object
,
ByVal
e
As
Telerik.Charting.ChartItemDataBoundEventArgs)
Handles
RadChart1.ItemDataBound
e.SeriesItem.Name =
"Purchases"
e.SeriesItem.Name =
"Returns"
End
Sub
Hello.
I'm converting a SharePoint web farm from MOSS 2007 to SharePoint 2010 Enterprise, and my client uses the RadEditor for MOSS. We currently have RadEditor 5.8.4.0 (radeditormoss.wsp) installed. On one of our sites, we can't put any publishing pages in edit mode without getting the following error. Does anyone know what might be causing this error?