0
votes
0answers
49 views

Assign users to a task without form

I have associated a workflow to a list. When there is a new item, the workflow will be fire and it will assign a task to a user in order to edit the new item. At first the edit is made through a ...
2
votes
1answer
2k views

How do I use the form save button with a custom web part?

In order to familiarize myself with SharePoint development, I have created a custom web part to replace the default New, Edit, and Display forms of a custom list. Is there a way to use the already ...
0
votes
2answers
392 views

Setting up the list definition schema for a custom form in VS2010

I'm creating a custom NewForm for a list (and will subsequently be doing EditForm and Display form), but I can't work out how to populate the Form attribute in the list definition's Schema.xml file. ...
0
votes
2answers
260 views

What can be preventing OnTaskChanged from triggering with custom InfoPath task forms in the workflow?

Why could this be happening: VS Workflow with custom InfoPath Task Forms does not trigger OnTaskChanged when form is submitted with data (so clearly changed). Funny thing is that the same workflow ...
0
votes
2answers
2k views

Custom Task Forms created in InfoPath for Visual Studio Workflow

This article discusses creating Visual Studio workflow with custom task forms, created in InfoPath: http://www.codeproject.com/Articles/195348/SharePoint-2010-State-Machine-Workflows-with-Custo I've ...
1
vote
1answer
555 views

passing parameter values to the event reciver sharepoint 2010

is there any way we can pass parameter value(selected form field value(drop down box) from newform.aspx)to the event receiver(itemadding) from newform.aspx()in sharepoint 2010, so that they can be ...
2
votes
2answers
1k views

How to make SharePoint fields mandatory conditioned on other fields?

For example, in a workflow task, I might have a master field called "Approve" which, if set to "No", makes it unnecessary to complete the rest of the form (and thus makes them non-mandatory). Is there ...
3
votes
2answers
1k views

How can I get rid of the ListFormWebPart in a custom form?

I'm pretty new to SP, but I had to bite the bullet and create a custom new form for a custom list schema. I mirrored the field structure with textboxes and such, added some custom javascript, ...