Page 1 of 1

Add New Item Text

Posted: 13 Feb 2017
by ksertkaya
Hi,

I want to write "New Employee" instead of "Add New Item". Can I change this text?

http://prntscr.com/e86xwg

Re: Add New Item Text

Posted: 14 Feb 2017
by Dmitry Kozlov
Hi,

Assign a CSS-class to the Related Items control, say 'related-items' and put the following code into JS-editor:

$('.related-items a.ms-addnew').text('New Employee');

Re: Add New Item Text

Posted: 14 Feb 2017
by ksertkaya
Thanks Dimitry!

Re: Add New Item Text

Posted: 17 Feb 2017
by ksertkaya
Hello again,



I want to hide all collums' filter in related table. Can I do this?



http://prntscr.com/e9vrf4

Re: Add New Item Text

Posted: 20 Feb 2017
by Dmitry Kozlov
Hi,

Assign a CSS-class to the list view in Forms Designer, say 'related-items' and insert the code into CSS-editor:


.related-items .ms-menuimagecell {
display: none !important;
}

Re: Add New Item Text

Posted: 24 Feb 2017
by ksertkaya
Hi,


It works but I can still filtering in related table. It should not allow filtering. Is it possible?


Thanks in advance.

Re: Add New Item Text

Posted: 24 Feb 2017
by ksertkaya
It works:

.related-items.ms-core-menu-list {

display: none !important;

}

Thanks!