The tag has no wiki summary.

learn more… | top users | synonyms

43
votes
6answers
29k views

How to use GWT 2.1 Data Presentation Widgets

At the 2010 Google IO it was announced that GWT 2.1 would include new Data Presentation Widgets. 2.1M is available for download, and presumably the widgets are included, but no documentation has yet ...
15
votes
5answers
12k 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 ...
10
votes
2answers
22k 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?
9
votes
4answers
7k views

Is there a reference for the SharePoint XSLT extension functions?

There are a couple of different .NET XSLT functions that I see used in the out of the box SharePoint web parts (RSS Viewer and Data View web part). <xsl:stylesheet ...
6
votes
2answers
918 views

Why does DataTable.Select() return the wrong rows?

The DataTable.Select() function returns the wrong rows with a filter like this... "booleanColumn1 AND booleanColumn2 AND GuidColumn1 = '00000000-0000-0000-0000-000000000000')" Making virtually any ...
5
votes
2answers
20k views

How to get a value from a column in a DataView?

I have a dataview defined as: DataView dvPricing = historicalPricing.GetAuctionData().DefaultView; This is what I have tried, but it returns the name, not the value in the column: ...
5
votes
1answer
497 views

How do I display the property name in the group header in wpf

<!-- GroupHeaderStyle --> <Style x:Key="GroupHeaderStyle" TargetType="{x:Type GroupItem}"> <Setter Property="Template"> <Setter.Value> ...
4
votes
4answers
2k views

Sorting a List<FileInfo> by creation date C#

