Forum Discussion
Leonard_Tan
Jun 30, 2021Copper Contributor
SharePoint List Gallery View Formatting - How do I wrap text?
Hi experts, I was looking at this FAQ for solutions but I don't seem to be able to get solve it. Basically, I want to do a text wrap into something like this. So I tried with similar st...
- Jun 30, 2021
Leonard_Tan Don't remove sp-card-content class from all column components. Just remove it from Description, where you want to apply text wrap.
If you have done the above & still it is not showing other columns, check if those columns are pushed out of card. In this case, you have to increase the height of top div element in JSON.
Also, if the description text length is variable, consider truncating the text because if the text is longer, it will start pushing other columns below & then out of card --> This is what I mentioned in "Note" in my previous post (handling overflow of text).
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
ganeshsanap
Jun 30, 2021MVP
Leonard_Tan Don't remove sp-card-content class from all column components. Just remove it from Description, where you want to apply text wrap.
If you have done the above & still it is not showing other columns, check if those columns are pushed out of card. In this case, you have to increase the height of top div element in JSON.
Also, if the description text length is variable, consider truncating the text because if the text is longer, it will start pushing other columns below & then out of card --> This is what I mentioned in "Note" in my previous post (handling overflow of text).
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
Leonard_Tan
Jul 01, 2021Copper Contributor
ganeshsanap
Thank you very much, you have been a great help. I think the trick is to reset the formatting when adding new columns to the list. This way the system will repopulate the codings for new items. I believe cause the new information isn't on the JSON script which causes the new items to "disappear" from the card view.
I have another question which perhaps not related to this topic title. How do I create a filter that allows users to filter the card to the desired result? Do you know where I could find the learning resources for this? If needed, I will create another topic post for discussion.
- ganeshsanapJul 01, 2021MVP
Leonard_Tan This is not possible using SharePoint out of the box capabilities. You need to develop custom solution (SPFx web part) for such requirements.
However, if number of countries are fixed, you can create a separate list view for each country & then users can switch between list views to see the cards from different countries.
Check below documentations for more information about list views & filtering:
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
- Leonard_TanJul 01, 2021Copper Contributor
Thank you Ganesh. I really would not know how to proceed with your help.
I found a workaround on this. Is there anyway I can disable these setting as I do not want users to alter the form accidentally.- ganeshsanapJul 01, 2021MVP
Leonard_Tan We cannot hide List, Compact List & Tiles as this is SharePoint out of the box.
But, you can hide highlighted settings at the bottom (create new view, save views as, etc.) by granting only necessary permissions to users --> Users with only Read permissions will not be able to see these options, but they can see all the cards and countries (list views) as expected.
Check this documentation for more information about permission levels: User permissions and permission levels in SharePoint Server
If my post is useful, please consider giving it Like.