Podemos cambiar el usuario actual de nuestro Site de SharePoint en 2013 accediendo a la siguiente url: {MY_SITE}/_layouts/closeConnection.aspx?loginasanotheruser=true Por ejemplo: http://miportal.desharepoint.com/_layouts/closeConnection.aspx?loginasanotheruser=true
Etiqueta: close
Disable input ENTER key in Chrome, FireFox, IE (including IE8), etc. by Javascript & JQuery
In order to disable the ENTER key in your textbox type input, you have to add the 'onkeydown' attribute and call a javascript function that checks the key and avoid to submit the form when you press ENTER key. Input example <input name="myName" type="text" value="Search" onclick="eraseInitialText(this);" onkeydown="disableEnter();"> Javascript function function disableEnter() { var key = …
Allow Users To Create New Terms in SharePoint’s Taxonomy Term Store
If you go to the Term Store Management you can add new term sets in the taxonomy term store whenever you want. However, maybe you want to allow users to create new term sets, so you've to do this: 1. Go to the Term Store Management. 2. Select the Term Set that you want. 3. …
Sigue leyendo Allow Users To Create New Terms in SharePoint’s Taxonomy Term Store