-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better display long Dataset names in the Table view #603
Comments
@pkritzinger what about cutting the name and putting the dots at the end? |
@sseppi yes, truncating the name after having defined the max-length would be a great solution (do you know how long the dataset name can be?). Maybe on hover we can show the full dataset name by using the tooltip provided by the browser, s. example below. |
@pkritzinger we didn't define any limit for the dataset's name length. For now the "Echarging station accessibility" is the longest, but if future we could have even longer names. I like the truncation of the name with the hover effect you proposed. |
@sseppi @pkritzinger I recommend to let the browser do the truncation via css. Defining a max number of characters is not always helpful with non-monospaced fonts, e.g. iiiiiiiiii => 10 chars |
@gappc Yes, you're right. I would do the truncation via css and implement the hover effect to see the full dataset name. Moreover, once the dropdown menu is open, in the list of dataset the full name must be shown, to let the user find the dataset he is looking for. |
@pkritzinger in my point of view is ready to be implemented. |
…ataset name ref. issue noi-techpark#603
With the introduction of the new header of the Table view, we have a display problem of Dataset with long names (more than one line).
As you can see from the screenshot below, the long names exceed the borders of the drop-down component.
We should think a better solution for long dataset names.
The text was updated successfully, but these errors were encountered: