Quantcast
Channel: SharePoint 2013 - Using SharePoint Designer, InfoPath and Other Customizations forum
Viewing all 10278 articles
Browse latest View live

InfoPath slow load after installed April CU 2013 for SPS2013

$
0
0

After installed April CU 2013 for SPS2013, InfoPath Forms became loaded several times longer.

Our Form previously loaded in 15 seconds, 2 minutes now.

Someone noticed a similar behavior?


2013 Doc Library settings - Turn off drag and drop and Find/Search/Filter on MetaData columns?

$
0
0

Any way to turn off Drag and drop?

Any way to search and filter files by MetaData Columns? How about partial string search?


============================
Thank You
cyberpine.com


Simple 2013 Workflow to break permissions inheritance on a Document Library File?

$
0
0

Anybody got an example of this? Suspect SPD 2013 can't do it and that it must be using VS 2012.

Want a simple solution of a Doc library where users drop files in, but then, users can only View, Edit, Replace and Delete files they created.


============================
Thank You
cyberpine.com

Auto populate InfoPath form with user data using Active Driectory Import

$
0
0
I am using Active Directory Import rather than the user profile service and I am migrating a few forms over from 2010 and I am unable to get the data connections working so that username, email and data are filled in automatically. I presume this is because I am not using the service but is there a way to get this working on an InfoPath form using AD Import?

SharePoint 2013 and multiple parameters in a single webpart connection - is it possible?

$
0
0

Hi!

Since WSS 3.0, we have used custom webparts and webpart connections to build customer solutions. A connection between two webparts can contain multiple parameters, which was fully supported in WSS 3.0, and the configuration of the connections could be made in the standard web SharePoint web ui.

(Specifically, our providing webparts expose the IWebPartRow interface and our consuming webparts expose the IWebPartParameters interface. SharePoint will automatically inject a RowToParametersTransformer)

When we upgraded to SharePoint 2010, the web ui for connecting web parts this way was no longer available. Instead, we had to use SharePoint Designer 2010 to accomplish this. A little clumsier but still possible.

In SharePoint Designer 2013, configuring the webpart connections is no longer possible, since the Design View is gone. So, we can't use the web ui nor the SharePoint designer.

This has led me to believe that we have to build our own web ui to allow configuring the connections.

But (here is finally, my question) before we start doing this:

Are we missing something? Is there no other way than building or own UI for this? (I've started looking into it, and it doesn't look easy...)

how to open an url in sharepoint 2013 workflow?

$
0
0
i want to open url in workflow

hello

SharePoint 2013 Workflow - Task Url in Assign a task acction

$
0
0

Hi All,

       I have used "Assign a task" action in our list workflow which is created using SharePoint Designer 2013. Approver is getting an email which has task url. But when approver clicks on the link, it is opening the task disp form rather than opening an edit form(Which has approved,rejected buttons). I would like to know whether this is the default behaviour. If so, what should I do for opening the edit form(Approval form) directly from the mail.

Any help is highly appreciated.


Puli Bala


GetUserProfileByName not populating user info in infopath form in Form Based Authentication in Sharepoint 2013

$
0
0

Hi,

I am trying to auto populate the infopath form in a Form Based Authenticated SP 2013 site with current user info, but the GetUserProfileByName is not working properly. I tried various approaches, but nothing worked out for me. can anyone please help me out here.

Thanks,

Nikhil




Filter a data view web part using date and time

$
0
0

I am trying to display data form sharepoint 2007 list using data view web part.  The data view should only display data the iscreated between a date/time range.



The Start date value consists of a date from date filter web part and Start Time value consists of value form text filter web part.Same is done for End Date and End Time.

The selectcommand of the data view that i changed is  

<View><Query><Where><And><Geq><FieldRef Name="Created"/><Value Type="DateTime" IncludeTimeValue="TRUE" >{SD1}T{ST1}Z</Value></Geq><Leq><FieldRef Name="Created"/><Value Type="DateTime" IncludeTimeValue="TRUE" >{ED1}T{ET1}Z</Value></Leq></And></Where></Query></View>

where SD1= Start Date Filter value, ST1=Start Time TextFilter Value

ED1= End Date Filter value , ET1=End Time TextFilter Value 

I have also created the web part connections, but it is not displaying any results. Can anyone please help me how to do that.



This Control is Disabled

