elabx Posted November 13, 2018 Share Posted November 13, 2018 Does anyone know if it' s possible for file field to show the uploaded files whole names, and not abbreviate it with three dots. Link to comment Share on other sites More sharing options...
louisstephens Posted November 13, 2018 Share Posted November 13, 2018 I did find this topic: @Robin S provided a hook for site/ready.php $wire->addHookBefore('InputfieldFile::render', function(HookEvent $event) { $inputfield = $event->object; $inputfield->noShortName = true; }); 3 1 Link to comment Share on other sites More sharing options...
szabesz Posted November 14, 2018 Share Posted November 14, 2018 AOS also has this tweak: https://github.com/rolandtoth/AdminOnSteroids/wiki/FileFieldTweaks Quote Disable filename truncation for File fields: filenames displayed are cut to 20 characters by default. This tweak removes this limitation and shows the full name. If enabled, the delete button is not positioned to the right but right after the filename to avoid display issues when the filename spans to multiple rows. 2 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now