10
votes
3answers
3k views
C# Custom sort of DataGridView
I need to sort a DataGridView with Natural Sorting (Like in Explorer) so that numbers and text (in the same column) are sorted naturally, and not alphabetically (so that "place 3" comes before "place …
3
votes
2answers
979 views
How to validate data input on a sharepoint form?
How does one verify a text field with another list's column? I am currently populating a Drop down list with a datasource and then comparing the text field with items in the dropdown using javascript. …
3
votes
5answers
3k views
How to create a dataview In Sharepoint with data from a join query?
I have 3 Lists in Sharepoint.
I want to create a dataview that is a join of 3 tables.
Table1 is joined with Table2 on FieldA
Table 2 is joined to Table3 on FieldB
Table1 has duplicate values in …
2
votes
1answer
79 views
How can we make the DataView Control respond to javascript events?
If I had an ASP.NET 4.0 DataView control that looked like below, how can I control javaScript events on the client side?
Body tag:
<body xmlns:sys="javascript:Sys" …
2
votes
1answer
77 views
DataView component in SPD attaches needless strings to field values.
Hello.
In SharePoint Designer I use some lists as sources and then link them together with an operation GetListItems (I fetch items from multiple lists on different site collections for …
2
votes
3answers
1k views
SharePoint list.items.GetDataTable column names not match field names
I am binding an SPGridView to a SPList. As code samples suggest, I am using the following code to create a dataview based on the list.
dim data as DataView = myList.Items.GetDataTable.DefaultView
…
2
votes
3answers
895 views
Datatables, Dataviews and distincts! (ASP.Net/VB)
Has anyone got anything better than creating a copy of the original datatable and then looping through it to create a distinct view ?
From what I've read and attempted, the dataview doesn't support …
1
vote
3answers
70 views
Asp.net binding big dataview to DataGrid
Hello,
I have a dataview with around 2000 rows. At page load I want to bind the dataview to an object datagrid :
dataGrid.DataSource = dv;
dataGrid.DataBind();
However the time response is …
1
vote
0answers
58 views
DataView NullReferenceException in OnListChanged
I have a fairly complex WinForms app that uses data binding to tie strongly typed DataTables to controls (not sure if this fact matters here). An exception gets raised when a change to a column …
1
vote
1answer
54 views
How to add second data source to xslt / dataview in SharePoint?
I'm trying to create a bar chart using dataview formated using xsl. The list to chart contains data about number of hours spend on certain project. The project column is of type lookup, which points …
1
vote
3answers
79 views
DataView.Sort is a performance bottleneck
I have a performance bottleneck on a DataView.Sort. The code is below.
/// <summary>
/// Filters the data table and returns a new data table with only the filtered rows.
/// …
1
vote
1answer
42 views
Assigning multiple tables to one DataView
hello im using asp.net with vb and sql server 2005.
i have DataSet with 3 tables in it and i want to asign all 3 tables into one DataView
i know its possible to assign each table seperatly by doing …
1
vote
1answer
193 views
DataView.Count different DataView.Table.Rows.Count
I am using C# and .NET 3.5 and have a GridView that I am setting the dataSource programatically in the code-behind page. I have data in a DataTable and then depending on a column value (isValid …
1
vote
3answers
92 views
Reverse-sorting a Listview (with Comparer class)
I have a two-column ListView linked to a Datapager. The ListView lists all files of a particular type in a particular directory, so the data source is an ArrayList of type FileInfo. Consequently, I …
1
vote
1answer
164 views
Looping through rows in a DataView
The DataView object doesn't have a Rows property like DataTable.
How do I loop through the rows of a DataView?
