# XWUIHrJobsPage

Recruitment job-requisitions page, built on `HrListPage` (a shell page extending `XWUIShellPage` via `HrPageBase`). On load it calls `hrApi.listJobs()` and renders the open roles in a striped, hoverable `XWUIDataGrid` with **Title**, **Department**, and **Status** columns; if the API returns no rows it shows a "No records found" empty state. Default page title is "Jobs". Construct it with page `data` (`title`, `description`, `breadcrumbs`, `toolbar`, optional pre-loaded `rows`) and `conf_comp` carrying `hrApiOptions` plus standard page-base props (`maxWidth`, `centered`, `padding`, `hideHeader`, `hideBreadcrumbs`, aside widths, `className`).

## Basic Usage

Mounts the Jobs page against the sandbox HR API; with no `rows` supplied it fetches `listJobs()` and fills the Title/Department/Status grid.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: Constructs XWUIHrJobsPage with hrApiOptions.env 'sandbox' so listJobs() drives the requisitions data grid.
```

## Arabic locale (RTL)

Passes `{ locale: 'ar' }` with a `titleAr` so the page resolves the Arabic title (`الوظائف`) and renders right-to-left.

```example
file: examples/ArabicLocale.ts
html: examples/ArabicLocale.html
title: Arabic locale (RTL)
description: Arabic title via titleAr plus locale 'ar' for a right-to-left page.
```

## Constrained, centered layout

Caps the content column at 1200px, centers it, and adds roomier padding via the shell-page config.

```example
file: examples/ConstrainedLayout.ts
html: examples/ConstrainedLayout.html
title: Constrained, centered layout
description: `{ maxWidth: '1200px', centered: true, padding: '2rem' }` constrains and centers the page column.
```

```api
```
