sharepoint-designer

Looking up document library items in a SharePoint workflow

空扰寡人 提交于 2019-12-11 17:49:14
问题 I using SharePoint Designer to create a workflow. I'm trying to get at a sub-folder in a document library in the "Define Workflow Lookup" dialog. There are two issues with this: I can't look up items by URL Path. If I look up by Title, I can output the URL Path, but selecting by path doesn't work. What fields can/can't I use? I can't get at any sub-folders. I can get at the top-level folder, but the sub-folders don't seem to be available. Noticed the same things is true when looking at the

SharePoint 2010 corev4.css changes not reflecting on subsites

♀尐吖头ヾ 提交于 2019-12-11 17:16:58
问题 When we make changes to our corev4.css in the _themes folder in the root of our SharePoint 2010 site it shows up on the root URL but not on any subsites even though we did select the check box "Reset all subsites to inherit the the system master page setting". http://SiteName/_Layouts/ChangeSiteMasterPage.aspx The physical changes are there so we know that the MasterPage is inheriting, but the design/css changes are not on the subsites..... Why is that? Edit Ok, I managed to make all the

Sharepoint out of the box capabilities

眉间皱痕 提交于 2019-12-11 15:41:48
问题 I am planning to build a case management system from scratch, The system will incorporate a workflow. Cases will contain activities to be performed by different people inside and outside the company within a specified window of time. Does SharePoint support a configurable workflow engine that I might use for this project? 回答1: Absolutely. Workflow is one of the strong parts of SharePoint. Out-of-the box you or your users can build workflows using the free SharePoint Designer. Depending on

Retrieve Items from a List View of a Sharepoint List using Javascript

痴心易碎 提交于 2019-12-11 09:57:21
问题 This is my code:\ Here pranav_list is list name and Main is view of that list. <script type="text/javascript"> function retrieveListViewItems(){ alert('start'); var cc = SP.ClientContext.get_current(); var alllist = cc.get_web().get_lists().getByTitle('pranav_list'); var view = alllist.get_views().getByTitle('Main'); var caml = new SP.CamlQuery(); caml.set_viewXml('<View><Query><Where><Leq>' + '<FieldRef Name=\'ID\'/><Value Type=\'Number\'>100</Value>' + '</Leq></Where></Query><RowLimit>8<

Update multiple SharePoint list Items

扶醉桌前 提交于 2019-12-11 04:06:56
问题 I have an InfoPath form that, when submitted to a SharePoint Form Library, also adds a single item to a Task List. Each item in the Task List contains a People field that may contain multiple names. I have code in the form that creates separate items in a Custom List, one for each name in the People field. When I manually update the Status field in a Task List item, I would like a SharePoint workflow (I'm using Designer 2010) to update all of the Status fields for the corresponding items in

The amount of data that was returned by a data connection has exceeded the maximum limit that was configured by the server administrator

喜你入骨 提交于 2019-12-11 04:01:46
问题 I have infopath form with SharePoint designer approval workflow. I am showing some details on that form. but when I have more data in SharePoint List it is giving bellow error "The amount of data that was returned by a data connection has exceeded the maximum limit that was configured by the server administrator" I guess Infopath form is getting all the data from the list instead of particular row. can any one please suggest me to filter on current item ? 回答1: Resolution: Ensure to follow the

SharePoint Designer 2010 - Determine if today's date is within x days of a start date column using conditional formatting

只愿长相守 提交于 2019-12-10 22:58:56
问题 I'm using SPD 2010 and Sharepoint Server 2010. Using conditional formatting I'm trying to format a list so that if today's date is greater than 3 days past the start date column a cell will turn red. Comparing two date columns directly (to see if today is after the start date) works well - ddwrt:DateTimeTick(ddwrt:GenDisplayName(string($thisNode/ @StartDate ))) < ddwrt:DateTimeTick(ddwrt:GenDisplayName(string( $Today ))) But if I add a number it will work in SPD design view, but not on the

Enable CORS in Sharepoint 2013

对着背影说爱祢 提交于 2019-12-10 11:40:45
问题 I need to make CORS from/to various Sharepoint domains, and of course handle the OPTIONS preflight request. After a lot of research I found that this solution is (almost) the best for my needs. Modify global.asax let you handle more than one domain with credentials passed, and the OPTIONS preflight request. The bad side is that after applying it as suggested, you can't login in Sharepoint Designer anymore. I modified global.asax as below, CORS are ok, but Sharepoint Designer no. public void

Enable CORS in Sharepoint 2013

爱⌒轻易说出口 提交于 2019-12-09 00:52:28
I need to make CORS from/to various Sharepoint domains, and of course handle the OPTIONS preflight request. After a lot of research I found that this solution is (almost) the best for my needs. Modify global.asax let you handle more than one domain with credentials passed, and the OPTIONS preflight request. The bad side is that after applying it as suggested, you can't login in Sharepoint Designer anymore. I modified global.asax as below, CORS are ok, but Sharepoint Designer no. public void Application_BeginRequest(object sender, EventArgs e) { string httpOrigin = Request.Params["HTTP_ORIGIN"]

Not able to get Lookup field value in Sharepoint 2013 online Custom List Using SPD

痴心易碎 提交于 2019-12-08 11:04:26
问题 I have one lookup column named "ActivityStatus" and it has two values. and I just want to check that lookup field value on Presave Action. Below is my code but it is not working. <script type="text/javascript"> function PreSaveAction() { alert("Inside"); var elm = document.getElementById("ActivityStatus"); alert(elm); if (elm == "Incomplete" || elm == "Inprogress") { document.getElementById("ActivityStatus").style.display='none'; alert("Previous Activity is in Progress..."); return false ; }