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 930919
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T20:25:00+00:00 2026-05-15T20:25:00+00:00

Can I use ListBox control in MS CRM? I want to scroll the list

  • 0

Can I use ListBox control in MS CRM? I want to scroll the list item inside list. But in picklist It seems not possible. So I just want to add the Listbox control in dynamics CRM page. So can I?

  • 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-05-15T20:25:00+00:00Added an answer on May 15, 2026 at 8:25 pm

    Yes, you can add document elements into the HTML using JavaScript. The rendered page in CRM is just HTML (with JavaScript, CSS, of course) so you can use the DOM to manipulate it in places like the onLoad event of the form.

    To add an html element into a page, you would need to find the location of an existing page element then use document.createElement() to add a SELECT object into the DOM.

    This blog post should get you started on adding and removing items from the list box:

    http://timstall.dotnetdevelopersjournal.com/adding_and_removing_items_from_an_html_listbox.htm

    Essentially, you’re using JavaScript to create an element, then add items to that. Something like this:

    var selector = document.createElement('select');
    selector.id = 'selTest1';
    selector.name = 'selTest1';
    cell.appendChild(selector);
    
    var option = document.createElement('option');
    option.value = '0';
    option.appendChild(document.createTextNode('Test Item 1'));
    selector.appendChild(option);
    
    option = document.createElement('option');
    option.value = '1';
    option.appendChild(document.createTextNode('Test Item 2'));
    selector.appendChild(option);
    

    You would then need to manually save the option selected by the user in the onSave, and load that value in the onLoad for a record update.

    Overall, it sounds like quite a complex solution for your problem. Perhaps you could explain more about what you say:

    “I want to scroll the list item insid list. But in picklist It seems not possible.”

    There may well be a solution to this problem we can help with. Do you essentially want to scroll the picklist to a value in the onLoad?

    HTH.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a listbox inside a custom control. I use this custom control into
Now I am aware that I probably need to use a ListBox and can
I can use .button() to create beautiful submit buttons, but the rest of the
I am struggling to figure out the correct control to use for a list
For a <select> control, we can use the onchange attribute to run some javascript
Right now I use a ListBox but that allows the user to select an
I've just been fooling around with a ListBox control that I want to style
I have two views of some data: a list view (a ListBox now, but
I want to make some kind of list of errors in C#, but I'm
How can I create a ListBox control on my Winforms application that has images

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.