Hello,
I added a search filter on the top of the listing.
This feature deactive the toolbar button "New".
Here is what I filled in the header of "Front List / Display List / Table":
When I remove the lines
The button "New" works as expected.
I made another test. When I made the Search Submit button visible (removing style="display:none"), I click on the button "New", then the Search Submit button, this open my form.
This Search Submit button is associated to the complete listing.
Do you have an idea how this search filter could be implemented?
Thanks for your help.
I added a search filter on the top of the listing.
This feature deactive the toolbar button "New".
Here is what I filled in the header of "Front List / Display List / Table":
_TOOLBAR_NEW_
_TOOLBAR_DELETE_
<head>
<meta charset='UTF-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Language" content="en">
<meta name="viewport" content="width=device-width, initial-scale=1">
<input type="text" name="srch" placeholder="Filter ..." style="float:right" class="form-control A" />
<input type="submit" name="submit" value="Submit" style="display:none"/>
</head>
<script>
......
</script>
When I remove the lines
<input type="text" name="srch" placeholder="Filter ..." style="float:right" class="form-control A" />
<input type="submit" name="submit" value="Submit" style="display:none"/>
The button "New" works as expected.
I made another test. When I made the Search Submit button visible (removing style="display:none"), I click on the button "New", then the Search Submit button, this open my form.
This Search Submit button is associated to the complete listing.
Do you have an idea how this search filter could be implemented?
Thanks for your help.