Questions tagged [gridview]

A Gridview is a control for displaying and manipulating data from a variety of data sources.

A Gridview is a control for displaying and manipulating data from different data sources. It shows data from a variety of data sources in a tabular format.

26809 questions
3
votes
1 answer

Android GridView Item Order Change when Admob displays

I searched for these issues and tried most of the given answers but my issue is not solved yet. My Grid view has around 10-12 items and and each item has a ImageView and a TextView. image and the texts are dynamically loading from resources. Issue…
virtualpathum
  • 753
  • 2
  • 11
  • 23
3
votes
0 answers

Dragging/Dropping multiple views simultaneously in a GridView

I've been following Bill Lahti's excellent tutorials on Drag n Drop in a Grid View. I would like to know how to extend this framework to drag and drop multiple views together. In my project I can drag and drop letters to the grid cells. I would like…
3
votes
2 answers

How can I render a gridview without ANY style attributes?

Here's my aspx:
SupremeDud
  • 1,371
  • 10
  • 18
3
votes
1 answer

The GridView 'GridView1' fired event Sorting which wasn't handled

I have created a gridview using toolbox in c#, it is able to show & sort the items in my sqldatasource, but when I change the sqldatasource as it can be seen in the below code, it displays the error "The GridView 'GridView1' fired event Sorting…
HOY
  • 1,067
  • 10
  • 42
  • 85
3
votes
3 answers

Android - GridView - GestureDetector doesn't work

I have a problem with detecting fling gestures in my app. My layout consists of a GridView, couple of TextViews and buttons. I implemented OnGestureListener: public class MyActivity extends Activity implements OnGestureListener{ private…
ThunderSS
  • 443
  • 1
  • 7
  • 17
3
votes
2 answers

like operator in entitydatasource

I'm using an EntityDataSource in an asp .net form and a Gridview is bound to it. A where clause is used in the entityDataSource: Where="it.Name like '%@Name%' @Name is a parameter:
user1223444
3
votes
1 answer

Inheriting from asp:GridView

I have several pages that all have a GridView control. Within that control there are several events that need to be implemented (OnRowDataBound, OnEditing, etc...) Any suggestions as far as inheriting from a page that will force me (virtual…
duckmike
  • 1,006
  • 4
  • 16
  • 39
3
votes
5 answers

GridView control with two asp:Command columns using the same command

I have an ASP.NET GridView control with two asp:CommandField columns that are both using the Select command to perform different tasks. How do I distinguish which column was selected in the OnRowCommand event when both return "Select" when I check…
Michael Kniskern
  • 24,792
  • 68
  • 164
  • 231
3
votes
2 answers

GridView cannot display image

Sorry for troubling. Im trying to display the selected fields in a asp.net gridview. i can display everything except the "product_img" where i should display the relevant picture in the gridview. The problem is in gridview when i attached image url…
jan
  • 67
  • 1
  • 4
  • 7
3
votes
1 answer

.NET GridView - Can I do in-cell data bars (like Excel 2007/2010)?

Does .NET's GridView provide any shortcuts to doing "Data Bars" like in recent versions of MS Excel? Alternatively are there ready-to-use any freeware libraries? This is what the feature looks like in…
Doochz
  • 1,039
  • 2
  • 14
  • 25
3
votes
1 answer

Searching A Gridview With A DataTable Datasource

I have a gridview that gets its data from a webservice. This comes into the application in a dataset. Me.GvStreets.DataSource = TheWebServiceSearch.AddressDataTable Me.GvStreets.DataBind() Once in the grid view how do I search the…
Paul
  • 1,815
  • 5
  • 27
  • 44
3
votes
1 answer

Want to bind object within object in grid view. Is this possible?

My class structure is public class Listings { public string id { get; set; } public string title { get; set; } public ListingsImages[] images; } public class ListingsImages { public string src { get; set; } public string width…
Chintan
  • 2,768
  • 4
  • 27
  • 43
3
votes
1 answer

Showing attributes of another model in CGridView

In Yii I am doing multimodel.My database is something like this +++++ Group ++++++ id name +++++ Member ++++++ id group_id firstname lastname membersince In Group controller I want to show Member's attributes.Everything is working fine…
NewUser
  • 12,713
  • 39
  • 142
  • 236
3
votes
2 answers

Get Row Count in MultiPage Gridview?

when i try to do the following: lblTotal.text = gwGrid.rows.count() i always get 50, which is the size of my page. how can i get the count of ALL records returned, not just the ones displayed on that one page? i also tried the Selected event on my…
Madam Zu Zu
  • 6,437
  • 19
  • 83
  • 129
3
votes
2 answers

GridView column width does not update when changing ItemsSource

I have a GridView where I'm setting the ItemsSource in code-behind. All columns in the grid are defined in XAML, and all column widths are "Auto". When I initially set ItemsSource of the grid, the column widths are set correctly. Now, depending…
Igal
  • 1,084
  • 2
  • 13
  • 33