Member Editor

11 Feb 20191 minute to read

Member editor is a dialog that displays the members of the current field in a tree view structure, which can be opened by clicking the pivot button available in the axis elements. It helps to search, filter, and sort the field members available in the pivot client control.

Member editor in ASP NET MVC pivot client control

Member editor - Paging

Member editor paging helps to improve the rendering performance of the dialog by dividing large amount of data into sections and displaying them.

You can enable member editor paging and set member editor page size in PivotClient control by setting the EnableMemberEditorPaging and MemberEditorPageSize properties.

  • CSHTML
  • @Html.EJ().Pivot().PivotClient("PivotClient1").EnableMemberEditorPaging(true).MemberEditorPageSize(100)

    Following are the navigation option available in Member Editor Pager.

    • Move First - Navigates to the first page.
    • Move Previous - Navigates to the previous page from the current page.
    • Move Next - Navigates to the next page from the current page.
    • Move Last - Navigates to the last page.
    • Numeric Box - Navigates to the desired page by entering an appropriate page number in numeric value.

    Member editor paging in ASP NET MVC pivot client control

    Member editor - Sorting

    The sorting support in member editor helps you to sort the field members either in ascending or descending order.

    You can enable the member editor sorting in the pivot grid control by setting the [EnableMemberEditorSorting] property.

  • CSHTML
  • @Html.EJ().Pivot().PivotClient("PivotClient1").EnableMemberEditorSorting(true)

    Member editor sorting with ascending order in ASP NET MVC pivot client control

    Member editor sorting with descending order in ASP NET MVC pivot client control