Questions tagged [query-string]
The QueryString collection retrieves the values of the variables in the HTTP query string. The HTTP query string is specified by the values following the question mark (?). Several different processes can generate a query string.
123 questions
0
votes
1
answer
26
views
unable to get param value in PowerApps embedded over SharePoint page for external user
I have a canvas app and have embedded inside a SharePoint page using PowerApps web part. I am utilizing the Param function to pass a dynamic string which is getting used for filtering the record ...
1
vote
1
answer
3k
views
Microsoft Graph general exception using filter expression with 'and' condition
I am trying to query a SharePoint list where I need to pull the last name (title), first name, email, and replacement name by filtering on the last name (title) and first name to make sure we have the ...
0
votes
1
answer
1k
views
How do you add multiple filter values when using a Query String (URL) Filter web part on a SharePoint Online classic page?
I have a Query String (URL) Filter web part on my SharePoint Online classic page. I want to filter for multiple values and can't determined how to do this. I have appended the following with no ...
0
votes
1
answer
295
views
How to set dropdown value from query string in fabric dropdown
i am trying to set value in dropdown from query string but unable to do so , below is the code
private SelectReferralFromQueryString(name) {
name = this.GetParameterValues('Country');
if (name ...
0
votes
1
answer
188
views
Add a new keyword to Querystring to search in a Document Library
I created one managed property that is called Csearch and this brings true results when I search for <managed property>: <property value>.
I go to Search Center and type this.Csearch:word
...
0
votes
2
answers
1k
views
getURLParameter(ID)
Lots of great posts on using the getURLParameter(ID) to populate a lookup column in a NewForm.aspx when coming from a list view web part on another page. Here is my problem, the source url that I am ...
0
votes
0
answers
171
views
Query string not bringing back results when URL parameter includes '20'
I have a query in a search result web part that is grabbing an event title from the URL parameter as follows:
Event1OWSTEXT={QueryString.eventTitle}
However, whenever there is a "20" in the event ...
0
votes
0
answers
741
views
Url query filtering links not working in modern Sharepoint?
In classic SP tacking a url query onto a page containing a list was a handy way of filtering the content:
page.aspx?FilterField1=<internal field name>&FilterValue1=<value>
This no ...
0
votes
2
answers
1k
views
Querystring filter on documents
I have a list of documents who have a property (Related document ID) that I want to filter via query string
Example:
site.com/document?PolicyID=1
should view only documents who have the related ID = ...
1
vote
2
answers
752
views
osssearchresults.aspx page have problem on handling URL query string
I am setting up a SharePoint 2016 on-premise (Enterprise) environment. Right after I setup the first Search Service Application, I create a new site collection with Enterprise search center template. ...
0
votes
2
answers
1k
views
How to pass and capture query string parameter to newform in modal dialog?
My modal dialog for newform is not capturing the query string value I'm trying to pass to it. Alert on main page confirms the qs value for XID is set correctly.
var xid = GetUrlKeyValue("ID", ...
0
votes
3
answers
1k
views
How to catch null or undefined query string parameters in SharePoint?
Grabbing query string values is easy in SharePoint with some javascript...
var xid = GetUrlKeyValue("ItemId", false, location.href);
But what if ItemId didn't exist in certain instances, how can you ...
0
votes
1
answer
212
views
How to extract part of url parameter for search
Background
I have a site that stores archived data extracted from an old application environment (Lotus/IBM Notes). The data is stored as lots of individual .pdf files, 1 per record from the old ...
0
votes
1
answer
28
views
Suggestions for context menu link with querystring value to NewForm results in Page Not Found
Trying to set up a custom action for a library to send querystring parameters to a NewForm on another list using the Navigate to URL option.
Without a querystring value the link works; displays ...
0
votes
1
answer
341
views
Add list item in querystring in URL, ID needs to be hidden
Trying to add a list item, specifically the ID into a url in the DispForm.aspx. The customer does not want the ID displayed. I got the link in the display form, I figured out how to split out the ID:...