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

Export item to Word - SharePoint 2013

$
0
0

Helloto all,

I have a problem,and I believethat is notso simple tosolve.

I haveSharePoint2013 andhave a listwhereitemsin this lististhat I needto export toWord.

*Theitemsin the list areinfopathform

Can someonehelp me?I amvery grateful!

Thank you!


Atenciosamente,

Caio H. D. Mendes
Professional IT - SharePoint, BI, Development


create word document (export to word) automatically from sharepoint list 2013

Deploy custom MasterPage as farm solution?

$
0
0

Hi all,

I'm trying to deploy a MasterPage using Visual Studio 2012. I have configured the solution as a Farm Solution.

My question is, the MasterPage doesn't appear in the _catalogs/masterpage/ after I have deployed it. However, when I use "deploy as a sandbox solution" then it appears.

Is there not any way to deploy the Master Page as a farm solution?

Thank you!

Show security group members in Site users webpart

$
0
0

Is it possible to show members of an security group in the Site Users webpart? 

thx

Top Link Bar and Quick Launch Customization SharePoint 2010

$
0
0

Hi..

I want the Top Link Bar and Quicklaunch design as shown below..


Ravindranath

How to increase width of a list in SharePoint Designer 2013?

$
0
0

Hello,

I was surprised when i got a message on clicking Edit List on SharePoint saying that i need to upgrade SPD to match the SharePoint. So i started downloading the 2013 version and installed it. I was shocked noticing that there is no Design view in SPD 2013.

I was able to edit the with of the columns in SPD 2010 with the help of solution provided in the below link.

http://aanuwizard.com/2010/08/01/sharepoint-2010-how-to-change-width-of-list-column/

But where is the Design view in SPD 2013? I searched the whole forum before posting this question here. It says that it does not exist. OK i got it, but what is the solution??

Can anyone please help me by providing a solution to edit the width of the columns in the list.

Regards,
SAN


Santhiya

How to increase width of a list in SharePoint Designer 2013?

$
0
0

Hello,

I was surprised when i got a message on clicking Edit List on SharePoint saying that i need to upgrade SPD to match the SharePoint. So i started downloading the 2013 version and installed it. I was shocked noticing that there is no Design view in SPD 2013.

I was able to edit the with of the columns in SPD 2010 with the help of solution provided in the below link.

http://aanuwizard.com/2010/08/01/sharepoint-2010-how-to-change-width-of-list-column/

But where is the Design view in SPD 2013? I searched the whole forum before posting this question here. It says that it does not exist. OK i got it, but what is the solution??

Can anyone please help me by providing a solution to edit the width of the columns in the list.

Also, The code present in the link below is not seen in the Allitems.aspx page in SharePoint Designer 2013.

http://aanuwizard.com/2010/08/01/sharepoint-2010-how-to-change-width-of-list-column/

Regards, SAN


Santhiya


InfoPath 2013 people picker browser button doesn't work on published InfoPath form

$
0
0

I have InfoPath 2013 form with couple of people picker fields. When the form is published and opened in IE the browse button doesn't open a new window. I used fiddler to track but there was result showing on the click of the browse button. I can enter name and use check names that works fine. 







Sharepoint 2013 Workflow Start a Task Process Action Does Not Expand Sharepoint Groups

$
0
0

Hello;

I have a problem that I cannot figure it out for one week.

I created a site workflow on SPD 2013 .(Sharepoint 2013 Workflow - Project Server) It works correctly on all actions except "Start a Task Procces". It assignes tasks to sharepoint group names not people who are inside these groups. But when I put users it assignes tasks each user. I checked several times that "Expand Group" is selected.

I checked workflow status and ULS Logs but there is no error. Do you have any suggestions about this situation.

Thanks

LinkToItem not working for any column

$
0
0

I'm trying to remove the title column with another one and make it act like the original Title column. In that it will be clickable to go to item view and have the ellipses for editing, workflow etc.

