The tag has no wiki summary.

learn more… | top users | synonyms

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
1answer
1k 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
423 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 ...
0
votes
2answers
88 views

How to imporove the performance of my method created to remove duplicates from a DataView?

I have created a method to remove duplicates froma a DataView. I have not option to change the SQl query , so my only option is to modify the existing data retrieved from the Database in the DataView. ...
0
votes
2answers
804 views

How to return datatable using Take() using C#

I have a function that returns a datatable, I added a code that will sort the datatable using dataview and should return Top 10 rows from a sorted dataview. DataView dvDt = dtData.DefaultView; ...
1
vote
1answer
1k views

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

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 turn out to be a ...
0
votes
2answers
1k views

Hide UltragridRow that has no visible child rows after applying RowFilter

So, I am setting the DataSource of my BindingSource to the DefaultViewManager of a DataSet that has a DataRelation. I then set my BindingSource as the UltraGrid's DataSource before applying a ...
1
vote
1answer
645 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 ...
0
votes
1answer
1k views

How to Create a Filtered DataView on a Joined Data Source in SharePoint Designer 2007

I am trying to create a filtered DataView for MOSS 2007 using SharePoint Designer 2007. The following simplified example demonstrates what I am trying to accomplish. Suppose I have two lists: Colors ...
0
votes
3answers
714 views

Filter DateTime in DataView does not filter minutes and second

