Skip to content

Grid: How to make text of the row to be Bold. #761

Discussion options

You must be logged in to vote

@joselitogatchalianalonzo Thank you for using BlazorBootstrap. Here is the example

Example:

<Grid TItem="Employee1"
Class="table table-hover table-bordered"
      DataProvider="EmployeesDataProvider"
      AllowFiltering="true"
      AllowPaging="true"
      PageSize="5"
      AllowSorting="true"
      IsResponsive="true"
      RowClass="GetRowClass">

    <GridColumn TItem="Employee1" HeaderText="Id" PropertyName="Id" SortKeySelector="item => item.Id">
        @context.Id
    </GridColumn>
    <GridColumn TItem="Employee1" HeaderText="Employee Name" PropertyName="Name" SortKeySelector="item => item.Name">
        @context.Name
    </GridColumn>
    <GridColumn TItem="Employee1" Header…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by gvreddy04
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested area-grid ✔️ Resolution: Answered Resolved because the question asked by the original author has been answered.
2 participants
Converted from issue

This discussion was converted from issue #758 on June 17, 2024 15:34.