ListToMenu="TRUE" works fine for getting the ellispses to show up on that column. However LinkToItem="TRUE" does nothing. 

Any ideas on how to make this work on Sharepoint 2013


Jonathan Sheely


Attach File button only shows blank page

$
0
0

Hello,

we have set up a Sharepoint 2013 server and are currently working on an internal ticket system. For this, we have added a List library to our Sharepoint Site. When adding new items to this library, the "Attach File" button does not work. Instead it only shows a blank webpage. Has anyone encountered a similar issue before? The advanced library settings allow attachments, so this is not the cause of this problem. The user account has Administrator rights, we have tried different browsers with different Security Settings. No luck so far...


Passing SPD workflow variable to a task list item

$
0
0
I'm possibly having a dense moment, but I'm struggling to find a way of passing a SPD2013 workflow variable from the WF that assigns a task to a column in that related task list.

I'm creating an asset servicing workflow, where I have a list of assets and their next service due date.  My WF creates a task on the asset service due date, but I would also like to pass other meta data about the asset to the related task list (e.g. Asset ID, name, colour etc etc).

Obviously I can include this detail in the Task Name, but I am keen to be able to create task list views based off the asset meta data.

The linear nature of the SPD workflow means I (think I) cannot use the 'Update a List item' task to update the fields in the task list as the 'Update List Item' task will not trigger until the assigned task has been completed, so defeating the need to update the meta data.

All suggestions and inspiration greatfully received :)

people picker javascript

$
0
0

Hello everyone, 

I want to assign the current user value to my list column which is people picker. 

but i couldnt assign with 

   oListItem.set_item('peoplepickr', currentUser.get_loginName());

here is my code sample for selecting current user; 

ExecuteOrDelayUntilScriptLoaded(CallClientOM, "sp.js");

function CallClientOM()
{
var context = new SP.ClientContext.get_current();
this.website = context.get_web();
this.currentUser = website.get_currentUser();
context.load(currentUser);
context.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
}



function onQuerySucceeded(sender, args)
 {
 alert(currentUser.get_loginName());
 

 }



function onQueryFailed(sender, args)
{
alert('request failed ' + args.get_message() + '\n'+ args.get_stackTrace());
}

and here is my code for adding list item ;

function createListItem() 
  {   
    var clientContext = SP.ClientContext.get_current();

    
 
    
    var oList = clientContext.get_web().get_lists().getByTitle('MyList');
      
    var itemCreateInfo = new SP.ListItemCreationInformation();
    this.oListItem = oList.addItem(itemCreateInfo);
    oListItem.set_item('Title', currentUser.get_loginName());
 
 oListItem.update();

    clientContext.load(oListItem);
    clientContext.executeQueryAsync(
        Function.createDelegate(this, this.onQuerySucceeded), 
        Function.createDelegate(this, this.onQueryFailed)
    );
}

function onQuerySucceeded() {
    alert('Item created: ' + oListItem.get_id());
}

function onQueryFailed(sender, args) {
    alert('Request failed. ' + args.get_message() + 
        '\n' + args.get_stackTrace());
}

Any suggesstions?

note: I apply this code inside the page layout. (SharePoint designer 2013)



Workflow does not restart when using 'Wait for field change in current item' action

$
0
0

I am working with list workflows using SPD2013 and SharePoint Online 2013...

I have a couple of workflows running off list items in a certain list, the first of which I want to trigger the second, but cannot get to happen!

Workflow A (triggered on item creation) looks up related data in separate lists and updates values in the list and sets a flag in a column to "Yes" upon completion

Workflow B (again triggered on item creation, but uses a 'Wait for field change in current item' action) waits for my flag column to be set to "Yes" before waking up and processing.

Both workflows start fine, with WF B sitting in its 'waiting' state, but even after WF A completing successfully and updating the flag column to "Yes", WF B does not wake up and continue processing.

Am I trying to use the 'Wait for field change in current item' task for something it is not meant to be doing?