Using this example off MSDN: using System.Collections.Generic; using System.IO; namespace CollectionTest { public class ListSort { static void Main(string[] args) ...
4
votes
3answers
6k views

Compare dates in DataView.RowFilter?

I am scratching my head over something rather stupid yet apparently difficult. DataView dvFormula = dsFormula.Tables[0].DefaultView; dvFormula.RowFilter = "'" + startDate.ToString("yyyyMMdd") + "' ...
4
votes
3answers
5k views

What SQL query or view will show “dynamic columns”

I have a table of data, and I allow people to add meta data to that table. I give them an interface that allows them to treat it as though they're adding extra columns to the table their data is ...
4
votes
2answers
6k views

Select top N rows AFTER sorting from Dataview in c#

I have a DataTable with 10 rows say one of the columns numbered 1 to 10 randomly. I want to sort them. usually, I do this: DataView Dv = new DataView(dtPost, "", "views desc", ...
4
votes
1answer
69 views

Trouble Sorting a DATE column in DataTable/DataView in C#

I am trying to Sort a DataView in C#. It seems the Sort method of DataView Class takes the dates as strings. In the output am getting this - 5/9/2013 4:56:38 PM 5/8/2013 4:23:06 PM 5/8/2013 1:38:21 ...
4
votes
1answer
374 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" ...
3
votes
2answers
2k views

Dynamic tooltip depending on mouse over on a row in a datagrid(NOT datagridview)

I am trying to make it so that when the user mouses over a row in my DataGrid / dataview, each row would display a different tooltip outcome. I cannot really figure this out. with DataGrid how can I ...
3
votes
2answers
259 views

why can't the datacontext detect changes to controls binded to a dataview when these changes are done via js?

I created a javascript AdoNetDataContext and created a DataView from it. I was using textboxes on the template for the table columns. AdoNetDataContext can track changes if there were any on the ...
3
votes
4answers
6k views

How to Naturally Sort a DataView with something like IComparable

My DataView is acting funny and it is sorting things alphabetically and I need it to sort things numerically. I have looked all across the web for this one and found many ideas on how to sort it with ...
3
votes
1answer
389 views

WPF datagrid refreshes on it's own when it's not supposed to

I feel like I'm missing something here, but I have this datagrid which when the datasource changes, automatically redraws it self with no logical reason for it doing so. I have the datagrid bound to ...
3
votes
2answers
7k 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
19k 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 ...
3
votes
3answers
1k views

Sencha Touch 2 list background change

I have a list within my application, but was wondering if it is possible to have each list displayed show a different background colour, rather than the same one through out each item? I have created ...
3
votes
1answer
1k views

SlickGrid RemoteModel vs. Dataview Model

We're currently using the slick.remotemodel.js model implementation of SlickGrid for its remote Ajax loading functionality. With this example the only filtering provided is a simple Search element. ...
3
votes
1answer
301 views

Did I use RowFilter on DataView with Threading correctly?

EDIT: I am using VS2008, .NET 3.5 I have a DataTable, which is populated in a DataView and passed into a CollectionView. DataTable newLeadTable = new DataTable(); myConnection.Open(); ...
2
votes
4answers
10k views

How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)?

Is there a elegant way, to bind predefined dataGridView columns with results from sql statement? Example: dataGridView1.Columns.Add("EID", "ID"); dataGridView1.Columns.Add("FName", "FirstName"); ...
2
votes
3answers
11k views

How do I check for blank in DataView.RowFilter

Assume I have a column called A and I want to check if A is null or blank, is the proper way to check for this using the DataView's RowFilter: DataTable dt = GetData(); DataView dv = new ...
2
votes
3answers
6k 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
1answer
876 views

How to merge multiple dataviews into one (VB.NET)?

I have three dataviews (dataview1, dataview2, and dataview3). These are of type System.Data.DataView, and all three have the same columns. Is there an easy way to merge them into one, so I have one ...
2
votes
2answers
2k views

Add One DataView to Another in C#

I need to add two DataViews together to have one Dataview that can then be bound to a Repeater. I am plugging into someone else's API so I can't change the way the data is retreived at the SQL Level. ...
2
votes
1answer
634 views

Match a single character in a DataView RowFilter?

I'm wondering if there is any possible way of applying a RowFilter on a DataView which provides single character matching? e.g. DataView.RowFilter = "SOME_COL like 'A_BCD%'; where the underscore ...
2
votes
3answers
1k 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. /// ...
2
votes
1answer
2k views

Replace new line char with <br /> XSL

I have a Sharepoint list which I want to convert to a JSON via an XSL dataview. I have an XSL recursive replace function which I use to replace all special characters (escape backslash, double quotes ...
2
votes
2answers
1k views

How to filter a dataview

I have a dataview that contains a list of tables. I am reading in a list of values that I then want to apply as a filter to this dataview. The list of values is actually in the form of "table1, ...
2
votes
1answer
124 views

DataView component in SPD attaches needless strings to field values

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 rollup/aggregation): ...
2
votes
1answer
477 views

Manipulating datastore data after loading

I have a backend that returns some JSON data that is used by my datastore through an ajax proxy. The data is then displayed in a dataview. What I need to do is perform some transformation on the ...
2
votes
2answers
3k views

Sencha Touch DataView not showing items from Store

I'm using Sencha touch 2. I have store that load from existing js object: Ext.define('majestic.store.Dataset', { extend : 'Ext.data.Store', requires : [ 'majestic.model.Dataset', ...
2
votes
1answer
2k views

Sharepoint XSL data view query string filtering

Lets say I have a list called events. Using SP Designer I can add a webpart to a page, select the events list, and a data grid with standard sharepoint controls and column filtering will be added to ...
2
votes
2answers
437 views

Remove Record from a DataView

I have a DataView which has been populated with a list of files from a database table. I want to iterate through the DataView to see if there are any files there of a particular type, and if so, do ...
2
votes
1answer
782 views

How to add new row on top in Slickgrid?

How to add new row on top instead of defaulted to bottom, in slickgrid dataview impelmentation also it is appreciated someone provide example of deleting a row.
2
votes
1answer
1k views

Asp ModalPopupExtender not displaying detail view

I am using a ModalPopupExtender within an updatePanel to show a detailView when a user selects a "Details" Button within a GridView. The problem is that when the button is selected the popup is not ...
2
votes
1answer
2k views

Using Aggregate functions in DataView filters

i have a DataTable that has a column ("Profit"). What i want is to get the Sum of all the values in this table. I tried to do this in the following manner... DataTable dsTemp = new DataTable(); ...
2
votes
1answer
1k views

Injection Attacks against .NET DataView RowFilter

So I'm writing a handler that filters a cached DataTable based on the AppRelativeCurrentExecutionFilePath using the DataView RowFilter property. What's the best way to encode the input to prevent an ...
1
vote
5answers
1k views

ASP.NET Webservice

I may be going at this from the wrong direction. I'm fairly new to .net web services and was looking for a little help. I have a geolocation webservice I got online and I wanted to bind the results ...
1
vote
2answers
8k views

Sorted dataview to datatable

i have the following method: private DataTable getsortedtable(DataTable dt) { dt.DefaultView.Sort = "Name desc"; //I would need to return the datatable sorted. } My issue is that i cannot ...
1
vote
1answer
5k views

Missing operand after 'Operator Name' operator

I am filtering my gridview using dataview. I am passing the filter command to dataview as mentioned below; string strFilter= " 0=0 "; if (Session["SampleSession"] != null) { ...
1
vote
6answers
28k views

SELECT DISTINCT in DataView's RowFilter

I'm trying to narrow down the rows that are in my DataView based on a relation with another table, and the RowFilter I'm using is as follows; dv = new DataView(myDS.myTable, "id IN (SELECT ...
1
vote
4answers
300 views

How to pull a SQL Server table into memory in order to run queries against it

I'm running > 50K simple selects on a table in sql server and I'd really like to speed it up. I've read that you can pull the data into memory and use something like a dataview to query against. Is ...
1
vote
3answers
5k views

List<T> to DataView

How to convert List to a dataview in .Net.
1
vote
4answers
3k views

Retrieving rows in DataView by its index

I have a DataView, which has been sorted in some order. How can I retrieve the values using an index. Something like this: if(dv.rows[0]["name"]=="xxx") { --- do something --- } else ...
1
vote
1answer
2k views

How can I display text with carriage returns in a GridView in ASP.Net

I'm trying to display records within my GridView and a few of the cells contain text with carriage returns. However when this text is displayed the carriage returns are gone. Is there an easy way to ...
1
vote
4answers
5k views

Aggregate functions in ADO.NET with GROUP BY functionality

This is a more direct question stemming from an earlier more general question i had earlier now that I've spend more time looking into ADO.NET I want to take an ADO.NET DataTable and perform the ...
1
vote
2answers
2k views

How do I display default text if a Data View Web Part in Sharepoint has no data?

I am trying to use the Data View Web Part in Sharepoint. There are many articles on the web related to populating it with data. My question is, what if the data source is empty? Is there a way to ...

1 2 3 4 5 8