100 Generic list101 Document library102 Survey103 Links list104 Announcements list105 Contacts list106 Events list107 Tasks list108 Discussion board109 Picture library110 Data sources111 Site template gallery112 User Information list113 Web Part gallery114 List template gallery115 XML Form library116 Master pages gallery117 No-Code Workflows118 Custom Workflow Process119 Wiki Page library120 Custom grid for a list130 Data Connection library140 Workflow History150 Gantt Tasks list200 Meeting Series list201 Meeting Agenda list202 Meeting Attendees list204 Meeting Decisions list207 Meeting Objectives list210 Meeting text box211 Meeting Things To Bring list212 Meeting Workspace Pages …
Etiqueta: form
Error al guardar Infopath con llamadas REST (No sobreescribe el item)
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 no podemos guardarlo, nos genera un error. Test Si quitamos las llamadas REST, no se produce el error. Solución En Infopath vamos a las opciones …
Sigue leyendo Error al guardar Infopath con llamadas REST (No sobreescribe el item)
Empty DropDown After Submit your Form and Information Lost
My case: It's a standard register form created in a SharePoint WebPart (but this error could happen even if you're not using SharePoint). When I submit the form, sometimes I loose the information of DropDowns (but not the information of textboxes) and it seems to happen randomly. I checked the packages sent with Wireshark and …
Sigue leyendo Empty DropDown After Submit your Form and Information Lost
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 = …