$
0
0
I want to delete the SharePoint.com/search and my.sharepoint sites. The delete control is greyed out. When I hover over it, I get the message that 'This control is disabled'. I am new to SharePoint and do not know where these sites came from.

InfoPath - update existing SharePoint List item using SharePoint Object Model

$
0
0

InfoPath 2013 browser form - a secondary data source loads the list rows that will be updated on an 'On After Change Event'. The code only changes the value of 'Status' in every row where that value was changed.

The code below is not working ... please help! I have checked and rechecked and rererechecked the names of the list and the data connection.

public void AmendTenantRent__Status_Changed(object sender, XmlEventArgs e)
        {
            if (e.Operation == XmlOperation.ValueChange)
     {
      if (e.Site.Name == "Status" && e.OldValue != e.NewValue)
       {
     // Get the ID of the item to be changed
     int id = Int32.Parse(e.Site.SelectSingleNode("../@ID", NamespaceManager).Value);

     // Get the connection to the secondary data source     SharePointListQueryConnection conn = 
     SharePointListRWQueryConnection spConnection = (SharePointListRWQueryConnection)this.DataConnections["AmendTenantRent"];
          Uri siteUri = spConnection.SiteUrl;

     // Update the SharePoint list item
     using (SPSite site = new SPSite(siteUri.AbsoluteUri))
     {
       if (site != null)
       {
         using (SPWeb web = site.OpenWeb(siteUri.AbsolutePath))
         {
           SPList list = web.GetList(
             siteUri.AbsolutePath + "Lists/TenantRent");

           if (list != null)
           {
             SPListItem item = list.GetItemById(id);

             if (item != null)
             {
               item["Status"] = e.NewValue;
               web.AllowUnsafeUpdates = true;
               item.Update();
               web.AllowUnsafeUpdates = false;
             }
           }
           web.Close();
         }
       }
       site.Close();
     }


Greg

unable to publish from SharePoint Designer 2013 to a SharePoint Online site

$
0
0

I am unable to publish from SharePoint Designer 2013 to a SharePoint Online site. I get the following workflow error in Designer 2013 when compiling a workflow to be published to a SharePoint Online site.

 

Microsoft.Workflow.Client.ActivityValidationException: Workflow XAML failed validation due to the following errors:
Cannot set unknown member 'WaitForItemEvent.RelatedItemIntId'. HTTP headers received from the server - ActivityId: 316587de-34c2-45cd-afd7-7bb074c17720. NodeId: . Scope: . Client ActivityId : 8419239c-5b74-80c5-ed13-c9350548685f. ---> System.Net.WebException: The remote server returned an error: (400) Bad Request.  at Microsoft.Workflow.Common.AsyncResult.End[TAsyncResult](IAsyn

 

Through researching the error, I found that the solution can be fixed by re-registering WF service on an on-premise installation. However, I do not have access to re-register WF because it is a SharePoint Online site.

1. I am using the Office 365 upgraded version.

2. It is an issue with a 2013 workflow I created in SharePoint Designer 2013.

3. I only receive the error when action 'Wait for Event in List Item' is included in the workflow. However, I am able to publish workflows that do not have 'Wait for Event in List Item' in the workflow,

4. Previously, I was able to publish workflows that included the action 'Wait for Event in List Item'. I am not able to now.

I did find the blog that suggested a solution but I haven't found any documentation about how to fix the error I am receiving in SharePoint Online.

Other things I have tried...

1. I have created a different workflow with the action  'Wait for Event in List Item'. I receive the same error.

2. I have created a different SharePoint Online site and a new workflow with the action  'Wait for Event in List Item'. I receive the same error.

3. I have tried using a different computers to publish a workflow the action 'Wait for Event in List Item'. I receive the same error.

4. I have simplified the workflow so the action  'Wait for Event in List Item' is the only line of code. I receive the same error.

 

Please, I hope you can help!

 

Crystal

Sharepoint 2013 + customize person.aspx for MySites

$
0
0

Hi,

  I need to add a link to the public profile of all users' mySite on the quick launch bar on person.aspx.

With no design view in SharePoint 2013 designer I am having a tough time finding out how and where to add this link.

I have been looking at mysite15.master but cannot find how to edit the public quick launch view.

Any help will be appreciated

Thanks

Adi


AdiS

Cannot add PeopleEditor to Application Page SharePoint 2013

$
0
0

Hi,

I am using vs2012, create a project for SharePoint 2013, then add to page:

<%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>

.........

.........

<asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">   
    <SharePoint:PeopleEditor AllowEmpty="false" Width="300px" id="abc" runat="server" SelectionSet="User"  />
</asp:Content>

---------------------------------------------------------------------------------------

Then, when i run app. The page show: The control is not available because you do not have the correct permissions.

I don't know why. I use account on Owner Group to run this page.

But, when i run with system account, then everything is OK.

Please, help me to solve this.

Thanks and best regards.

SharePoint 2013 default form vs custom form

$
0
0

Has anyone notice that the People Picker and Lookup drop down list in SharePoint 2013 are different between the default form and the custom form created from SharePoint Designer?

In the default form the People Picker looks like this:

In the custom form the People Picker looks like the old control in SP 2010

Is there a way to use the SP 2013 People Picker in the Custom asp form?

Thanks


cascading dropdown

$
0
0

Hi, I have a "pre-advice" list with a client"choice column" and a Tank number."text column"

and a second list called gate-in with a text column called tank number and another column called client.I managed to get the cascade dropdown right for client clumn. so when you filled in pre-advice it will give you the client you chose as an option in gate-in, now i need to filter my tank number column in the gate-in list so it only gives me the selected clients tank number as an option. any advice please?

Documents library view item page displaying dropdown value with HTML contents...

$
0
0

Hi,

I have customize view item page of Document Library.

Problem is it is rendering textbox data properly. However it renders dropdownlist value with HTML tag.

Here is the sample value for Year field:

<a href="http://dms.mscsoftware.com/_layouts/listform.aspx?PageType=4&ListId={4DA6438F-5EFB-403D-9AE8-29DFE724342E}&ID=1&RootFolder=*">1962</a>

Instead of displaying 1962 it is displaying above value.

Please tell me how I can fix it. Thanks.

Regards,

Amit

Rendering a video in browser

$
0
0

Hello guys, 

So here is the deal, I have a webpart that uploads the SP list with a video attachment. After attachment it allows the user to download the video and then view it. I want the video to run in the browser from the list. 

Plus i want a functionality where user can add comments on video....not inside the video but in real time when the video is playing a comment section should appear.

any help in the first and the second task?

Thank you

unable to publish from SharePoint Designer 2013 to a SharePoint Online site

$
0
0

I am unable to publish from SharePoint Designer 2013 to a SharePoint Online site. I get the following workflow error in Designer 2013 when compiling a workflow to be published to a SharePoint Online site.

 

Microsoft.Workflow.Client.ActivityValidationException: Workflow XAML failed validation due to the following errors:
Cannot set unknown member 'WaitForItemEvent.RelatedItemIntId'. HTTP headers received from the server - ActivityId: 316587de-34c2-45cd-afd7-7bb074c17720. NodeId: . Scope: . Client ActivityId : 8419239c-5b74-80c5-ed13-c9350548685f. ---> System.Net.WebException: The remote server returned an error: (400) Bad Request.  at Microsoft.Workflow.Common.AsyncResult.End[TAsyncResult](IAsyn

 

Through researching the error, I found that the solution can be fixed by re-registering WF service on an on-premise installation. However, I do not have access to re-register WF because it is a SharePoint Online site.

1. I am using the Office 365 upgraded version.

2. It is an issue with a 2013 workflow I created in SharePoint Designer 2013.

3. I only receive the error when action 'Wait for Event in List Item' is included in the workflow. However, I am able to publish workflows that do not have 'Wait for Event in List Item' in the workflow,

4. Previously, I was able to publish workflows that included the action 'Wait for Event in List Item'. I am not able to now.

I did find the blog that suggested a solution but I haven't found any documentation about how to fix the error I am receiving in SharePoint Online.

Other things I have tried...

1. I have created a different workflow with the action  'Wait for Event in List Item'. I receive the same error.

2. I have created a different SharePoint Online site and a new workflow with the action  'Wait for Event in List Item'. I receive the same error.

3. I have tried using a different computers to publish a workflow the action 'Wait for Event in List Item'. I receive the same error.

4. I have simplified the workflow so the action  'Wait for Event in List Item' is the only line of code. I receive the same error.

 

Please, I hope you can help!

 

Crystal

How set up alert to send the group wise?

$
0
0

I don't want to have to enter in all the users individually.i need group wise.

Have idea please reply soon

Viewing all 10278 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>