Posts

Showing posts with the label libraries

Viewing file properties instead of file in SharePoint document library

Viewing file properties instead of file in SharePoint document library I have a document library on SharePoint online with lots of columns for metadata. These columns won't fit in a single view on screen, so I want the users to first view the properties of the file before downloading them. Is there a way to change the behavior of the SharePoint library ensure that the user views the file properties first when they click on the filename? PS: I understand I could have used lists, but after loading about 10000 documents, I have decided to use it as a last resort. Thank you. 1 Answer 1 Custom the LinkFilename field by CSR. Sample code: (function () { 'use strict'; var CustomWidthCtx = {}; /** * Initialization */ function init() { CustomWidthCtx.Templates = {}; CustomWidthCtx.Templates.Fields = { 'LinkFilename': { ...

Buildroot: how to add libraries

Buildroot: how to add libraries I am working on a buildroot project to make a small custom os. I only include the absolute necessary packages. One of the things I add is a precompiled program that uses certain libraries that are not included on the system. I want the system to include them, but I cannot find them in the buildroot menuconfig , linux-menuconfig or busybox-menuconfig . menuconfig linux-menuconfig busybox-menuconfig So my question is: how do I add libraries to my system in buildroot? I have tried searching for them in the menuconfigs and I have also tried to find information about this in the buildroot manual. The libraries I want to include are: ld-linux-armhf.so.3 libdl.so.2 libc.so.6 After some searching I have found that: ld-linux-armhf.so.3 ld-2.*.*.so libc libc.so.2 1 Answer 1 The libraries you list are part of the C library, itself part of the toolchain. Buildroot will always pr...