|
Hello,
Currently I am facing one issue from last 3 weeks. We are creating project in SharePoint from backend(Database). In issue list we have some default column list and I need to add few columns after new project is initiated. My requirement is how can we set/ modify default columns list, so when ever new project is initiated I don't need modify default columns manually(It should be created automatically when ever project is initiated)
Thanks in advance.
|
|
|
|
|
I'm using SharePoint online and have a SharePoint-hosted app.
I have a page with a question form that send data in to Sharepoint. I show my question form in my DispForm for my list (i added my app as an app part) on DispForm. When i select a item and press on view item i see my question form just as i like it but i don't know how to get the rigth ID of that item i want to show. Someone have any suggestion? i use
listItem.set_item('Title', $('#Title').val());
to send data in to my sahrepoint list and
and get_fieldValues to read it back
$('#Title').val(item.get_fieldValues().Title);
|
|
|
|
|
Hi,
I'm new to SP 2013, and I have been struggling with this.
I have a community site, and the subject view is almost what we want. The only thing we would like, is to have the topics grouped by the category.
So basically this
Category 1
topic a
Topic b
Category 2
Topic c
But I cannot figure out what I need to do, to make this small update.
does anyone know how to do this?
Stuff like this used to be easy to do in SP2010/07 but this is frustrating.
Thanks!
|
|
|
|
|
You can just change the view of a library or a list. There is a group by function. There you can group by every WebSiteColumn you want, e.g. Catergories
|
|
|
|
|
Could you please guide me how to do this in 2010. I am struggling with this
Thanks
Kiran
|
|
|
|
|
COMMENT ISTALLER SHAREPOINT ON VHD USING VM
|
|
|
|
|
HOW TO INSTALL SHAREPOINT 2013 ON VHD IN VIRTUAL MACHINE
|
|
|
|
|
Stop shouting, and try reading the documentation.
|
|
|
|
|
|
Univote countered.
The difficult we do right away...
...the impossible takes slightly longer.
|
|
|
|
|
|
|
General no Problem.
Install as Farm
Best use Powershell as the assistant is not very good for a correct installed server (besides the name of the databases with all their guids isn't a thing you will like)
Next time a nicely asked question without CAPS would be good.
|
|
|
|
|
Hi All,
I have created custom timer jobs is successfully but it is not show in monitoring--> Review timer job page i central administration.
Please send me related url and answer.
Thanks & Regards
Nitin
|
|
|
|
|
Which SharePoint Version are you using? There is an internal bug for the TimerJob-Programming Libraries in SharePoint 2010.
Did you tried debugging? Is the Job instanciated? Is the job in the JobList you get via your Programming (there is a difference to the central administration, both mustn'd be the same).
|
|
|
|
|
Hey Nitin,
How did you install your job definition..?? thru site collection feature..? If the answer is yes, browse to your site collection where the feature has been installed and try to Activate the feature. If there are any issues your ULS logs should report the issues.
|
|
|
|
|
Hello i have a question regarding to sharepoint online. First, let me say that i'm new in sharepoint online(office 365) maybe there are some tools that i'm not familiar with.
Ok let's get straight to the question. let say i have created 2 column, text(column1) and number(column2) type in Documents. when i upload a csv file, how can i do insert a value automatically into that column based on a value in a csv file i uploaded.Let say my csv file have this 2 value :
"CodeProject","555" and i want my first column have a 'CodeProject' value and my second column '555' value. and the value on that column will be different every time i upload a file regarding a csv file value i've uploaded Is it possible to achieve it by using sharepoint designer? Or is there any solution can be achieve.
thanks in advance
|
|
|
|
|
No it can't be done out of the box or with SPD. You have to write .Net code for your requirement.
|
|
|
|
|
I've built a custom workflow for SharePoint 2010 and would like to end the workflow at certain points based on values entered into the list item. I had originally used a codeActivity object that contained the following code:
SPWorkflowManager.CancelWorkflow(workflowProperties.Workflow)
However, with just that line of code, the workflow will still run until it gets to the end. So, I ended up adding this line of code:
Throw New Exception("Ending Workflow")
This stops the workflow, but I'm not cool with using an exception to end a workflow when no actual exception was thrown. I've looked up on the web about ending workflows and there were a few posts that had you set the tasks in the workflow as completed. However, in this workflow I don't actually assign tasks, so there isn't any tasks to complete. Does anyone have any suggestions I could try?
|
|
|
|
|
How to enable audience targeting in Listview webpart using xml or C# in sandbox solution?
Ravi Ahir
|
|
|
|
|
Hello,
We are currently using color coding and calendar overlays to achieve the following results:
1. Color Coded Events
2. View all the Event detail in each date of the calendar month.
3. Removed Sunday and Saturday
Issues we are receiving:
1. Fridays events are slim and you cannot read anything in the event date.
2. Any Event that has a week or even 2 -3 days of meetings, do not show up correctly on the calendar. So if I create and event for Tuesday to Wednesday the following week, it will not display it correctly because we removed Sunday and Saturday. Is there a way to resolve this issue?
Would your tool assist with these issues and what we are trying to achieve?
Code Project - Event Calendar Listing Web Part (SharePoint 2010)
Thank you,
Amelia Whitlow
|
|
|
|
|
hi guys, Visual Studio Express \ New Project --> Sharepoint Workflow missing?
Is Express edition not supporting Sharepoint workflow? Or I need to install Sharepoint locally to do this?
Thanks!
dev
|
|
|
|
|
The Express versions (being free) do not support all project types or frameworks. If Sharepoint is not present then it is not supported, you will need to buy the full version.
|
|
|
|
|
Hi,
I'm fairly new to developing apps for Sharepoint so please go easy! I'm having a problem joining two lists using CAML in Javascript. What I'm trying to do may not even be possible but from the research I've done so far I believe it should be, but I'm obviously going wrong somewhere.
There are two lists in my app that are joined by a lookup column. The parent list is named TransactionHeader and the child list is named TransactionItems. For every item in the TransactionHeader list there will be one or more related items in the TransactionItems list. What I'm trying to do is retrieve items from the TransactionItems list but join to the TransactionHeader list so that I can also retrieve related data.
The CAML I'm using is as follows:
var query;
query += "<View>";
query += " <ViewFields>";
query += " <FieldRef Name='ItemStatus' />";
query += " <FieldRef Name='ItemDate' />";
query += " <FieldRef Name='myReviewedBy' />";
query += " </ViewFields>";
query += " <ProjectedFields>";
query += " <Field Name='myReviewedBy' Type='Lookup' List='myTransactionHeaders' ShowField='ReviewedBy' />";
query += " </ProjectedFields>";
query += " <Joins>";
query += " <Join Type='Left' ListAlias='myTransactionHeaders'>";
query += " <Eq>";
query += " <FieldRef Name='TransactionHeader' RefType='Id' />";
query += " <FieldRef List='myTransactionHeaders' Name='ID'>";
query += " </Eq>";
query += " </Join>";
query += " </Joins>";
query += "</View>";
This CAML always results in a 'Cannot complete this action' message being displayed.
A little more information in case it's important; after building the query I'm loading the TransactionItems list like so:
var ctx = new SP.ClientContext.get_current();
var camlQuery = new SP.CamlQuery();
camlQuery.set_viewXml(myCaml);
var list = ctx.get_web().get_lists().getByTitle("TransactionItems");
ctx.load(list);
TransactionItem.TransactionItems = list.getItems(query);
ctx.load(TransactionItem.TransactionItems);
ctx.executeQueryAsync(readItemsSuccess, error);
If anybody can give me a steer as to where I'm going wrong it would be appreciated. If you need any more info then please ask.
Thanks
Jay
|
|
|
|
|
This error message "Cannot complete this action" mean you CAML query statement is wrong somewhere!!
Just only check your query 
|
|
|
|