Welcome to the nuBuilder Forums!

Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.

wrap text in browse form

Questions related to using nuBuilder Forte.
Locked
Timo
Posts: 221
Joined: Thu Mar 15, 2018 9:26 pm
Has thanked: 1 time

wrap text in browse form

Unread post by Timo »

How can I wrap text of a browse form cell? The text is truncated
img1.png
It should look like this:
img2.png
You do not have the required permissions to view the files attached to this post.
admin
Site Admin
Posts: 2829
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 30 times

Re: wrap text in browse form

Unread post by admin »

Timo,

You can add this to the Javascript of the Form you want to change.

Code: Select all

$('.nuBrowseTable').css('word-wrap', 'break-word')
Steven
Timo
Posts: 221
Joined: Thu Mar 15, 2018 9:26 pm
Has thanked: 1 time

Re: wrap text in browse form

Unread post by Timo »

Thank you :D
admin
Site Admin
Posts: 2829
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 30 times

Re: wrap text in browse form

Unread post by admin »

.
Locked