Skybrud.Umbraco.GridData v3.0.2
New release for Umbraco 8. This release will not work with Umbraco 7.
Installation
Changelog
-
Introduced new
IGridElementConverter
interface (see 5b08a79)
The interface and related logic adds a way to get the searchable text for controls that may holdIPublishedElement
values - eg. when using DTGE. -
Added generic support for
GridControl
andGridEditor
(see c77d7cf and 8f28276)
Backported from the V9 version of this package.For editor that has a configuration, the returned type is now
GridEditor<TConfig>
instead of justGridEditor
, which results in theConfig
property being of typeTConfig
ofIGridEditorConfig
.GridEditor<TConfig>
extends theGridEditor
class, andTConfig
must implement theIGridEditorConfig
to ensure this doesn't cause any breaking changes.In the same way, controls will now be returned as
GridControl<TValue>
if is has a value - or evenGridControl<TValue, TConfig>
if the editor of the control also has a configuration.GridControl<TValue, TConfig>
extendsGridControl<TValue>
which extendsGridControl
, andTValue
must implement theIGridControlValue
interface.