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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T02:17:14+00:00 2026-06-06T02:17:14+00:00

I have a listview. By default, all items have itemInvoke and single-selection enabled. But

  • 0

I have a listview. By default, all items have itemInvoke and single-selection enabled. But now, I would like to disable selection and itemInvoke (both event and animation) for one particular item with id “disableMe”. Is there a way to do it? Or is it possible to disable the event for the whole group (not the whole listview).?

  • 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-06T02:17:17+00:00Added an answer on June 6, 2026 at 2:17 am

    Answering my own question because I happened to figure it out today. Please advice if you have better solution for this issue.

    In Metro Style Application, selection in ListView control can usually be triggered by Right-Click with mouse or by a small ‘drag’/’swipe’ with touch. To disable touch selection, you need to overwrite the MSPointerDown event handler for that particular item. To disable ‘Right-Click’ selection, you need to overwrite the oncontextmenu event for that particular item.

    If you are creating itemTemplate in Javascript:

    function listViewItemTemplate(item) {
        // data has boolean properties called 'doNotSelectMe' and 'doNotInvokeMe'
        var data = item.data._value;
    
        var itemElement = document.createElement('div');
        var itemElement.id = 'testElement';
    
        if (data.doNotSelectMe) {
            // disable mouse selection
            itemElement.oncontextmenu = function (e) { e.stopPropagation(); };
            // disable touch selection
            itemElement.addEventListener('MSPointerDown', function (e) {
                                              e.stopPropagation();
                                         });
        }
    
        if (data.doNotInvokeMe) {
            //disable item invoke event
            itemElement.onclick = function (e) { e.stopPropagation(); };
        }
    
        return {element: itemElement}
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a ListView containing some ListViewItems. By default, selecting items makes their background
I have one ListView, it contains check boxes. By default all check boxes are
I have a default ListView that i have added my custom views for the
I have listview control.There is an option to remove selected items.After the user removes
I have ListView which is saving all data to database. For adding i have
I have a ListView with an ItemContainerStyle defined as such: <ListView Width=auto SelectionMode=Single ItemContainerStyle={StaticResource
I have ListView. Every row has TextView with some text. And also by default
I have a custom listView. The main layout xml is something like this: <?xml
For clarification : I want all the custom dialogs to look like system default
I have a default scaffolded view and in the list view, all my integer

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.