Hi @All,
I am facing slightly AEM binding issue, I have some value for rating which is coming from somewhere that value I need to bind in below this html and the value will be example : 2.5 this value I need to bind in the html can anyone help me please.
And the Html is like this --->
<div class="rating" id="ratings">
<input type="radio" name="rating" value="5" id="5">
<label for="5">★</label>
<input type="radio" name="rating" value="4" id="4">
<label for="4">★</label>
<input type="radio" name="rating" value="3" id="3">
<label for="3">★</label>
<input type="radio" name="rating" value="2" id="2">
<label for="2">★</label>
<input type="radio" name="rating" value="1" id="1">
<label for="1">★</label>
</div>
if i can bind means i would to get visible the CSS.
Here ★ is some CSS configuration value.
Solved! Go to Solution.
Views
Replies
Total Likes
If you are looking for a reference, you can go through the below link which lets you select a 1.5,2.5 rating as well.
https://codepen.io/tonkin/pen/MWwWGGg
If you want to pass the selected value to the backend, you can write an ajax request while the user selects any rating. This logic needs to implemented in JS.
Regards,
Arpit
Can you specify in more detail from where the rating value is coming and what is you trying at your side that is giving an error? Also mention the final html output you desire.
Hi @Nupur_Jain
Assume i have value like 3 How i can pass from above html. Then the UI it should get reflect that's ok. The main issue is how to pass those rating value in above html using slightly. This is my question. Below that i mentioned please help me here
Views
Replies
Total Likes
If you are looking for a reference, you can go through the below link which lets you select a 1.5,2.5 rating as well.
https://codepen.io/tonkin/pen/MWwWGGg
If you want to pass the selected value to the backend, you can write an ajax request while the user selects any rating. This logic needs to implemented in JS.
Regards,
Arpit
Are you sure this needs be done via sightly? The way I see it , I think its more of a Jquery task. If I understand your question correctly ; you are getting rating value form another URL. You get the value and replace it in your HTML !? If that is the case, you can use Jquery to replace the value to the corresponding div in your HTML.
Views
Replies
Total Likes