Table of Contents

Class FieldDisplayGroup

Namespace
Dynamicweb.Ecommerce.Products.FieldDisplayGroups
Assembly
Dynamicweb.Ecommerce.dll

The class FieldDisplayGroup represents preset of visible fields.

[PermissionEntity("FieldDisplayGroup")]
public class FieldDisplayGroup : IPermissionEntity, IPermissionEntityLookup
Inheritance
FieldDisplayGroup
Implements
Inherited Members
Extension Methods

Constructors

FieldDisplayGroup()

public FieldDisplayGroup()

Properties

AvailableInFrontend

It used to show the field group in the loops in the frontend rendering.

public bool AvailableInFrontend { get; set; }

Property Value

bool

FieldIdsList

Gets or sets ids of the preset fields

public IEnumerable<string> FieldIdsList { get; set; }

Property Value

IEnumerable<string>

Id

Gets or sets the group id

public int Id { get; set; }

Property Value

int

ShopIdsList

Gets or sets ids of the preset shops

public IEnumerable<string> ShopIdsList { get; set; }

Property Value

IEnumerable<string>

SortIndex

Gets or sets the sorting index

public int SortIndex { get; set; }

Property Value

int

SystemName

Gets or sets the system name of the FieldDisplayGroup

public string SystemName { get; set; }

Property Value

string

Translations

Gets the translations

public TranslationCollection<FieldDisplayGroupTranslation> Translations { get; }

Property Value

TranslationCollection<FieldDisplayGroupTranslation>

Methods

GetName(string)

Gets the name of the field display group for the given language.

public string GetName(string languageId)

Parameters

languageId string

Returns

string

SetName(string, string)

Sets the name of the field display group for the given language.

public void SetName(string languageId, string name)

Parameters

languageId string
name string
To top