The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
114 views

ExtJS 4 MVC accordion with dynamic clickable contents from json

I need up insert/add child panels to an accordion. Each of these child panels should have it's title using 'field' value in the data (see below), and the contents of each child should be (labels or a ...
1
vote
0answers
28 views

How do I determine which DataView generated an event?

I'm implementing filtering via the HeaderRow of my grids, and I've run across a problem I can't seem to solve. All the examples that show dataView Event handlers employ global variables to identify ...
1
vote
0answers
70 views

XSLT Group Sum does not display results

I've created a dataview in sharepoint 2010 designer, and use XSLT to display results that are not included by default. I have a field that is calculated and the result can be a negative or a positive ...
1
vote
0answers
34 views

rowspan is removed when using dataview in IE

I have the below template <ul class="sys-template" id="visitingCard"> <li id="{{UiId}}"> <div class="profiles"> <div class="profile"> <table border="1" ...
1
vote
0answers
45 views

Converters not executing with DataView

I'm using a grid control from DevExpress. I've binded the grid to a DataView: m_dvResponses = New DataView(...) m_dvResponses.Sort = "SEQUENCENUMBER" GridResponses.ItemsSource = m_dvResponses ...
1
vote
0answers
161 views

DataView RowFilter with TimeSpan DataType

i try to use the DataView RowFilter for a column with DataType "TimeSpan" as following: dv.RowFilter = ("Convert([time],System.String) LIKE '17:12:00'") I've found that the search Parameter "%17% ...
1
vote
0answers
647 views

Using DataView with DataGridView breaks connection with BindingNavigator

Having trouble with a form with both a Datagridview control and a BindingNavigator control. Initially I had the following code: BS = New BindingSource(DS, dsTable) ' (earlier code) Dim BS as New ...
1
vote
0answers
198 views

How to sort a DataView?

