Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8759155
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T14:43:50+00:00 2026-06-13T14:43:50+00:00

In a view in Razor I’m passing a model which contains a list (‘usageList’)

  • 0

In a view in Razor I’m passing a model which contains a list (‘usageList’) of objects that have a Name and UseDescription property.

In JQuery I’ve made a slider and i want the specific UseDescription to appear when I change the slider value.

The problem is getting the specific object in the list inside the model.
I’ve got this code (JQuery):

<script type="text/javascript">
    $(document).ready(function() {
        $("#slider").slider({
            min:1,
            max:3,
            value:1,
            range:"min",
            change: function(event,ui){
                var number = ui.value;
                alert("@Model.UsageList[ui.value].UseDescription");

            }
        });
    });
</script>

it is not possible to get ui.value in this line:

alert("@Model.UsageList[ui.value].UseDescription");

If I pass in a number (1 for expample) instead of ui.value things work fine. But I need to get the specific listobject.

Any help is very appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T14:43:51+00:00Added an answer on June 13, 2026 at 2:43 pm

    You need to download your list to the client side using javascript. Then, you can get an item by index. Something like this:

    <script type="text/javascript">
            $(document).ready(function() {
                var usageList = []
                @foreach (var item in Model.UsageList)
                {
                    <text>usageList.push('@item.UseDescription');</text>
                }
    
                }
                $("#slider").slider({
                    min:1,
                    max:3,
                    value:1,
                    range:"min",
                    change: function(event,ui){
                        var number = ui.value;
                        alert(usageList[ui.value - 1]);
    
                    }
                });
            });
        </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi I have Razor View that Generate a list of Addresses. among all address
I have a action link on my MVC3 razor view. Which have a action
I have a Razor view with several fields rendered from a View model, and
I have a form in my razor view which works exactly as it should.
I have a cshtml partial view (Razor engine) that is used to render something
Using the razor view engine, I have some code like the following: @Html.TextAreaFor(model =>
I have a Razor view that has something like this in: @foreach (var item
MVC3 VB.NET Razor view Application... I have a view that uses a for each
I have a razor view with a BeginForm command and a loop within that
I have a razor view that I added a delete button to inside of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.