How to Combine the view form of one list and the new item form of another list using SharePoint designer.
Related
I have a SharePoint list which contain the following field:-
now when we submit a SharePoint item through the Nintex form >> the column will have some XML code:-
now i did not create the Nintex form, so how i can check if there is any action inside the nintex form which set the XML code inside the field?
Thanks
I have a default webpart in SP where elements of list are shown.
The problem is that elements are displayed vertical (one below other) and I need to make them horizontal (in one line). Where and how I can customize webpart template? Browsing webpart in SharePoint Designer doesn't help me.
Add a DataForm Webpart to your page using SharePoint Designer. You can modify XSLT (or use Drag and Drop) to change the look and alignment of elements in the list.
This link should help you out:
http://www.apps4rent.com/support/kb/article/sharepoint-data-form-web-part
I am newbie to SharePoint Dev.I need to know how sharepoint dev approach towards a solution like menu drop down which shows list of categories like category 1, category 2 etc and by click on each category in menu. it display list of products. Categories main page should display slideshow of categories.
What is best way to apprach this senarios in sharepoint. how many list, webpart I have to develop? More option will be appreaciated.
How to decide which list, web part and work flow is required?
2 lists, 1 lookup field and a webpart showing the two items. No workflow required.
Is it possible to add a note board or other web parts to a Custom List? I would like to be able to have comments on list items.
any particular reason you don't want to use a discussion board? That's it's entire purpose.
Create a data view webpart for your list. This webpart will display one item at a time, so you have to filter this dataview webpart by Item ID using querystring. The page on which you will deploy this dataview webpart will also have noteboard webpart. Comments given here will stick to that particular item which will be displayed in dataview based on Item ID.
How does one verify a text field with another list's column? I am currently populating a Drop down list with a datasource and then comparing the text field with items in the dropdown using javascript. Is there a better way?
The second problem I am having is how to trigger the Validate Function.
I am aware of two custom forms for adding data to a sharepoint list. One is created using The Dataview Webpart in Sharepoint Designer and the other is created using the List Form Webpart in Sharepoint Designer.
I have a DataFormWebPart I created using Sharepoint Designer Insert Dataview ->Insert Selected Fields as New Item Form. This gives Save and Cancel buttons at the end of the form. How do I intercept the Save button event?
I found one solution but it only works with the NewForm page that has OK Cancel Buttons. http://www.codeproject.com/KB/sharepoint/Control_validation.aspx
You'll have to use an event handler if you want to validate the state of multiple fields. You can use the ItemAdding/ItemUpdating events if you want to cancel an item which is being added/updated.
properties.Cancle = true;
properties.ErrorMessage = "Your validation message.";
http://msdn.microsoft.com/en-us/magazine/cc163318.aspx
http://blogs.msdn.com/brianwilson/archive/2007/03/05/part-1-event-handlers-everything-you-need-to-know-about-microsoft-office-sharepoint-portal-server-moss-event-handlers.aspx
can you add query strings into the formula box for validation?
e.g. like this:
^[a-zA-Z]{2}[0-9]{6}[A-Za-z]{1}$
which validates against a national insurance number.
sharepoint says the column must = true,
so could I enter something like
[column name] = ^[a-zA-Z]{2}[0-9]{6}[A-Za-z]{1}$
I think you are trying to build a tool like this one called SharePoint Form Validation.
If so, take a look at this blog: http://office.microsoft.com/en-us/sharepointtechnology/HA101054791033.aspx?pid=CH100650061033
Hope this helps!