Hide column buttons and quicksearch
-
- Posts: 10
- Joined: 2022-05-26 07:37
Hide column buttons and quicksearch
I would like to hide both the buttons for column views and the quick search on the homepage.If I click on the columns icon, it conflicts with the columns set by AppGini Helper and creates a poor display. How do I disable the columns buttons added by last version? If possible, I would also like to know how to disable 'quick search' on the homepage.
Re: Hide column buttons and quicksearch
Hi, off topic, apart from your questions:
if you can send me a screenshot and some additional information about your script code I will check if I can fix the "conflicts". Right now I don't know exactly which conflicts there are.
Please send order number and additional info by email to [email protected]
if you can send me a screenshot and some additional information about your script code I will check if I can fix the "conflicts". Right now I don't know exactly which conflicts there are.
Please send order number and additional info by email to [email protected]
Kind regards,
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
AppGini 24.14 Revision 1665 + all AppGini Helper tools
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
[code]...[/code]
blocks for better readabilityAppGini 24.14 Revision 1665 + all AppGini Helper tools
-
- Posts: 10
- Joined: 2022-05-26 07:37
Re: Hide column buttons and quicksearch
Hi, simply I don't need those buttons because I create the columns with appgini helpers and I don't care if they change.
The first image is the default view the second one when I click on the two column icon. All the fields get mashed into the first column. The code is:
var row_data = dv.addLayout([12])
.add(1, ["Data_carico"])
.add(1, ["sesso"])
.wrapLabels();
var row_comune = dv.addLayout([6,6])
.add(1, ["nascita"])
.add(2, ["titolo_studio"])
.wrapLabels();
Sergio
I use:
The first image is the default view the second one when I click on the two column icon. All the fields get mashed into the first column. The code is:
var row_data = dv.addLayout([12])
.add(1, ["Data_carico"])
.add(1, ["sesso"])
.wrapLabels();
var row_comune = dv.addLayout([6,6])
.add(1, ["nascita"])
.add(2, ["titolo_studio"])
.wrapLabels();
Sergio
I use:
- Attachments
-
- immagine_2024-06-27_194720539.png (3.5 KiB) Viewed 650 times
Re: Hide column buttons and quicksearch
OK, now I got it. I've already asked Ahmed for a disable option exactly for the reason that we don't need two- or three-column layout when using custom layouts with AppGiniHelper JS Lib.
Next AppGini Helper JS Library will have a function for removing those buttons.
Send me your ordernumber and (if within your 1-year-free-updates period) I can send Beta 4 to you.
Next AppGini Helper JS Library will have a function for removing those buttons.
Send me your ordernumber and (if within your 1-year-free-updates period) I can send Beta 4 to you.
Kind regards,
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
AppGini 24.14 Revision 1665 + all AppGini Helper tools
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
[code]...[/code]
blocks for better readabilityAppGini 24.14 Revision 1665 + all AppGini Helper tools
-
- Posts: 10
- Joined: 2022-05-26 07:37
Re: Hide column buttons and quicksearch
First of all, thank you for your interest. Secondly, I am very happy to hear that a new update of AppGini Helper is planned. As a fan of the program i won't hide that I was a bit worried about the lack of updates. This is the reason (sorry) why I did not renew my annual license the last time it expired. I can't wait to start purchasing it again! For now, I will wait patiently.
Thank you, Jan
Thank you, Jan
Re: Hide column buttons and quicksearch
I am using the following codes for the things you mentioned.
Add them in hooks/footer-extras.php
Hope this helps.
Add them in hooks/footer-extras.php
Code: Select all
<!-- hide Homepage search in Home Page -->
<script>
AppGini.disableHomePageSearch = true;
</script>
<!-- hide multiple layout button in DV -->
<script>
$j(function() {
$j('.detail_view-layout').remove();
});
</script>
Zala.
Appgini 24.17, MacOS 14.6 Windows 11 on Parallels.
Appgini 24.17, MacOS 14.6 Windows 11 on Parallels.
-
- Posts: 10
- Joined: 2022-05-26 07:37
Re: Hide column buttons and quicksearch
Great! works perfectly.
Thank you.
Thank you.
-
- Posts: 6
- Joined: 2021-12-07 17:58
Re: Hide column buttons and quicksearch
Hi zibrahim,
Thank's you for this code ... the Quick Search is now disable on my Main Home Page ...
Note for APPGINI Team: this issue began since version 24.13 ... and the option to disable the Quick Search is not exist for the Main Page ... Work Only for the Tables.
Regards
Thank's you for this code ... the Quick Search is now disable on my Main Home Page ...
Note for APPGINI Team: this issue began since version 24.13 ... and the option to disable the Quick Search is not exist for the Main Page ... Work Only for the Tables.
Regards