Search results

MentionComponent

The Mention component contains a list of predefined values, from which the user can choose a single value.

<ejs-mention></ejs-mention>

Properties

actionFailureTemplate

string | Function

Accepts the template and assigns it to the popup list content of the component when the data fetch request from the remote server fails.

Defaults to ‘Request failed’

allowSpaces

boolean

Defines whether to allow the space in the middle of mention while searching. When disabled, the space ends the mention component search.

Defaults to false

cssClass

string

Defines class/multiple classes separated by a space for the mention component.

Defaults to null

dataSource

{ [key: string]: Object }[] | DataManager | string[] | number[] | boolean[]

Accepts the list items either through local or remote service and binds it to the component. It can be an array of JSON Objects or an instance of DataManager.

Defaults to []

displayTemplate

any

Specifies the template for the selected value from the suggestion list.

Defaults to null

enablePersistence

boolean

Enable or disable persisting component’s state between page reloads.

Defaults to false

enableRtl

boolean

Enable or disable rendering component in right to left direction.

Defaults to false

fields

FieldSettingsModel

Defines the fields of the Mention to map with the data source and binds the data to the component.

  • text - Specifies the text that maps the text filed from the data source for each list item.
  • value - Specifies the value that maps the value filed from the data source for each list item.
  • iconCss - Specifies the iconCss that map the icon class filed from the data source for each list item.
  • groupBy - Specifies the groupBy that groups the list items with its related items by mapping groupBy field.

Defaults to { text: null, value: null, iconCss: null, groupBy: null}

filterType

FilterType

Determines on which filter type, the component needs to be considered on search action. and its supported data types are

FilterType
Description
Supported Types
StartsWith
Checks whether a value begins with the specified value.
String
EndsWith
Checks whether a value ends with a specified value.


String
Contains
Checks whether a value contains with a specified value.


String

The default value set to Contains, all the suggestion items which contain typed characters to listed in the suggestion popup.

Defaults to ‘Contains’

groupTemplate

string | Function

Accepts the template design and assigns it to the group headers present in the popup list.

Defaults to null

highlight

boolean

Specifies whether to highlight the searched characters on suggestion list items.

Defaults to false

ignoreAccent

boolean

ignoreAccent set to true, then ignores the diacritic characters or accents when filtering.

ignoreCase

boolean

Specifies whether the searches are case sensitive to find suggestions.

Defaults to true

itemTemplate

any

Specifies the template for the suggestion list.

Defaults to null

locale

string

Overrides the global culture and localization value for this component. Default global culture is ‘en-US’.

Defaults to ‘en-US’

mentionChar

string

Specifies the symbol or single character which triggers the search action in the mention component.

Defaults to ’@’

minLength

number

Specifies the minimum length of user input to initiate the search action. The default value is zero, where suggestion the list opened as soon as the user inputs the mention character.

Defaults to 0

popupHeight

string | number

Specifies the height of the popup in pixels/number/percentage. The number value is considered as pixels.

Defaults to ‘300px’

popupWidth

string | number

Specifies the width of the popup in pixels/number/percentage. The number value is considered as pixels.

Defaults to ‘auto’

query

Query

Specifies the external query, which can be customized and filtered against the data source.

Defaults to null

showMentionChar

boolean

Specifies whether to show the configured mentionChar with the text.

Defaults to false

sortOrder

SortOrder

Specifies the order to sort the data source. The possible sort orders are,

  • None - The data source is not sorted.
  • Ascending - The data source is sorted in ascending order.
  • Descending - The data source is sorted in descending order.

Defaults to ‘None’

spinnerTemplate

any

Specifies the template for showing until data is loaded in the popup.

Defaults to null

suffixText

string

Specifies the custom suffix to append along with the mention component selected item while inserting. You can append space or new line character as suffix.

Defaults to null

suggestionCount

number

Specifies the number of items in the suggestion list.

Defaults to 25

target

HTMLElement | string

Specifies the target selector where the mention component needs to be displayed. The mention component listens to the target’s user input and displays suggestions as soon as the user inputs the mention character.

zIndex

number

specifies the z-index value of the component popup element.

Defaults to 1000

Methods

addItem

Adds a new item to the popup list. By default, new item appends to the list as the last item, but you can insert based on the index parameter.

Parameter Type Description
items { [key: string]: Object }[] | { [key: string]: Object } | string | boolean | number | string[] | boolean[] | number[] Specifies an array of JSON data or a JSON data.
itemIndex (optional) number Specifies the index to place the newly added item in the popup list.

Returns void

destroy

Removes the component from the DOM and detaches all its related event handlers. Also it removes the attributes and classes.

Returns void

getDataByValue

Gets the data Object that matches the given value.

Parameter Type Description
value string | number | boolean | any Specifies the value of the list item.

Returns { [key: string]: Object } | string | number | boolean

getItems

Gets all the list items bound on this component.

Returns Element[]

hidePopup

Hides the popup if it is in an open state.

Returns void

Search the entered text and show it in the suggestion list if available.

Returns void

showPopup

Opens the popup that displays the list of items.

Returns void

Events

dataBound

EmitType<Object>

Triggers when data source is populated in the popup list..