Edit List Filter search button caption

Confluence User - 27 Aug, 2024

How can we edit the List filter search button caption? There is nowhere to edit its properties! I want to change it from Show to Search or Filter.

list;forms;datalists

3


28 Aug, 2024
confluenceUser
1
confluenceUser

There's a low code way of doing it using Javascript. You can just add 

<script>
document.querySelector('.form-button').value = 'Search';
</script>

to Configure CRUD > UI (List) > Custom Header

28 Aug, 2024
confluenceUser
confluenceUser

I use script page component to put this code (without <script> tag) and worked. But there are more than one html tags that have this class. For this particular situation there in no problem but I think that it is a dangerous approach since the button doesn't have an id. 

28 Aug, 2024
confluenceUser
confluenceUser

Also because this is a front-end approach and not back-end (late approach since the change is done after DOM loaded) the old value is still there if you view the HTML source code and also in the joget form!!!

RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print