Connect Workflow Manager to SharePoint 2013

$
0
0

I have installed SharePoint 2013 in a Virtual Box VM. In addition I have installed the Workflow Manager so I can utilize SharePoint 2013 workflows from Vizio 2013 and Designer 2013.

I use the following command to connect SP 2013 to the Workflow Manager:

Register-SPWorkflowService -SPSITE "http://servername/" -workflowhosturi "http://servername:12291" -AllowOAuthHttp -force

However I get the following error:

Register-SPWorkflowService : The data or messaging layer is unavailable.
Please retry after 300 seconds. Client ActivityId :
9a698223-f7da-413e-b581-3784d478e792.
At line:1 char:1
+ Register-SPWorkflowService -SPSITE "http://servername/"
-workflowhosturi "h ...

I do have the service manager installed and the appropriate ports for the service manager are running in IIS. What else do I need to do to get the data and/or messaging layer to work?

Thanks for your help in advance,

BH


SharePoint 2013 - AJAX - Post Back - Removes Page Title

$
0
0

I am using Update Panel in a custom webpart and whenever it posts back it removes the page title.

Anyone knows how to fix it in the HTML master page??

I used to face this issue in SharePoint 2010 and fix it using the code below but I have no idea how to fix it in SharePoint 2013

Change this in Master page from:-

<title id=”onetidTitle”><asp:ContentPlaceHolder ID=”PlaceHolderPageTitle” runat=”server” /></title>
To:-
<title id=”onetidTitle”><asp:ContentPlaceHolder ID=”PlaceHolderPageTitle” runat=”server” /></title>

 

 

SharePoint 365 Online Worflow Mail not sending

$
0
0
Hello,
I'm having a problem with a workflow.
Basically when I create an item in a list, I need to send an Email to a group of people. This is a notification mail with a link to the new list item.
My problem is that I cant send the mail, but the flow is very simple and already built and successfully starts when an item is created in the list but the mail never arrives to the recipient.
I've noticed that when I access the properties of the workflow displays a warning that the program is trying to make the delivery
 
My flow is like this:
Phase 1: send e-mail "group of people".
Transition: go to end workflow.
The group of people have collaboration permissions on the list.

I also try to use sharepoint native workflows as "the 3 states" and the email was sent, but I only want 2 states. The items that are created in the list have three possible states "pending, approved, rejected". I thought about using workflow"three states", but that solution does not suit my need, because an item from my list can have two states "pending, approved" or "pending, rejected."

I thought about using "Alert me" option, but I can not configure it to send to a group of people, only works for specific users post, besides the mail format is not what I need. You can change the format of the "Alert me" mail notificaction?

in the first instance if possible I want to use the workflow I created, not the alert. My question is why not send the Mails from my workflow?.

My sharepoint license is Office 365 Small Business Premium.
My version of sharepoint designer is; Microsoft ® SharePoint ® Designer 2013 (15.0.4454.1000)
I hope your answers, any help will be greatly appreciated.
Thank you very much.

How to resize the site logo in SharePoint 2013 online

$
0
0

Hi,

I have added the site logo to SharePoint team site but the image looks too small though its original site is big.

Please provide me the solution for it.

Copy Item Activity in Designer workflow

$
0
0

Hi,

when ever the document moves to major version,i am using copy item activity to copy that item from one library to another library.In that major version Library i have set the version settings to major version. first time when i move a major version document to major version library it works fine. next time when i try to move the same document,what happens is copy item activity is not adding the document to the version history of the document already present in the same name. instead it is adding the same document as different document by suffixing the time and date. can i add the document to version history. help me.

Thanks.

Adding a Client column to timecard management template

$
0
0

Hi, I am trying to add a client column to my timecard management template but the problem is when i say "punch in" it takes me to a page where i select a task and a project but i cant get my "client" column to appear on this page. can anyone give me some advice?

Viewing all 10278 articles
Browse latest View live


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