The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
28 views

List scrolling issue

Ext.define('Por.view.VideoRecordList', { extend: 'Ext.Container', xtype:'videorecordlist', config:{ layout:'vbox', autoDestroy: true, scrollable: { ...
1
vote
4answers
318 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 ...
0
votes
1answer
186 views

Committing data added from Windows Form with Textboxes bound to dataview?

This is my first post here so forgive me if I break rules and need to clarify some things later. My problem is that I am using Visual Basic 2008 and have a windows form that has several textboxes ...
1
vote
1answer
433 views

Accessing GridView's ViewState

What I have: I have a GridView without paging. In the Page_Load handler of the containing Page I read user specific values from a table storage and store them in a collection so the SelectMethod of ...
0
votes
1answer
691 views

Add button to itemTpl sencha touch

I am new for sencha touch. I got a question.How can I add button and fire the even to item template?Please guild me solution Here is my coding ...
0
votes
1answer
196 views

dataview within mobile page not finding pageName reference to intended mobile page

I have a single page application that has multiple Mobile Pages. I have a view level mobile page that targets another mobile page as follows: <xe:appPage id="viewPage" pageName="viewPage" ...
-2
votes
1answer
204 views

jQuery animated dataview sorter

Does anyone know a dataview sorter in jQuery similar to this one (built with extjs) http://docs.sencha.com/ext-js/4-1/#!/example/view/animated-dataview.html ?
0
votes
1answer
896 views

Assigning listeners to different divs inside a xtemplate - extjs 3.4

I am having trouble adding a listener to different elements generated from an XTemplate. var data = { users: [ { id: 1, name: 'Ed Spencer' }, { id: 2, name: 'Abe Elias'} ] ...
0
votes
2answers
118 views

c# all distincts value from datatable

I've found this piece of code that can be used to get all distinct values. But my datatable has 10 columns. The distinctValues only shows the columns I write in the toTable(); Is it possible to use ...
0
votes
1answer
201 views

DataView from strongly typed DataSet

We have a strongly typed DataSet created by using the DataSet designer in Visual Studio. Can you show us the needed coding to create a DataView from this DataSet? This will be used in an ASP.Net ...
0
votes
1answer
461 views

Creating a DataView for sorting ASP.Net GridView columns

We have a typed DataSet created by the Visual Studio DataSet designer. Can you tell me how to create a DataView object from the typed DataSet? We want to change the sorting of it so it can be ...
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
66 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
1answer
149 views

Performance way of working on SQL Server data tables at C# code behind

Alright now the question may come to you vague so I will try to explain as much as possible. For example I have 10 columns and 5000 rows in a data table called tblNpc. So I will make a lot of ...
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
1answer
61 views

Removing a sort from dataview

I have a dataview which binds to a PagedDataSource object. The data is pulled into the dataview from the db using a stored procedure and the returned data is sorted according to a date field. The ...
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 ...
1
vote
3answers
881 views

search field in a dataview in extjs

Am trying to put a search field with respect to a data view. There is a toolbar on top of the data view, which consists of a text field. On entering some text in the field, i want to call a search ...
1
vote
1answer
201 views

Is it possible to use a ext js component as item renderer for a Dataview in stead of using the tpl?

I have some experience with Ext JS 3.4 I can create a Dataview with a store and using a tpl to display/render the items. But what I would like is create a item renderer (just like in Flex) for the ...
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
1answer
79 views

extjs float an image above another image in a dataview

I am making a preview in extjs and I need to float images above an image in a DataView based on an image clicked in another DataView. image layering. How does one do that?
0
votes
2answers
427 views

Lambda Expression to remove row with a condition from DataView

I have the following: DataView studentInfo=ds.Tales[0].DefaultView;//Assuming I have a DataTabe ds with data studentInfo.RowFilter=myRowfilter I want to do ...
0
votes
1answer
159 views

Can I achieve a wildcard % in the middle of a DataView RowFilter command?

I have this row filter text: "[Name 1] = '" + forename + "%" + surname + "'" which fails, but if I put the % at the beginning or end it's OK. Is there any way to achieve the same result (i.e. "any" ...
1
vote
2answers
563 views

how to exclude null values in dataview in c# [solved]

in the column of my datatable are null values. when i create a dataview on this table, i would like filter out the null values. How to go? my code so far: EDIT: had to add filter.... ...
0
votes
2answers
1k views

DataView.Rowfilter multiple filter in Loop

DataView DV = DataTable.AsDataView(); for(int i=0; i<ConditonQueue.Count; i++) { DV.RowFilter = ConditonQueue.ElementAt(i); } Here after the loop DV is filtered only for last element in ...
0
votes
1answer
104 views

Using like statement in Dataview with beginning and end of a string [closed]

I've been digging throughout the web for a suitable answer but can't seem to find it. I need to filter a DataGridView using the selection of a combo box. The combo box contains time ranges like this: ...
0
votes
1answer
167 views

making rows distinct and showing all the columns

In my project there are two datatables dtFail and dtFailed (dtFailed has nothing but column names declarations). dtFail has duplicate "EmployeeName" column values. so i took a dataview dvFail and did ...
1
vote
2answers
741 views

VB DataView.RowFilter and Cast Before Compare

In the following DataView.Rowfilter filter, Request_Date is a smalldatetime: dv.RowFilter = "Request_Date >= '01/01/2012' and Request_Date <= '12/31/2012'" The problem with this is that ...
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
1answer
605 views

How to set RowFilter case-insensitive for DataView

I have a datagrid, its datasource is a dataview. There is a textbox with which users can type in filter text. I want to make the filter to be case insensitive. say, the typed text is "Tg" I tried ...
0
votes
0answers
52 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
1answer
463 views

WPF datagrid hide column with dynamic datasource

I'm binding a datagrid to a DataView. I would like to hide the ID column when the data is displayed. The ID column needs to exist in the data as it is used in another part of my code. The ID column ...
0
votes
2answers
490 views

sort DataTable on one column independent of other columns

I create a two column DataTable (id, name): DataTable table = new DataTable(); DataColumn id = table.Columns.Add("id", typeof(int)); id.AutoIncrement = true; ...
0
votes
1answer
235 views

DataTable DataView - Bit Value in Database

I have read a database table into a DataTable in my C# program, but I am having a few issues assigning the column which contains a bit value to a Boolean. Here is my code so far: // Load ...
0
votes
1answer
97 views

Filtering Filtered DataView

I have a DataSet which will be filtered twice like the following. How can I set the RowFilter property of the DataView twice? Or is there any other better implementation than the one below? DataView ...
1
vote
0answers
644 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
1answer
496 views

get selected one value of dataview by default in ext.net

I am working with Ext.Net 1.5. and I am working with Ext:dataview. I want to get selected one value of dataview by default. suggest me how is it possible?? please look at Image
0
votes
1answer
184 views

Sorting Gridview in Visual Basic

I am trying to sort a gridview in visual basic using the following method, however the second line of code (Dim dv as DataView...) throws a NullReferenceException. When I debug the code and step ...
0
votes
0answers
32 views

Proper way to create DataView from another DataView

You would create a data view from another data view, for example, when you need to apply custom parameters to a view that's already bound to a DataSource, and use this new view for data export or any ...
1
vote
1answer
669 views

How can i handle mouseclicks of items inside a dataview

each item in my dataview has a text and a div which represents a button. The button is only shown when the mouse is over the item. How can i handle a mouseclick on the button-div? What i have so far ...
0
votes
2answers
145 views

Dropdown in dataview

In my GridView, I have the following columns: <Columns> <asp:BoundField DataField="report_type" HeaderText="Report Type" SortExpression="report_type" /> ...
0
votes
2answers
53 views

Adding dropdowns to each row in a column of a dataview

I have a dataview with the following columns: <Columns> <asp:BoundField DataField="report_type" HeaderText="Report Type" ReadOnly="True" SortExpression="report_type"/> ...
0
votes
1answer
111 views

Changing normal values in dataview [closed]

I have a dataview with some columns: <Columns> <asp:BoundField DataField="report_type" HeaderText="Report Type" SortExpression="report_type" /> <asp:BoundField ...
1
vote
1answer
149 views

Confused about SqlDataSource

in my C# code, I use a connection string like this: connection = new SqlConnection(ConfigurationManager.AppSettings["myconnectionstring"]) which works fine. I'm now trying to use the ...
2
votes
1answer
486 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 ...
1
vote
1answer
65 views

SSAS Cannot run SQL statement in data view source

I'm trying to add a "new named query" in Data View Source of SSAS. However, with a simple statement like Select PlayerID From dbo.FactGames , error pops up when I click on the green arrow to run. ...
0
votes
0answers
312 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 ...
1
vote
1answer
210 views

SSAS Data Source View Variable

I'm trying to use "New Named Query" to add a table in Data Source View in SSAS. The script is shown as follows: Declare @AvgInvestment float; SELECT @AvgInvestment=SUM(Investment)/COUNT(distinct ...
0
votes
1answer
795 views

DataView RowFilter is not giving proper results

I am using Data Grid View to show 1000 Rows and 800 Columns of Data (only one character per cell). There is a Check Box column also. I have added a context menu item like "View Selected Cells". On ...

1 2 3 4 5 8