The tag has no wiki summary.

learn more… | top users | synonyms

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
2answers
45 views

value member in textbox and display member in combobox

i have a textbox and combobox and a datatable (fill from database) datatable has two columns one is id and other is name the combobox is bind with this datatable like Form1.ComboBox1.DataSource = dt ...
1
vote
3answers
75 views

Missing operand after '=' operator

I have this line of code which uses a dataview view_1 and I'm trying to filter the datagridview by product_name and its size using the RowFilter. Here is the code: view_1.RowFilter = "product_name = ...
0
votes
0answers
16 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
35 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
12 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? ...
4
votes
1answer
92 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 ...
0
votes
1answer
43 views

Using Dataview with a MySQL populated DataGridView

I've taken over some code that I'm a bit unfamiliar with. We were using an access data source to populate a DGV. I just changed it to fill the DGV from MySQL. Here's a snip it of code from the ...
0
votes
1answer
77 views

How to sort dataview according to input string?

i Have a dataview with Employee Name. When i type "na" in the filtering box it comes up with this result. filtered and sorted ASC order. Amina Anna Masud Rana Nasima But i want it sorted according ...
1
vote
2answers
185 views

How can I sort a VB.NET DataView based upon data row substring?

I have this: Dim strS As String = "" Dim strRowFilter As String = "SID=" & strSID Dim dv As DataView = objDataSet.Tables(1).DefaultView dv.RowFilter = (strRowFilter) dv.Sort = ("RIGHT(SName, ...
1
vote
0answers
110 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 ...
0
votes
2answers
52 views

vb.net dataview populated by sql

I'm trying to load the data from an sql query into a datatable which will load a GridView. See code below... Dim dv As New System.Data.DataView Dim dt As New System.Data.DataTable dv = ...
0
votes
0answers
40 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
2answers
143 views

Sencha touch dataview eventhandler for item

Platform: Sencha Touch 2.1 I am trying to call an event on tap of of the items from the dataview but being a newbie cannot figure it out. { xtype: 'dataview', cls: 'ownprofile-top', ...
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 ...
0
votes
0answers
40 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
1answer
167 views

How to add toolbar above Ext.dataview.DataView in Sencha touch?

I have a Ext.dataview.DataView How can I add toolbar in this view ? I have tried adding it in config, but not working. My dataview got disappeared . Also tried adding toolbar in initialise(), again my ...
1
vote
0answers
67 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 ...
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
1answer
149 views

Get selected file names in Dataview (extjs)

this.items[0].tpl = Ext.create('Ext.XTemplate', '{[this.tempValue()]}', '<tpl for=".">', '<tpl if="this.temp != title">', '<h3 ...
1
vote
0answers
31 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" ...
0
votes
1answer
139 views

DataView RowFilter determine if a DateTime column is greater than another DateTime column plus 6 months

I have a dataview which has two columns. A and B each column has a date in it of type DateTime. I would like to filter the dataview to only show rows where dates in A are greater than dates in B plus ...
0
votes
2answers
730 views

Dataview Rowfilter

I have a textbox and a button. What i am attempting to do is filter a gridview with the data that has been searched for. The two fields im searching for are customerID and CustomerName. My code: Dim ...
1
vote
1answer
105 views

How can I avoid a KeyNotFoundException in DataView.ToTable()?

I am working on a legacy ASP.NET code base that has some information stored in cache (via Enterprise Library) inside DataTable objects. It is a multiple user, intranet environment, running in .NET ...
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
3answers
88 views

Adding header rows to Gridview

My gridview is similar to this: 12- CategoryA - other columns 13- CategoryA - other columns 14- CategoryA - other columns 15- CategoryA - other columns 16- CategoryB - other columns 17- CategoryB - ...
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
32 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 ...
-2
votes
1answer
226 views

How Can Convert DataRow to DataRowView in c#

Can or how to convert DataRow to DataRowView? For example: DataTable dt=ds.Tables[0]; DataRow dr= dt.NewRow(); DataRowView drv = ????
0
votes
2answers
181 views

Retrieve Row Count from a SqlDataSource by converting into a DataView [closed]

I had some difficulties to retrieve the Total Row Count from a SqlDataSource. I used the results from the SELECT statement in the SqlDataSource to create a ListView, but got stuck to produce some code ...
0
votes
1answer
153 views

Sencha Touch dataview and initialize doesnt work together

I have a problem with my code. I want to use Sencha Touch DataView and everything works fine until I try put initialize event. When I put it, intialize event, my dataview cannot be generated. Here is ...
0
votes
1answer
58 views

binding SQL data to extract columns

From my ASP.NET c# application, I want to run a SQL query and store all the column values so that I can use them in my application. For example, select name, age, phone, address, work from UserInfo ...
0
votes
1answer
76 views

Simple HTML data not displayed in extjs

I have an XTemplate to display html data as shown below var headerTmp = new Ext.XTemplate( '<br><br><br>', '<div class="contact-display-container" style="height:100px; ...
0
votes
0answers
77 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 ...
1
vote
3answers
100 views

Easy way to see if DataView is empty?

Using the Google visualization api, is there an easy way to see if a DataView is empty? https://developers.google.com/chart/interactive/docs/reference#DataView I can see perhaps using ...
0
votes
2answers
134 views

XPages: Add a button to a data view custom control

I'm using the Extension Library for creating XPages and I want to use a view, where i can use some inline buttons (buttons in every row of the view) and I also want to use the functionality of the ...
0
votes
2answers
125 views

WPF DataGrid validation when bound to a DataView

I am attempting to validate input on a DataGrid which is populated by a DataView (e.g. myDataGrid.ItemsSource = myDataView). However, all the WPF DataGrid validation examples I have seen assume that ...
0
votes
1answer
82 views

How do I test the output of a JSON data view in CakePHP?

So I am trying to create an Android mobile application and I am using CakePHP as my serverside. I will not be needing any HTML views, I will only be responding with JSON objects. I have taken a look ...
0
votes
1answer
244 views

ext js drag drop dataview determine node dropped on

I am using ext js to drag and drop data from one dataview to another. I want to know if the drop event happened on top of an existing node or if it was just dropped in the white space of the dataview. ...
0
votes
0answers
138 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
2answers
371 views

sencha touch 2 dataview breaded between checkboxfield at top and button at bottom

I've this requirement of giving user provision of subscribing to certain categories. The layout which is to be designed is having - checkbox => at top toggling automatic subscription setting. ...
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 ...
0
votes
0answers
197 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
1answer
165 views

ST2 ListItem setHtml can't get the value of the sub-node

I have two model 'Statuses' belongTo:'User',I'm leaning the examples of sencha touch 2 named touchtweets. here is my json file { "statuses" : [{ "text" : "test", "user" : { "name" : ...
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
1answer
138 views

defaultview.sort ignoring the last row in the defaultview

I created a table, created a dataview, and sorted the dataview. I then populated the table with three rows of data and all was good. I then changed one of the fields (Hours) in one of the rows which ...
0
votes
1answer
110 views

Wicket - Move objects from one dataview to another

I am using Apache Wicket and... I have a java class: task. There are active and finished tasks. I have a sortable dataView for active tasks: final DataView<LongRunningTask> dataViewActive = ...
0
votes
1answer
35 views

Modifying DataView thread safety

I am parallelizing some of my code, and in this section, I have DataViews accessing a common DataTable. There are places where I modify the DataViews, but in necessarily discrete records among the ...
0
votes
0answers
93 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 ...

1 2 3 4 5 8