What is the best way to combine two parameters using href?

I am having an issue with my kendo grid. I am trying to pass two parameters from the client side using an anchor tag and href, but I keep getting a syntax error. Can someone help me figure out the correct way to pass variables using href?

Here is my config.js code:

toolbar: [{template: '<a class="btn btn-default btn-sm pull-right"  
      href="app/challenge/rest/exportChallengeGridDataToExcel?key={{$rootScope.id}}  
        &challengeType={{$rootScope.challengeType}}">Export to Excel</a>'}]

Answer №1

Here is a way to achieve the desired result:

'<a class="btn btn-default btn-sm pull-right"  
href="app/challenge/rest/exportChallengeGridDataToExcel?key={{$rootScope.id}}  
&challengeType={{$rootScope.challengeType}}">Export to Excel</a>

It is advised to minimize the usage of $rootScope and consider constructing the URL in the controller for better readability of HTML code, but the choice is ultimately yours.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Click the button to save the text to your clipboard with a customized

Can anyone suggest a method for duplicating div text using JavaScript while preserving the style attributes (italics, font family, size, etc.)? My goal is to paste the copied text into Word and have it maintain the same appearance as on the webpage. For e ...

An effective way to verify if a record has been successfully updated is by utilizing Sequelize's

Within this snippet of code, I made an update to a specific record in the IPAdress model. What is the best way for me to verify if the record has been successfully updated or not? let IPAdress = await model.IPAdress.update(data,{ where: { id } }); ...

Can you explain how to invoke a class with express().use function?

Currently, I am delving into learning Node JS with TypeScript but have hit a roadblock with a particular issue. In my app.ts file, I have initialized the express and attempted to call the router class inside the app.use() method, only to encounter an error ...

The Access-Control-Allow-Origin policy does not permit requests from applications running with an origin of null, specifically for those using a file:// URL

I am in the process of creating a webpage that utilizes jQuery's AJAX feature to fetch images from both Flickr and Panoramio. While the image retrieval from Flickr is functioning properly, I encounter an issue when attempting to use $.get(url, callba ...

Displaying image while processing substantial ajax data

I implemented code to toggle the display of a loading image on my web page while making ajax requests. $(document).ajaxStart(function(){ $("#please_wait").css("display","block"); }); $(document).ajaxComplete(function(){ $("#please_wait").css(" ...

hiding a dropdown menu in vuejs when clicking outside of it

Utilizing dropdown menu components in vuejs to create a standard dropdown menu. The code for the dropdown component is as follows: <template> <span class="dropdown" :class="{shown: state}"> <a href="#" @click.prevent="toggleDro ...

Waiting in Python using Selenium until a class becomes visible

Currently, I am trying to extract information from a website that has multiple web pages. This is how my code appears: item_List = [] def scrape(pageNumber): driver.get(url + pageExtension + str(pageNumber)) items = driver.find_elements_by_class_ ...

Steps for resolving the Angular datepicker filter issue

Currently, I am facing an issue with filtering dates to display data based on a specified range. The problem arises when the FROM and TO dates are the same, as it fails to show the data for the selected date. For instance, in the following scenario: FROM: ...

Retrieve JSON information from External document through Ajax

I'm trying to incorporate an external JS file that contains some sample JSON code. However, I'm encountering an error when I include the sample JSON code in the file, specifically at the ":". Interestingly, when I validate the code using online t ...

Arranging an array in reverse order (starting with underscore) can alter the attributes of the objects within

REVISION: To provide more clarity on the issue, I have recorded a bug using quicktime. Here is the link for your reference: For additional code details, please visit: ORIGINAL INQUIRY: A strange issue has come up while working with Meteor and its depen ...

Why is the Get request for fetching data not returning multiple parameters, but only returning a single one in Vuex?

I am trying to fetch and visualize a list of data with a GET request while passing two parameters. However, I am encountering an error 400 when passing both parameters, but it works fine when passing just one. Link to code This is the non-working code: a ...

Navigating through various JavaScript libraries with varying loading times can be a tricky task when working within the Angular

As I dive into learning Angular, I find myself pondering the architecture of my app. The project I'm embarking on will heavily rely on various external libraries such as jQuery, jQuery.ui, jsPlumb, and more, each with their own loading times. I unde ...

What is the best way to use React to display all user post images on a webpage in real

I'm currently working on a React web application where I want to display images in all user posts on my Discover component. The JSON objects look like this: https://i.stack.imgur.com/ZM6Lu.png This is the current state of my discover component. Dis ...

How to create a Vue.js animated navbar with scroll opacity

I am looking to create a fixed navbar that changes opacity based on user scrolling behavior. Initially, I want the navbar background to be transparent and then transition to white as the user scrolls down the page. An example of what I am trying to achieve ...

JavaScript has a flaw in its date validation that allows for incorrect dates like 'dd.mm.0302' or '27.08.0974' to pass through

I have encountered an issue with date validation from the database where some years in the date fields appear to be incorrect (such as 28.02.0302). I need to validate these dates properly, but the functions I found online are not working as expected. How ...

muiSlider limited to specific range

I am currently using the Mui Slider component for a user interface where I need to restrict its value within a certain range. For example, I want the slider's handle to become unmovable after reaching 50. Users can still select values up to 50, but th ...

How can you securely transfer the ARRAY OBJECT from JavaScript to PHP using Ajax?

I am attempting to send a Javascript Array Object via Ajax to PHP and then use that object as a true Array on the PHP side. My current approach has not been successful in terms of utilizing the incoming object as an Array within PHP; I can only parse it as ...

Is there a way for me to replace zero with a different number dynamically?

Is there a way to dynamically insert a different number instead of zero in mongoose? displayCity: (req, res, next) => { let id = req.params.id; provinceAndCity.findById({ _id: id }).populate('city.0.limitation', 'title ...

Manipulating Json files using node.js through the html input element (Front end development with AngularJs and Html)

I have multiple JSON array files that I need to read and display in the form of a table. The only editable part of the table should be the header, which corresponds to the keys of the JSON objects. This way, the user can customize the headers and those cha ...

Several jquery libraries are experiencing malfunctions

<head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { $(".slidingDiv").hide(); $(".show_hide").show().click ...