Questions tagged [dataview]

A dataview is a .net class which represents a databindable, customized view of a DataTable for sorting, filtering, searching, editing, and navigation. The DataView does not store data, but instead represents a connected view of its corresponding DataTable. Changes to the DataView’s data will affect the DataTable. Changes to the DataTable’s data will affect all DataViews associated with it.

A DataView enables you to create different views of the data stored in a DataTable, a capability that is often used in data-binding applications. Using a DataView, you can expose the data in a table with different sort orders, and you can filter the data by row state or based on a filter expression.

A DataView provides a dynamic view of data in the underlying DataTable: the content, ordering, and membership reflect changes as they occur. This behavior differs from the Select method of the DataTable, which returns a DataRow array from a table based on a particular filter and/or sort order: thiscontent reflects changes to the underlying table, but its membership and ordering remain static. The dynamic capabilities of the DataView make it ideal for data-binding applications.

A DataView provides you with a dynamic view of a single set of data, much like a database view, to which you can apply different sorting and filtering criteria. Unlike a database view, however, a DataView cannot be treated as a table and cannot provide a view of joined tables. You also cannot exclude columns that exist in the source table, nor can you append columns, such as computational columns, that do not exist in the source table.

References

723 questions
-2
votes
1 answer

jQuery animated dataview sorter

Does anyone know a dataview sorter in jQuery similar to this one (built with extjs) http://docs.sencha.com/ext-js/4-1/#!/example/view/animated-dataview.html ?
vcardins
  • 35
  • 1
  • 6
-4
votes
1 answer

Filter expression '1' does not evaluate to a Boolean term

Filter expression '1' does not evaluate to a Boolean term. how to solve this error .when i click button only this error came public DataSet Fill_Dataset() { DataSet ds = new DataSet(); con = new SqlConnection(str); con.Open(); cmd =…
prakash
  • 11
  • 9
-4
votes
3 answers

Converting DateTime to format of "MMM dd, yyyy" in C#

I have DateTime object Edate with value in format of "MM-dd-yyyy" like "01-10-2014" , but i need to use Rowfilter on my Dataview on a Date column which has value in format of "MMM dd,yyyy" like "Jan 10,2014" . I am not able to use Rowfilter because…
Dinesh Kotwani
  • 1
  • 1
  • 1
  • 2
1 2 3
48
49