Manipulation interactive view of table view knode

Hi Knimers,

I am trying to set up a nicely looking interactive table view using the table view node and a CSS editor. Therefore I already managed to change colors, bolt, font, etc. with the help of CSS Editor. The thing I am currently struggeling is: there is a default information underneath the table which is giving you information about how many entries are displayed in the view. In words: “Showing 1 to 1 of 1 entries”.
Example
I don’t want to have this information in my interactive view. Is there a way to hide it?
Thanks in advance!
Br, Oliver

2 Likes

Hello @Oliver_1,

sure there is.

.knime-table-info{
     display: none;
	}

Br,
Ivan

4 Likes

Hello Ivan,
too easy…thanks for that quick response. Works perfectly!
I really appreciate your help!

Br,
Oliver

3 Likes

Hi Oliver!

you are welcome. Took some time to find proper class and property.

Used this references:
https://docs.knime.com/latest/analytics_platform_css_guide/index.html#_css_styling_for_javascript_views_and_widgetquickform_nodes
https://www.w3schools.com/JSREF/dom_obj_style.asp

Br,
Ivan

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.