---
title: Resource Day Header Render Hooks
---

In Resource DayGrid and Resource TimeGrid views, a "resource day header" is the cell in the column header that displays a resource's name.

`resourceDayHeaderAlign` - horizontal alignment of the content. Accepts `'start'`, `'center'`, or `'end'`. Theme decides the default. In a left-to-right locale, `'start'` means left and `'end'` means right.

`resourceDayHeaderClass` - a [ClassName Input](classname-input)

`resourceDayHeaderInnerClass` - a [ClassName Input](classname-input) for the inner wrapper of the resource day header. Useful for adjusting padding.

`resourceDayHeaderContent` - a [Content Injection Input](content-injection)

`resourceDayHeaderDidMount`

`resourceDayHeaderWillUnmount`


## Argument

When the above hooks are specified as a function in the form `function(arg)`, the `arg` is an object with the following properties:

- `resource` - [Resource Object](resource-object)
- `date` - if the column is scoped to a particular date, this will be the Date object
- `text`
- `isOther`
- `isToday`
- `isPast`
- `isFuture`
- `isDisabled`
- `isNarrow`
- `isMajor`
- `level`
- `el` - the element. only available in `resourceDayHeaderDidMount` and `resourceDayHeaderWillUnmount`
