Tag: modify

Action: Send an HTTP request to SharePoint Endpoint: _api/web/fields('FIELD_ID') Headers: { "Content-Type": "application/json;odata=verbose", "IF-MATCH": "*", "X-Http-Method": "PATCH" } Body: { '__metadata': { 'type': 'SP.FieldLookup' }, 'Group': 'YOUR GROUP NAME' }
Fecha UTC (Que recibimos, por ejemplo, desde base de datos) var receivedDate = "2016-09-25T10:00:00"; Convertir a fecha Local receivedDate = new Date(receivedDate); //receivedDate: "Thu Sep 25 2016 12:00:00 GMT+0200 (Central Europe Daylight […]
Fecha Local (Que obtenemos, por ejemplo, desde un date picker) var obtainedDate = "2016-09-25 12:00"; Convertir a fecha UTC obtainedDate = new Date(obtainedDate).toUTCString(); //obtainedDate : "Sun, 25 Sep 2016 10:00:00 GMT" Al crear una […]
Si expandimos el disco duro de una máquina virtual con Mac OS X instalado, después tenemos que ampliar la partición dentro de la propia máquina. Desde Mac OS X El […]
En Visual Studio vamos al Solution Explorer y localizamos dentro de nuestro proyecto de SharePoint la carpeta Package. Dentro hacemos doble click en Package.package, se nos abrira una ventana con […]
Caso Tenemos un formulario Infopath con llamadas REST para obtener valores que utilizamos en Dropdowns. Al crear un nuevo item en la lista de SharePoint funciona. Al editar ese item […]
Nota: Al final de la explicación está el código entero para copy-paste. Nota: Si no lo ejecutamos directamente desde la SharePoint Management Shell debemos añadir su SnapIn: Add-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction […]
1. Vamos a la Central Administration 2. Manage Web Applications 3. Seleccionamos la Web Application que necesitemos 4. En la Ribbon, abrimos el desplegable de General Settings y seleccionamos Resource […]
This script works doing a PING request and obtaining its resultant IP. Feel free to change it and modify it as you need. First part does the PING request, second […]
If we couldn’t acces to the menu item “Edit Page” for any reason and we want to edit that page (e.g. to remove some webpart that blocks our page) we’ve […]