I need to overwrite the template files under htdocs/typo3/sysext/filelist/Resources/Private/Templates/FileList Specially htdocs/typo3/sysext/filelist/Resources/Private/Templates/FileList/Search.html
I have created copied and modify the file in: myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates/Search.html
Typo3 8 Reading the information in : https://docs.typo3.org/typo3cms/ExtbaseFluidBook/10-Outlook/2-Backend-modules.html
This is what i tried:
module.file_FilelistList {
view {
templateRootPaths {
100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates/
}
}
}
module.FilelistList {
view {
templateRootPaths {
100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates/
}
}
}
module.filelist {
view {
templateRootPaths {
100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates/
}
}
}
and also
module.tx_file_FilelistList {
view {
templateRootPaths {
100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates
}
}
}
module.tx_FilelistList {
view {
templateRootPaths {
100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates
}
}
}
module.tx_filelist {
view {
templateRootPaths {
100 = EXT:myextension/Resources/Private/Extensions/sysext/filelist/Resources/Templates
}
}
}
But is not working, plase help