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

  • Home
  • SEARCH
  • 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 8085895
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T18:16:44+00:00 2026-06-05T18:16:44+00:00

in ext.net library, how can I get from server side code the double clicked

  • 0

in ext.net library, how can I get from server side code the double clicked item in list view? I’ve a multi selection list view but I want to add extra functionality to double click and item and display some details about it.
thanks

  • 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-05T18:16:46+00:00Added an answer on June 5, 2026 at 6:16 pm

    Try to use this:

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <script runat="server">
            protected void Page_Load(object sender, EventArgs e) {
                if (!X.IsAjaxRequest) {
                    this.Store1.DataSource = this.Data;
                    this.Store1.DataBind();
                }
            }
    
            private object[] Data {
                get {
                    return new object[]
                {
                    new { header = "3m Co" },
                    new { header = "Coca Cola" },
                    new { header = "Pepsi Co" },
                };
                }
            }
    
            protected void ShowHello(object sender, DirectEventArgs e)
            {
                X.Msg.Alert("Hello", "Hello " + e.ExtraParams["SayHelloTo"]).Show();
            }
    
        </script>
    </head>
    <body>
        <form id="Form1" runat="server">
            <ext:ResourceManager ID="ResourceManager1" runat="server" />
    
            <ext:ListView 
                        ID="ListView1" 
                        runat="server"
                        MultiSelect="true"
                        ReserveScrollOffset="true">
                <DirectEvents>
                    <DblClick OnEvent="ShowHello">
                        <ExtraParams>
                            <%--Sending Extra Params, which will contain header value, don't forget to set mode to Raw
                            All other properties you can find in item.getStore().data.items[index].data--%>
                            <ext:Parameter runat="server" Name="SayHelloTo" Value="item.getStore().data.items[index].data.header" Mode="Raw"></ext:Parameter>
                        </ExtraParams>
                    </DblClick>
                </DirectEvents>
                        <Store>
                            <ext:Store ID="Store1" runat="server">
                                <Reader>
                                    <ext:JsonReader IDProperty="header">
                                        <Fields>
                                            <ext:RecordField Name="header" />
                                        </Fields>
                                    </ext:JsonReader>
                                </Reader>
                            </ext:Store>
                        </Store>
                        <Columns>
                            <ext:ListViewColumn 
                                Header="Header" 
                                Width="1" 
                                DataIndex="header"  
                                />
                        </Columns> 
                    </ext:ListView>
       </form>
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using ext.net with asp.net, I'm generating a tree using server side code: Ext.Net.Node
I want upload file without reload page. My server-side is ASP.NET MVC. Ext.Ajax.request( {
I've been developing traditional ASP.NET applications with server side ASP.NET controls and code behind
I can find the definition files at http://www.php.net/~helly/php/ext/spl/... but I want to extend DirectoryIterator
I'm using Ext Direct to communicate with the server side. My server side takes
Situation Overview I'm using Ext.NET GridPanel to display a list of projects which has
I tried to configure the Ext.NET asp.net calendar control to view my own events
I have downloaded a dynamic library from the location: http://downloads.php.net/pierre/ . The specific file
I just downloaded complete source code of PHP from php.net (PHP 5.4.0 [tar.bz2]). They
I have a Ext.net GridPanel Pagination with Paging as: <ext:PagingToolbar ID=PagingToolbar1 runat=server PageSize=25 StoreID=GridStore

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.