Forum Discussion
Custom field rendering in modern list views
Can I just, please, change the width of the Name field? I have one list in one site that I'm the only user of and the names are extraordinarily large because they are coming from Dynamics CRM. (Dynamics is concatenating the Organization Name with the GUID.) This is making data management quite difficult for me, a super user, with no time to learn JSON.
- LincolnDeMarisMar 12, 2018
Microsoft
We are working on better functionality for resizing columns. You won't need the column formatter for this. We'll let you click and drag to resize, and then you can save that width in your current view.
- Jos SpeelmansMar 12, 2018Copper Contributor
Sounds like a great solution. Intuitive and user friendly.
- Amy Felton-TothMar 12, 2018Copper Contributor
Thank you. Do you know when this will be available?
- Danny EngelmanMar 12, 2018Iron Contributor
If it is only for you, then let your Browser make that change.
Install a Browser plugin like Stylish, which always applies the CSS on the loaded page:
table[summary*='Document'] tbody TD[class*='ms-vb-title'] DIV{ background:pink; max-width:10em; overflow:hidden; }> Get the Table with 'Document' in the name
> goto the TBODY
> get the TD which has the (default) SP Title
> get the DIV
> Apply CSS
Same concept but totally different CSS Selector can be applied to a Modern Page (I don't have one at hand; learn CSS)