All Questions
Tagged with query-string javascript
10 questions
0
votes
2
answers
1k
views
Passing query string to Survey list newform.aspx
Is it possible to send query string to newform.aspx of the survey form so it's pre-populated? (I am using SP 2010)
The question in survey list is created is ServiceTicketNumber and then renamed the ...
3
votes
4
answers
2k
views
JavaScript - Rearrange String order?
var date = $(this).attr("ows_Date");
My current code displays a string output: 2017-01-02
Is there a Javascript code where I can move the first 4 digit to the back? How do i turn it into 01-02-2017?
...
0
votes
1
answer
178
views
How to make forms in ModalDialog (IsDlg) respect Source and redirect accordingly to a 'thanks' page after submit?
Has someone already solved the conflict between IsDlg and Source query string parameters to allow a redirect after form submission in a SP.UI.ModalDialog? Per chance even when an InfoPath form is ...
0
votes
1
answer
1k
views
SharePoint Query String Filter not working with space
I am creating a url that looks like this:
"http://servername/sites/mywebsite/sitespages/page.aspx?ProcessName=my
initial process"
But when I redirect SharePoint to that page using:
location....
18
votes
1
answer
7k
views
What does this code getQueryStringParameter do?
I would like to know what this code does?
I am using it almost all the time but I don't know what it does.
function getQueryStringParameter(paramToRetrieve) {
var params =
document.URL.split("?")[1]....
0
votes
1
answer
2k
views
Value of a parameter in the query string causes a new page to open instead a modal dialog
ListIDFromQueryString = '{08.....3-d...-....-....-........ce47}';
I want to use this value as the parameter (with a different name) in a link to open a modal dialog box.
$('#my-element').after('<a ...
0
votes
0
answers
341
views
injected javascript code in a basic webpart
I have a working solution according to below, but I want a dynamic link which is created in Createchildcontrols and included as an arguement in the function newitem
but I get an JavaScript error on ...
0
votes
1
answer
1k
views
AllItems View of Query String: can I group using value in query string?
Can I somehow how a query string to show a group of documents within a given library. Not one single item, but the AllItems like view. So within the library I have a grouping type of id value in a ...
0
votes
1
answer
864
views
How can you have multiple fillDefaultValues scripts operating on one page?
I have a Web Part Page with multiple DVWP/New Item Forms for different lists. Each form contains a lookup field to one central list. I can get one form to auto-populate the lookup field with a query ...
3
votes
2
answers
14k
views
How can I pass a Parameter via Query String to populate a lookup field on a New Item Form/DVWP?
I have two lists:
List A: Products
List B: Requirements
I'd like to have a nice Create Requirement page launched from the Product Listing page.
I have a DVWP/Multi-Item View displaying all Products. ...