i am trying to sort a DataSet as desired: protected void GridView1_Sorting1(object sender, GridViewSortEventArgs e) { DataSet data = (DataSet)GridView1.DataSource; //sort data by ...
1
vote
0answers
190 views

DataView Sorting After AddNew

I am trying to add an initial unbound entry into a bound ComboBox. I am trying an approach very similar to the answer to the following post: How to insert 'Empty' field in ComboBox bound to DataTable ...
1
vote
0answers
203 views

System.Data.DataView.Find method: substring starts-with not possible?

Is it possible to use the Find() method of the DataView object to return the index of a row where the column used in the default sort starts with a particular string? I've been trying various ...
1
vote
0answers
285 views

How to merge dataview value

I want to merge same dataview value to another dataview .. My code is here: for (int i = 0; i < lbxempname.Items.Count; i++) { if (lbxempname.Items[i].Selected) { string id = ...
1
vote
0answers
370 views

Slickgrid collapse/expand tasks implementation

Can anyone please provide an example of Slickgrid collapse/expand tasks serverside implementation, In my current implementation the only issue I am facing with collapse and expand logic. Also example ...
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
0answers
1k 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
0answers
770 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 ...
0
votes
0answers
7 views

ext js 4.2 dataview filter will not let me remove items from store

I have a dataview in Ext JS 4.2. The dataview works fine. I want to add the ability for the user to click a toggle button that filters the grid view based upon the AmountDue field in the Store. ...
0
votes
0answers
19 views

Selecting a row from a datagridview using unique cell reference

Afternoon all, Background: I am displaying the results of a sql query in a DataGridView, when the user clicks on the row, more information is displayed in the form. The user can then edit various ...
0
votes
0answers
4 views

How to pass a document collection from a FTIndex search into a dataView

I have a fairly complex FTIndex search that I do in the Search Property of a dataView, the dataView has two categorized columns which work correctly if I do not do the FTIndex search. Is there a way ...
0
votes
0answers
43 views

ExtJS 3, build xtemplate for dataview with nested nodes in static divs

I am trying to render a jsonstores records into a dataview using an XTemplate. The catch is that I am trying to render the records in different static divs (based on the particular records type) ...
0
votes
0answers
13 views

Load data from gridview to datatable

I am trying to load data from my GridView to DataTable. I actually added the picture of my grid below. I want to mimic my datatable just like the GridView. Can someone please help me with the code? ...
0
votes
0answers
42 views

DataRowView does not update bound Textbox

I have a textbox that is bound to a DataRowView in the LoadEvent(). Dim Prow as DatarowView DataSet.Table.DefaultView.RowFilter = "SomeFilter" Prow = DataSet.table.DefaultView(0) ...
0
votes
0answers
41 views

Using LINQ to create a datatable from another datatable

I have a datatable that is created from a webservice that can only look at one row at a time. The datatable is called TicketTable with two columns WorkDate and Hours. I need to create a datasource ...
0
votes
0answers
7 views

dataview with a computed categorycolumn

I have created a dataView bond to a view. I need three categoryColumns in the data view the first requires that it is computed, and not tied to a specific column in the view. I have specified a ...
0
votes
0answers
11 views

@Name in Multi value field

I am working with a a DataView from the Extension Library. In the detail place holder I have added a panel then a table within that panel. in one of the cells of the table I have added a computed ...
0
votes
0answers
12 views

Number entry problems in DataGrid

I have a DataTable (which was populated from a sql db table), and a DataView created from that DataTable, used as the ItemsSource for a DataGrid. One of the columns of the table is of type decimal ...
0
votes
0answers
33 views

Best way to search data in dataview with multiple criteria

I have to find rows in my dataview with different sort. Sometimes I use column 1 and sometimes I use column 2 & 3. As I have a large amount of data, there is a huge time consumption each time I ...
0
votes
0answers
79 views

Extjs4, remove rows from DataView

All users: dataview containing all users, All Groups: dataview containing all groups, Users in Group: grid containing users of the selected group. I can drag and drop users from All Users to All ...
0
votes
0answers
139 views

Month Filtering on DataView.RowFilter

I have a calendar that we're setting up for a client and as a part of it, we're setting up the ability to have events recurring on a monthly basis. I decided on a DataView to reduce the load on the ...
0
votes
0answers
199 views

RowFilter not applied to newly added rows in C#

I have a DataGridView and I've set it's DataSource to be the DefaultView of a DataTable dataGridView1.DataSource = table.DefaultView; I then apply a filter on the datasource ...
0
votes
0answers
94 views

Does the DataView Table.Select() statement treat Int32 and Int64 types differently by design?

I have a question about an issue for which I have already found a resolution. I am working with the C# 4.0 framework. In the line of code below, _bo.Data["VT_VENUE_MEETING_ADJUSTMENT"].Table is a ...
0
votes
0answers
28 views

List scrolling issue

Ext.define('Por.view.VideoRecordList', { extend: 'Ext.Container', xtype:'videorecordlist', config:{ layout:'vbox', autoDestroy: true, scrollable: { ...
0
votes
0answers
151 views

selecting columns in dataview

I am creating a dynamic dataview with GIS information to create mailing labels from GIS. My current code will grab GIS information and create a dataview. I have succeeded in getting a dataview to ...
0
votes
0answers
60 views

Add new row to DataView and keep existing sorting?

I have an existing DataView, extracted from a DataTable. Sometimes I need to add a new row to that DataView, but I need that row to be added not at the end of the row set, but so that it follows the ...
0
votes
0answers
68 views

Binary encode values of different sizes in JavaScript

I'm trying to binary encode some geometric shapes: a point, a circle and a rectangular. My idea is to encode them using ArrayBuffers where each item is encoded as 1 byte for the type and more 2-byte ...
0
votes
0answers
97 views

Does filtering a DataView filter the DataSource?

If I apply a filter to a DataView, does it filter the DataSource as well. For example, if I have 7 rows in my DataSource and I filter it so I see 3 rows in a GridView, does the DataView.DataSource now ...
0
votes
0answers
50 views

DataView settings are lost after WriteXML

So, the thing is, i set the sorting of the datatable in the dataview, ok, the sorted table is contained in the dataview, so far all right, I later used the datable and the dataview to get the sorted ...
0
votes
0answers
210 views

Filter DataView on DispForm on MultiLookup field in Sharepoint Designer 2007

Following scenario: List A LookupListB (MultiLookup field containing values from List B) List B ID Title DataColumn Using the Sharepoint Designer I have added a DataView (DataFormWebPart) to ...
0
votes
0answers
346 views

Binding DataGrid to DataView of DataTable doesn't update new columns

I have a DataTable that I create rows and columns for from another part of the program. I bind the default DataView of this DataTable to a DataGrid. I update my DataTable in the following format: 1: ...
0
votes
0answers
53 views

Dataview MySQL filtering

I have a datagridview in visual basic connected to MySQL database. I now want to create a textbox which can be used to filter the data inside the the datagridview. If I understood correctly what I ...
0
votes
0answers
314 views

DVWP drop-down not filtering connected Web Parts

I am having an issue with a DVWP drop-down not filtering connected web parts. I searched, but couldn't find previous questions. I apologize if this has been asked. I have a Data View Web Part that ...
0
votes
0answers
223 views

LINQ DataView Refresh

I am attempting to perform a filter amongst two related DataTables using LINQ. My query retrieves all parent rows having a child record of a specific type. Every time the user provides different type ...
0
votes
0answers
55 views

Is it possible to get a hybrid of DataView and Carousel in Sencha Touch 2?

I'm trying to make a quiz app, hence I've got a question (and its answer) as my Model. My Store picks up all of the questions. But I'm at a loss, as to how to display it. Each question has some html ...
0
votes
0answers
237 views

Sharepoint Foundation 2010: Using request paramete in data view does not work

I have following situation: I create a document library and each document is linked to one or more list items of 4 custom lists. I created a page like "detailListItem.aspx", where I want to display ...
0
votes
0answers
471 views

Slick Grid not loading everytime

**Fixed. The issue was with the columns. I am doing ajax calls to get the columns to show on the grid and then all possible columns for the column picker. I forgot that jQuery does not work like the ...
0
votes
0answers
192 views

Sharepoint 2007 - filter data views on dispform.aspx

I've been playing around all weekend with this and have yet to solve it. I'm not allowed to use custom controls or C# on our sharepoint farm. I can use SPD and some (very little) javascript to my ...
0
votes
0answers
129 views

C# Filter DataView correct for Chart

I'm using a DataView with 2 (in combination) unique columns: Week_Number, Week_Year. One stores the Week number of that record the other the according Year, i.e. Week_Num = 27 and Week_Year = 2012 for ...
0
votes
0answers
161 views

Sencha DataView With Popups Working…how to customise it further

I wanted to share with you a modified version of Sencha Touch Kiva app that has been stripped and customised to a tiled Dataview, with modal centred popups. My next challenge is to customise it with ...
0
votes
0answers
213 views

Trying to pass an Array to a detailViewController using segues?

Ok so I am trying to pass an array of parsed JSON data to a detailViewController but its sending null data (incorrectly). I am not sure what is wrong with my segue method. - ...
0
votes
0answers
308 views

aspx GridViewSortEventArgs cannot find column to sort on

I have weird error that pops up in an organized test run but works for genearl user consumption. A generic query viewer page uses a datatable to load a gridview. I have an onSort method for doing ...
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 2 3