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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:16:12+00:00 2026-05-29T05:16:12+00:00

i’m currently working on an aspx website wherein I am using an ASPxGridView control.

  • 0

i’m currently working on an aspx website wherein I am using an ASPxGridView control. I am able to show up data on my GridView the way I want it to appear. However, my problem occurs when I click on the Edit button (provided by the control itself under a Command Column). After clicking the said button, the GridView would change the row to an editable one. However, I can’t change the values inside the textboxes. Please note that I have already set the ReadOnly Property to false both on the GridView’s smart tag and on the xml source itself.

I tried to create a test flag wherein the textbox’s backcolor would change to blue whenever the ReadOnly property is set to true. After running the program, the textbox would be colored in blue whether the ReadOnly is set to true or false.

Are there any other properties that would help me make these textboxes editable? Thanks a lot!

Cheers!

  • 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-29T05:16:13+00:00Added an answer on May 29, 2026 at 5:16 am

    I just ran into this same problem today. This symptom can appear if you’re setting your datasource to an anonymous type:

    void BindDataGrid()
    {
        var gridData = from cm in MyCollection
                       select new 
                       {
                           UniqueId = cm.UniqueId,
                           Min = cm.SomeNumber ?? 0,
                           Max = cm.SomeOtherNumber ?? 0,
                           Description = cm.Description
                       };
    
        this.myGrid.DataSource = gridData;
        this.myGrid.DataBind();
    }
    

    The fix was to create a class for the grid to use. It was then able to figure out the data types for each cell, and they turned editable in the UI:

    public class MyGridViewModel
    {
        public Guid UniqueId { get; set; }
        public int Min { get; set; }
        public int Max { get; set; }
        public string Description { get; set; }
    }
    
    void BindDataGrid()
    {
        var gridData = from cm in MyCollection
                       select new MyGridViewModel()
                       {
                           UniqueId = cm.UniqueId,
                           Min = cm.SomeNumber ?? 0,
                           Max = cm.SomeOtherNumber ?? 0,
                           Description = cm.Description
                       };
    
        this.myGrid.DataSource = gridData;
        this.myGrid.DataBind();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want use html5's new tag to play a wav file (currently only supported
I want to construct a data frame in an Rcpp function, but when I
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I used javascript for loading a picture on my website depending on which small
I am currently running into a problem where an element is coming back from
I have a French site that I want to parse, but am running into
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this

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.