---
title: "Deprecation: #80047 - Deprecate jQuery and extJS for BE viewhelpers"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-80047"
source: "Changelog/8.7/Deprecation-80047-DeprecateJQueryAndExtJSForBEViewhelpers.rst"
typo3-version: "8.7"
typo3-major: 8
type: "deprecation"
issue: 80047
forge: "https://forge.typo3.org/issues/80047"
tags: ["Backend", "Fluid"]
rendered: "2026-09-23T19:53:57+00:00"
---

# Deprecation: #80047 - Deprecate jQuery and extJS for BE viewhelpers {#deprecation-80047}

See [forge#80047](https://forge.typo3.org/issues/80047)

## Description {#description}

The BE related ViewHelpers `<f:be.container>` and `<f:be.pageRenderer>` have properties to activate ExtJS
and jQuery with various options. The usage of ExtJS has been deprecated and jQuery is always loaded. Therefore the
following attributes have been marked as deprecated.

`<f:be.container>`

-   `enableClickMenu`
-   `loadExtJs`
-   `loadExtJsTheme`
-   `enableExtJsDebug`
-   `loadJQuery`
-   `jQueryNamespace`

`<f:be.pageRenderer>`

-   `loadExtJs`
-   `loadExtJsTheme`
-   `enableExtJsDebug`
-   `loadJQuery`
-   `jQueryNamespace`

## Impact {#impact}

Using these attributes will trigger a deprecation log entry. Code using them will work until these methods are removed in TYPO3 v9.

## Affected Installations {#affected-installations}

Any installation using the mentioned attributes.

## Migration {#migration}

Use `includeRequireJsModules` property of the `<f:be.pageRenderer>` or `<f:be.container>` ViewHelpers to add needed RequireJS modules.

Example:

```xml
<f:be.pageRenderer
   includeRequireJsModules="{
      0:'TYPO3/CMS/Backend/ContextMenu'
   }"
/>
```

See also documentation about RequireJS [documentation](https://docs.typo3.org/typo3cms/CoreApiReference/ApiOverview/JavaScript/RequireJS/Index.html)
