2
Views
1
Comments
Editable Table
Question
Hi Guys,

Regarding Editable Tables... how can I:
1. Hide the 'add record' at the bottom?
2. Rename it from the default - see screen grab - I want to name the add record to 'Add a new Tenant'
Cheers
Gary
Capture.JPG
2011-08-23 22-04-05
Tiago Simões
Staff
Hi Gary,

Answering your questions:

1. Hide the 'add record' at the bottom:
td.RowWithAddAction {
    display: none;
}

2. Rename it from the default:
td.RowWithAddAction i:after {
    content: " Add New Tenant";
    font-family: Roboto;
    font-size: 14px;
}

td.RowWithAddAction i {
    position: absolute;
    background: white;
    width: 200px;
    z-index: 1;
}
These should be easier, specially the second one, we'll add it to our backlog.

Thanks,
Tiago Simões

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.