Search Results for

    Show / Hide Table of Contents

    Interface IOpenGridItemImplementor<T>

    An interface implemented by grids to allow rows to be selected, and also a possible relationship to use to open the specified item

    Inherited Members
    IGridSelector.SelectItems(IEnumerable)
    IHasToggleStatus.IsToggled
    IHasToggleStatus.ToggleChanged
    System.IDisposable.Dispose()
    IItemSelector.SelectionMode
    IItemSelector.SelectionChanged
    IItemSelector.SelectedObjects
    Namespace: LemonEdge.Client.Core.Commands.ViewCommands
    Assembly: ClientCore.dll
    Syntax
    public interface IOpenGridItemImplementor<T> : IGridSelector, IGridSelectionMode, IHasToggleStatus, IDisposable, IItemSelector
    Type Parameters
    Name Description
    T

    The selected entity type in the grid to open items from

    Properties

    OpenFromRelatedColumnName

    An optional relationship property on the entity type T to use to open the item instead of the item itself

    Declaration
    string OpenFromRelatedColumnName { get; }
    Property Value
    Type Description
    System.String

    SelectedItems

    The list of selected items in the grid

    Declaration
    IEnumerable<T> SelectedItems { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IEnumerable<T>

    Methods

    SelectItems(IEnumerable<T>)

    Forces the grid to select the specified items

    Declaration
    void SelectItems(IEnumerable<T> items)
    Parameters
    Type Name Description
    System.Collections.Generic.IEnumerable<T> items

    The items to be automatically selected within the grid

    Extension Methods

    MiscExtensions.SetIfNotEqual<T, P>(T, Expression<Func<T, P>>, P)
    ReflectionExtensions.ClearEventInvocations(Object, String)
    StringExtensions.ToCSVFormatString(Object, Type)
    SQLExtensions.ToSQLValue(Object, Boolean)
    In This Article
    Back to top © LemonTree Software Ltd. All rights reserved.