I have the following code (a DataView that filtered by DateTime): dv = new DataView( dataTable1, "DateTime >= '" + Convert.ToDateTime("7/5/2011 9:21:00 AM") + "'", "ID ...
0
votes
1answer
580 views

How to invoke a Javascript method after Wicket Dataview is rendered with AjaxPagingNavigator?

I am using Wicket's DataView with AjaxPagingNavigator. My use case is very similar to How can I update a Wicket DataView with AJAX? withe the caveat that I need to do post processing after the ...
1
vote
0answers
312 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
81 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 ...
0
votes
1answer
256 views

how to convert filtered ListCollectionView to dataview

How can I convert a filtered ListCollectionView to a dataview?
0
votes
1answer
1k views

Dataview RowFilter escape invalid characters

Does any one have a handy ready to use method to escape wildcards, invalid characters in the string to be assigned to RowFilter for a DataView in C#. The rules somewhat are like below If a column ...
0
votes
1answer
258 views

WildCard(Underbar) in C# Dataview select

When using the select method of a Dataview, I want to use a function such as underbar (wild card) of MS SQL Server. For example, to draw 3string that begin with same XX coming XXa, XX2, SQL uses ...
1
vote
1answer
131 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" ...
0
votes
1answer
80 views

Whats the difference between using assigned variables and straight access

Considering below what are benefits, uses or gain of each and why do you think so? other than short way to access the data. btw is there a way to use DataView in using (Resource){//Code} format. ...
1
vote
1answer
297 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, ...
3
votes
1answer
391 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 ...
1
vote
1answer
2k views

How to get data after DataView filtering?

I apply a filter to Dataview and after that I need to get the filtered data. before filtering I did: dvUnloadOpenAccounts.RowFilter = "uso_id = '30640'"; foreach (DataRow row in ...
0
votes
1answer
224 views

DataView rows - order by most recently modified?

What we're doing - we have some DataGrids bound to some DataViews and when the user hits a 'submit' button we want to pass all the changed rows to a SPROC. There are some complexities here I can't go ...
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 ...
0
votes
1answer
682 views

VB.NET 2010 Express Dataset/Dataview problems with XML

I am a co-op student learning vb.net and I have a project which retrieves data from an xml file within the program (based on selections made from combo boxes) and calculates and displays prices. My ...
0
votes
1answer
806 views

Binding Infragistics UltraChart (lineplot) to DataView

I'm trying to bind a DataView to NumericTimeSeries through its NumericTimeSeriesDataAppearance instance, but the series end up having zero points. I'm testing using the following code: DataTable ...
0
votes
1answer
214 views

Adding new record in DataView on condition different values in columns in record?

I have a DataView in my code-behind page : DataView _dvListing = _dt.DefaultView; What I want to do is loop through the view/table and check the column value of the current record with the value in ...
0
votes
1answer
500 views

Asp Update Panel - Details View Updates Underlying GridView doesn't

I have an Asp.net gridview on a page, when a buttonfield is clicked (instead of select) it opens a popup form (my popup not asp's) which contains the detail of the gridview row displayed in an ...
0
votes
1answer
149 views

Check Duplicates

I'm using following code which is not working to check duplicate values for "Revision Status" private bool CheckRevision(string docType,string Revision) { bool Res = false; ...
0
votes
1answer
2k views

How to filter a dataview from the ith row to jth row? (C#)

I know there's the RowFilter option to filter according to column value. Also there are methods to choose the top N rows. But how do I filter out and get rows from (I prefer getting it to the same ...
0
votes
3answers
2k views

Trim function not removing spaces in name

bool Res = false; DataView DV = new DataView(DT); DV.RowFilter = "Trim(Originator)='"+OrginatorName.Trim()+"'"; if (DV.Count > 0) { Res = true; } I need to get ...
1
vote
2answers
780 views

how to bind dataview to the treeview?

I'm having a dataview which is collection of id & name. And i want to bind that dataview to the treeview control in the form of hirarchy. And i want to show the name field as the display text on ...
0
votes
2answers
417 views

ExtJS DataView equivalent for Dojo?

Is there an equivalent widget in Dojo's arsenal that's similar to the grid-style view that ExtJS's DataView provides? http://dev.sencha.com/deploy/dev/examples/view/data-view.html I know that I ...
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 ...
0
votes
2answers
1k views

Filter records based on Time using Dataview Rowfilter

Is it possible to get records between a Timespan from a DataTable using the RowFilter property of the Defaultview that belongs to the table. Purpose: I would like to check if Current ...
0
votes
1answer
460 views

WPF Datagrid Edit won't allow me to change other cells

I've a Datagrid whose DataContext is assigned to a Dataview. When I try to edit the datagrid shown in the form there appears a red border around the cell being editted AFTER I click out or press ...
0
votes
0answers
408 views

How to get count of repeated values in datatable in asp.net

I want total count of repeated values in a datable. as shown in image total count should be : 2 because repeated values are only 1 and 2. I tried as given below: DataView dv = new ...
1
vote
1answer
280 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
1answer
6k views

Data view in Sencha touch

I am new in sench-touch. I am trying to show JSON data using data Store. Here is my code "gridView2.js" code: Ext.setup({ tabletStartupScreen: 'tablet_startup.png', phoneStartupScreen: ...
6
votes
2answers
924 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 ...
0
votes
1answer
1k views

How to format a date column in a DataGrid from VB

I have a .aspx file with a datagrid in it: <asp:DataGrid ID="Gifts" AutoGenerateColumns="True" runat="server" AllowSorting="True"> </asp:DataGrid> The .aspx.vb file associated with ...
0
votes
3answers
4k views

How to filter DataView based on multiple inputs

I know how to filter data based on the user's input from a single textbox: FilterDataView.RowFilter = txtFilter.Text; But how would you go about filtering data based on multiple user input from ...
0
votes
2answers
7k views

How to get selected columns from a datatable

I have a datatable with 10 columns, but User can select the columns to be displayed so I need to create a generic code to display only the selected columns. Current code: string[] ...
0
votes
1answer
399 views

Joining sharepoint 2007 lists in a web view based on a common key field

So - I'm making a data view that is to contain a list. This list has a field that will be used to match up against two other lists. If there is an entry for this value, it should show the value from ...
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 ...
0
votes
2answers
677 views

How can I make a Wicket form save radio button state?

I want to have a repeater like DataView or ListView. The first column of each row (named User ID) should be read from a List, and for each user ID, the program should dynamically create three radio ...
0
votes
1answer
2k views

Cannot change DataType of a column once it has data

I want to sort a gridview by a datetime-column so I need to change the datatype of that column I try it with following code but I'm getting the error: ...
1
vote
2answers
3k 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 I fail in sorting it correctly. This is the code that I use: dt.DefaultView.Sort = "Meldingsdatum asc"; ...
0
votes
2answers
3k views

Show button in DataView row on mouseover (ExtJS)

I would like to show a (delete) button in a DataView row in ExtJS. I don't want the delete button to be always visible but just on a mouseover. If anyone has an example that would be greatly ...
0
votes
2answers
231 views

Linq BoilerPlate: Is all of it needed?

I have the following code, which does work: var dataSource = (from p in dv.ToTable().AsEnumerable() where filter(p) select p).AsDataView(); filter is a Func<DataRow, bool> dv is a DataView ...
0
votes
1answer
2k views

C# DataView RowFilter, null value for DateTime column

I'm trying to filter on null columns (I only want to show rows where the column is null), but the issue is I can't compare the column to a null, since the column is of DateTime value. I get the ...

1 4 5 6 7 8