Tagged Questions
1
vote
2answers
37 views
How to update 'asynchronous update' enabled listview programatically using javascript
I'm have a page in which one custom visual webpart and one listview webpart.
I've have some custom checkboxes and dropdowns in my visual webpart, I'm making an ajax request and when i select the ...
0
votes
2answers
27 views
email page hyperlink on sharepoint page
Hi I am trying create a email link on sharepoint page i wrote forllowing script
function emailstory()
{
mail_str = "mailto:?subject=" + document.title;
mail_str += "&body= " ...
0
votes
0answers
15 views
Can I change the display name of column in a listview using JSlink
I've a requirement to change the display name of a column in only one view, I've to show 'Responsible' instead of 'Responsible Person'. Is this possible by JSlink ?
0
votes
1answer
30 views
My IE developer tool indicates that my Community site (Discussion forum) page have received 5.56 MB when clearing the browser cache
I have built a community site inside my SharePoint 2013 server. and on the discussion forum home page , I have captured the network for the page using IE developer tool. and it shows that it have ...
0
votes
1answer
43 views
Mega-menu tab on multiple site collections
I would like to create a tab in SharePoint 2007 that is a mega menu. This mega menu tab will be implemented on multiple site collections. It will be a part of the global navigation in each site ...
0
votes
1answer
55 views
Forcing showModalDialog() when an item is clicked from a web part links list
We have a web part on a page that refers to a simple list with two fields: Title and URl.
Obviously, this list is used by the end user to show links to various items (google, etc) on the web part in ...
0
votes
0answers
30 views
consuming WCF web service from client side in SharePoint 2010 Visual Web Part Sandbox Solution
I have a visual web part Sandbox solution. I need to attach an external WCF web service in order to submit data to database using the custom form I have created. Is there a way I can attach web ...
0
votes
1answer
94 views
Adding a cusotm title for javascript:SP.UI.ModalDialog.OpenPopUpPage
I have a code snippet inside my team site home page which contain the following code to display a pop-up dialog, as follow:-
<li class="ms-comm-adminLinksListItem" unselectable="on"><a ...
0
votes
1answer
160 views
Update list column using client object model code in SharePoint 2013 goes in onFailure without giving errors
I am using javascript to write the client object model code in SharePoint 2013. I want to update a column of the form library but I am not able to do it.
The code goes in the onFailure method without ...
0
votes
1answer
57 views
Openning two javascript:OpenPopUpPage dialogs at the sametime
I have added a script editor inside my team site, that contains two links to show pop-ups dialogs as follow:-
<li unselectable="on"><a ...
0
votes
2answers
48 views
Client Side Object model code goes in onFailure function
I am using the client side object model to approve multiple items from the form library. I need to access the values of some of the columns of the form library. The following is my code:
var ...
1
vote
1answer
107 views
Displaying the sharepoint server date and time under the username
I am trying to display the server date and time under the username inside my SharePoint 2013 server.
I did the following :-
On the master page I added the following “currentdate” Div :-
...
0
votes
1answer
107 views
Question about adding javascript:OpenPopUpPage to my SharePoint sites
I have the following problems with showing javascript pop up page
I have added a content editor web part inside my team site, then I insert an embedded code snippet with the following code:- <a ...
2
votes
3answers
144 views
How to convert date format in json response to string format in sharepoint?
I have set a column to column type "Date" and the json response from listData.svc for this column is in this format "Created": "/Date(1377683175000)/" , can someone suggest how to convert this format ...
1
vote
0answers
186 views
How to filter a list view by SP group membership (CAML, JS, anything)
I have a list. I need to filter the list view in SharePoint to show items:
created by someone in current user's group
show all to admin group
I am using Infopath for the list's form view, and ...