Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

40
votes
6answers
24k 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
8k 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 ...
6
votes
2answers
442 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
4answers
4k 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 ...
4
votes
1answer
83 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
2answers
3k 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
286 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
1answer
192 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
168 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
1answer
6k 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?
3
votes
2answers
4k 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
14k 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
2answers
10k 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: ...
3
votes
4answers
4k 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 ...
2
votes
3answers
74 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) ...
2
votes
1answer
558 views

Extjs 4 combobox with dataview using tpl

I am using extjs 4 with rails 3. I have a form containing a combobox and a dataview. On selection of any item of combobox, an image should be displayed in the dataview from the database. I tried using ...
2
votes
1answer
532 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
1answer
899 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
144 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
464 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
2answers
419 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
668 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
3answers
729 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
994 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 ...
2
votes
1answer
117 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
3answers
4k 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
4k 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 ...
1
vote
2answers
87 views

Extjs DataView to display tooltips

I am using Extjs DataView for my image gallery. This is my way for item tooltip.its in tpl. new Ext.XTemplate( '<tpl for=".">', '<div class="thumb-wrap" data-qtip="{shortname}" >', ...
1
vote
0answers
154 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.
1
vote
2answers
151 views

Populate a DataGridView with a DataView

I would like to fill in my DataGridView with a DataView that we can assume already contains data. I have been searching for a way to do this but all the solutions involve other data structures than a ...
1
vote
2answers
176 views

Efficient way to get unique records from datatable

I have a DataTable with multiple columns including AccountNumber, Year, and Month. I am exporting the information in this table to an Excel workbook. Since this table has the potential to be extremely ...
1
vote
1answer
135 views

How to find the original position in a DataTable from a filtered DataView

I want to find a particular ID in a DataTable, I am using a DataView to filter the results, but how do I know which row in the original table the filter view corresponds to? Any ideas? In know I could ...
1
vote
1answer
143 views

How to properly return and dispose of a dataset's dataview - seeing strange results

I'm trying to figure how to correctly return a dataview. I noticed that if I bind to the resultant dataview used below, I don't get any results. private DataView filterDocuments(DataSet ...
1
vote
1answer
222 views

How to turn data downloaded from JQuery.get, into ArrayBuffer?

x Greetings, people. I have attempted to find an answer to this for the past three days with various keywords I know of, but could not get far. I am new to JavaScript/WebGL so this could potentially ...
1
vote
1answer
247 views

How do you use DataView's RowFilter using keyword 'IN' to filter collection

I would like to filter a collection populated in a DataView. The control I am using for this is a multi-select checkbox Combobox. The string returned from this is 'val1, val2, val3'. I then pass this ...
1
vote
0answers
181 views

supporting paging as user scrolls through WPF datagrid bound to a dataview

How do I support paging on the WPF datagrid that is bound to a dataview ? Paging should happen as user scrolls through the datagrid. I retrieve 100 rows per page from the DB and load them up in ...
1
vote
2answers
48 views

Binding a data source but displaying something else

I have quite a few places where I need to bind form controls directly to a backing database. I'm using LINQ to DataSet to do this. For example, I have a ComboBox with entries filled in by a database ...
1
vote
1answer
48 views

SQL statement not being correctly populated from DetailsView (ASPX/C#)

I've got the following code in an ASPX page: <asp:DetailsView ID="DetailsView4" runat="server" AutoGenerateRows="False" DataKeyNames="ChangeID,Completed" ...
1
vote
1answer
150 views

DataRowVersion not working when using DataSet.ReadXML(…) to load data

So I've spent all day finding where the problem lies. If I don't use XML to load data into my DataSet (i.e. just grab it straight from a database or somesuch) then I have no problems at all. However, ...
1
vote
5answers
330 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
1answer
148 views

Task list dataview web part xsl modification

My application is an apporval system.I am creating data view from a task list to show the current status of the doc, and grouping them based on title, if i take the count of items in each group title ...
1
vote
2answers
617 views

How to sort a DateTime-column in DataView?

I have a gridview with some columns and I need to sort the gridview by a date-column. But it doesn't sort it correctly. This is the code I use: dt.DefaultView.Sort = "Meldingsdatum asc"; ...
1
vote
0answers
703 views

DataGridView Custom Sorting With Datasource

In my C# .NET application, I have a DataGridView. The grid's DataSource is a BindingSource, and the BindSource is bound to a filtered DataView of a DataTable that is requeried from SQL frequently. ...
1
vote
2answers
225 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
2answers
2k views

Difference between DataView.Sort and DataTable.OrderBy().AsDataView()?

I have a DataGridView which is bound to a DataTable that contains a column of custom types that I need to sort by. This custom type (MyCustomType) implements IComparable<MyCustomType> which is ...
1
vote
3answers
2k views

List<T> to DataView

How to convert List to a dataview in .Net.
1
vote
1answer
428 views

asp:Button inside SharePoint Dataview Rows with onclick event does not call C# function. Pull it out of Dataview and works fine

asp:Button inside SharePoint Dataview Rows with onclick event does not call C# function. Pull it out of Dataview and works fine. I have a ASP.NET Button I've placed inside a SharePoint DataView's ...
1
vote
3answers
511 views

stackoverflow exception in DataView row filter

I am getting "An unhandled exception of type 'System.StackOverflowException' occurred in System.Data.dll" in my DataView rowfilter property. I'm not getting any stack trace for that. So can any one ...
1
vote
3answers
912 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") + "' ...
1
vote
1answer
217 views

Problem with DataView Sort

I am trying to fetch data from DB and loading the DB with the values fetched. Later I am sorting the Data in the Table based on Name, then I want to bind it with a CheckedListBox However, when I am ...

1 2 3 4 5