Replies: 4 comments 3 replies
-
I found a pretty dirty solution for the moment :s
})(); let interval_id; function loadImages() {
} |
Beta Was this translation helpful? Give feedback.
-
It's hard for me to tell, since there are no steps to reproduce. artisan view:clear |
Beta Was this translation helpful? Give feedback.
-
same scenario and same problem here:
still no filter icon near table headers, so no able to filter table rows. As minor bug also More context: Switching back to bs icons fixes the issue but misses other icons: // config/platform.php
'icons' => [
- 'orc' => \Orchid\IconPack\Path::getFolder(),
+ 'bs' => \Orchid\Support\BootstrapIconsPath::getFolder(), and this fixes everything: // config/platform.php
'icons' => [
'orc' => \Orchid\IconPack\Path::getFolder(),
+ 'bs' => \Orchid\Support\BootstrapIconsPath::getFolder(), // of course here you can add fontawesome reference for icons |
Beta Was this translation helpful? Give feedback.
-
I have what may be a related problem but not exactly the same. I thought it might overlap so I'm commenting here. I'm running Orchid 14.8.1 (using "orchid/icons": "^2.0") and made code changes to existing classes to add a filter icon beside the 'uniqueid' column heading "Reference Id". I followed Orchid doc page "Sorting and Filtering In a Table" at https://orchid.software/en/docs/quickstart-sort-filter-table/#docs. The column heading "Reference Id" is displayed but there is no filter icon beside it as I had expected. Also, there are filter statements present in the page source within the tag for this column, but for some reason no icon is displayed. Perhaps it's evident from the html why it isn't being displayed but I couldn't figure it out. Here's a screenshot of the html for the 'uniqueid' column. I'd be glad to share the appropriate class sections if this doesn't provide enough information. I also found that there's a small white space to the left of the Reference Id heading where you can click and get the filter input display. |
Beta Was this translation helpful? Give feedback.
-
Hello,
I update Orchid from 13 to 14. I also update the filter code and everything works except that the button's icon disapear.
<button class="btn btn-sm btn-link dropdown-toggle p-0 me-1" type="button" data-bs-toggle="dropdown" aria-haspopup="true" data-bs-boundary="viewport" aria-expanded="false"> </button>
It's the same with the filter badge, there are no cross to close it. Is it because i use fontawesome icon in my config ?
Thx in advance
LEON Frédéric
Beta Was this translation helpful? Give feedback.
All reactions