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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:59:40+00:00 2026-05-28T04:59:40+00:00

I have a DataTable and when I alter (add,modifiy..ect) it wont reflect on the

  • 0

I have a DataTable and when I alter (add,modifiy..ect) it wont reflect on the DataGrid which is bound to the DataTable.

ItemsSource="{Binding TableData,Mode=TwoWay,IsAsync=True}" 

Thats the binding ^

Now when I set the RowError

TableData.Rows[x].RowError = ex.Message;

HasError gets set to true… but the DataGrid does not reflect this ( I have a style that marks a row red when there is an error)

Note: My changes are not being reflected on more then setting ErrorMessages, I’ve also tried adding rows in the ViewModel and those added rows are not relfected either.

About the DataTable:
It has no set columns or anything, it relfects a selected Database table which the user picks.

  • 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-28T04:59:40+00:00Added an answer on May 28, 2026 at 4:59 am

    Binding to a DataTable won’t work. You need to first convert your DataTable to an ObservableCollection<>. From here:

        public void ConvertDataTable( DataTable dt )
        {
            DataList  = new ObservableCollection<ProjectWorkHours>();
            //Scan and arrange data into ObservableCollection
            int UserID = 0;
            if ( dt.Rows.Count >0 )
            {
                UserID = int.Parse( dt.Rows[0]["UserID"].ToString() );
                //Distill project id list
                List<int> ProjectIDList = GetProjectIDList( dt );
                for ( int i = 0 ; i < ProjectIDList.Count; i ++ )
                {
                    int ProjectID= ProjectIDList[i];
                    //Get WorkRecord
                    int[] MyWorkRecord = GetWorkRecord(dt, ProjectID);
                    ProjectWorkHours newProjectWorkHours = new ProjectWorkHours(UserID,ProjectID,MyWorkRecord);
                    DataList.Add( newProjectWorkHours);
                }           
            } 
        }
    

    The link has a more full example of working with a database and using binding.

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

Sidebar

Related Questions

I have a DataTable which is bound to a GridView. I also have a
I have a DataTable which has 10 columns, and after I add some rows
I have a listbox which populated from using a datatable. I have a Add
I have a ComboBox, bound to a DataTable. I'm trying to add an extra
I am connecting C# with Oracle 11g. I have a DataTable which i fill
I have a DataGridView (called DataGridViewSecurity) in VB.net (Visual Studio 2010) which is bound
I have a datagridview bound from a datatable. I have a calculated column linetotal
I have a DBF file read into a datatable and display with a datagrid
I have datatable with column name tag and 100 rows of data.I need to
I have a DataTable with a Name column. I want to generate a collection

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.