A Gridview is a control for displaying and manipulating data from a variety of data sources.
3
votes
0answers
316 views
Clicking the gridview column header whole gridview tries to cover the window
I have a Gridview which i am sorting when clicking on the column header, but when i add more items to the gridview and it becomes scrollable, clicking the column header for the first time does not ...
2
votes
0answers
44 views
Disable GridView from scrolling under some conditions
I have a GridView where I load a preview image over the GridView. While my preview is shown I want to disable scrolling. My code looks like that:
grid.setOnTouchListener(new OnTouchListener() {
...
2
votes
0answers
117 views
Cannot get the selected Gridrow value on a buttonClick MVC, C#
Im trying to get the values in a specific gridview row when clickin on it or when clicking on a button.
The problem is that nothing happen when i click on the row, Not even when i click on the ...
2
votes
0answers
89 views
How to make automatic onClick and update mark image in Gridview
The first question that I have is that I have downloaded from the Internet MarkableImageView class to add a marker to an image I have already selected. The class is as follows:
public class ...
2
votes
0answers
153 views
How to format individual gridview cells using css?
Is it possible to format individual cells using CSS in a gridview
I'm using visual studio 2010 with vb
I want to do the following. Based on this table structure...
H1 H2 H3 H4
R1 i1 i2 i3
R2 j1 j2 ...
2
votes
0answers
130 views
Get dropdown value which is dynamically created
i want to store the value of dropdown which is dynamically created in dynamically template field.
so how can I access the value of selected dropdown value on the submit button.
I use below
public ...
2
votes
0answers
256 views
Caption property not working for gridview in asp.net
I was trying to export pdf file from database in asp.net. Here, I followed this link: http://www.aspsnippets.com/Articles/Export-DataSet-or-DataTable-to-Word-Excel-PDF-and-CSV-Formats.aspx
For Export ...
2
votes
0answers
121 views
How to add EditForm for editing row
How can I add edit form row in Asp.NET GridView control like this RadGrid!
When I click on the Edit button, I want to add an edit form row under the edit button row.
Here my Grid
...
2
votes
0answers
193 views
No RowCommand-event for GridView with extra rows added dynamically
So i have a GridView-control. That is set to a datasource, with paging of 20.
Though, in the RowDataBound-handler I add an extra row for each bound row, making it a total of 40 rows. These are ...
2
votes
0answers
435 views
Validate telerik GridView every control in every row (ValidationRule). WPF
I have a RadGridView with 9 columns. Every column contains textbox, except 2nd and 9th: there's a combobox in 2nd and image for drag'n'rop in the 9th. I need to validate my GridView in the way that if ...
2
votes
0answers
265 views
Android GridView pinch zoom
I'm trying to implement the pinch gesture to zoom in/ zoom out of a GridView in Android.
I've been searching the web for a while now and I've found multiple answers but it comes down to creating a ...
2
votes
0answers
237 views
Android scrollview of mixed size image views that fit together like tetris
What I am trying to create is a scrollview of images of all different sizes that fit together perfectly without any obvious rows or columns. each image represents a food and each food has a certain ...
2
votes
0answers
216 views
aspx GridView forces DIV to 100%
I have three Gridviews that I want to present side by side. I have them in separate DIV blocks however the first DIV always displays at 100% of browser width. What ever I do with CSS to make the ...
2
votes
0answers
219 views
Android GridView with two different items?
I’ve got a GridView which i should fill with two different items such as left_item and right_item. Anyway, i wrote a custom adapter extended from BaseAdapter.
And i saw converted views were not in ...
2
votes
0answers
113 views
Gridview Vertical Header Text for Chrome
I am using the -webkit-transform: rotate(270deg) to rotate the header text in my gridview so it is vertical. The problem is the width of the header above each cell is staying the same instead of ...
2
votes
0answers
106 views
how can i get the total number of clicked position in toggle button “On”position if i click the update button in android using arraylist?
public class MainActivity extends Activity {
String[] countries = new String[] {
"India",
"Pakistan",
"Sri Lanka",
"China",
...
2
votes
0answers
333 views
GridView 3d animation
I need to create a grid view exactly like this:
This feature is being used by many launchers (ADW launcher Ex, Go Ex)
I have been able to create a normal GridView using BaseAdapter. However I have ...
2
votes
0answers
146 views
How can i display galleryview, imageview and gridview in same activity
I have a gallery in my android application when I clicked on gallery item I want to display image and grid view. I done when i have only three images in gallery and in click it displayed correctly. ...
2
votes
0answers
339 views
Datatable-Access Database Updating Concurrency violation
I'm working on a project which uses an Access database. First of all I copy the information that i need from db and put it in a DataTable (with combining 2 tables). Over this datatable I search items; ...
2
votes
0answers
600 views
Devexpress 12.1 MVC GridView Inside Tab Strip Issues
I'm an intern that has never done any web development just so you know where I'm coming from. I'm currently trying to learn asp.NET MVC 3 using devexpress 12.1 tools. I started with a template that ...
2
votes
0answers
330 views
iOS Spring board like Grid View with dragging & moving items + delete option in iOS 5
I want to implement iOS spring board like functionality in my app. I want to display images in grid fashion. Images can be draggable so that I can change the position of image. Long press will ...
2
votes
0answers
240 views
How to make a grid view with different item sizes adjusted to different sizes?
I am trying to do make a grid view with boxes (item) of different sizes (three types) i have implemented this
https://github.com/tanin47/UIGridView
but cant really make three different types of ...
2
votes
0answers
518 views
GridView items: set relative sizes
I'm trying to display some items in a GridView. I want each item to fill a relative part of the screen (image B) and all I have is GridView take just the space it needs at the top of the screen (image ...
2
votes
0answers
2k views
Single RadioButton Select in GridView
In a gridview how can I do single radiobutton select without using JavaScript
<asp:TemplateField ShowHeader="False">
<ItemTemplate>
<asp:RadioButton ID="RadioButton1" ...
2
votes
0answers
757 views
Gridview Row Events not firing in UserControl
I've got a pretty strange problem with my usercontrols that I'm working with. I'm coding some user controls to be used in a DotNetNuke module.
Basically I have a UserControl on my page that holds ...
2
votes
0answers
276 views
Android, Gridview and Touch and drag events
I am trying to set up a GridView of images that responds to onTouch.
For example, if I swipe my finger across the screen horizontally, vertically or diagonally then I want the buttons which were ...
2
votes
0answers
1k views
Getting Column Index when selecting cell in GridView
Below is the code that I use to select each individual cell. However, when I do select that cell, I need the data in that cell, the rowIndex and columnIndex. Unfortunately after all the research and ...
2
votes
0answers
37 views
How do you support the optical track pad on Android if you have a custom view with subviews?
I have a custom ListAdapter that holds many sub-views per row. I essentially replicated GridView because GridView performance sucked, and according to another post on StackOverflow, the Google devs ...
2
votes
0answers
510 views
how to display selected image from a gridview to its full size on screen
I am developing an application that has a grid view of images in it. I want to display the image on full screen when user selects an image from the grid view. Can any one please help..thank you
2
votes
0answers
293 views
Selected row's column content copy using clipboard in gridview
i want to copy the content of a particular column of selected row using clipboard.
i want to execute it with select command in gridview.
Any Help ??
2
votes
0answers
1k views
GridView get row and Column
Is that any way to get the row and column number of the clicked cell in GridView (Android)?
public void onItemClick(AdapterView parent,
View v, int position, long id)
{
...
2
votes
0answers
783 views
Change Gridview column width dynamically
I am trying to change the size of the items within my GridView. Currently the items are arranged by style (GridView_words_small) in an xml:
numColumns: auto_fit
stetchMode: 'spacingWidth'
...
2
votes
0answers
538 views
How to Bind Images in Gridview all cells dynamically & get values from cell
I am developing movie theater seat booking website like http://in.bookmyshow.com/, for that i have place image as Seats in asp:gridview(all cells), for selection of seat click on Image(cell) at that ...
2
votes
0answers
312 views
GridView problem with resizing
I have a gridview with a button adapter based on this tutorial.
The problem: When sliding up or down, right or left on the gridview, button resize for some reason. e.g from 85*85 px it get's to 100+ ...
2
votes
0answers
2k views
Android GridView 3 x 6 Image Cropping
I would like to create a grid of square images, but I'm unable to get the images to appear as I need. I started with the GridView tutorial:
...
2
votes
0answers
555 views
Android: Custom 3D GridView problem, Honeycomb
I would like to implement a GridView that displays it's items in 2D space (rows, columns), but is tilted and scrolls vertically in the Z direction (into, and out of the screen). Picture the regular ...
2
votes
0answers
1k views
How to implement custom device photos gallery for android?
I'm working on android application that will have basic image gallery functionality included. I've managed to build activity that fetches list of photos from my application backend API and render them ...
2
votes
0answers
493 views
WPF GridView header does not scroll horizontally
I have a GridView with a ScrollViewer that used to scroll horizontally along with the content of the GridView. I changed it using Chris Cavanagh's rounded corners solution, which includes putting a ...
1
vote
0answers
23 views
Controls added to placeholder in DetailsView nested in Gridview are not showing up
I'm trying to add a TextBox and a RequiredFieldValidator to the InsertItemTemplate of a DetailsView nested in a GridView. I added a PlaceHolder in the InsertItemTemplate, and I'm doing the following ...
1
vote
0answers
13 views
gridview footer add button erroring
I've got a modalpopup with a gridview in, this will always be empty when the popup first opens, so have created controls in the emptytemplate so a record can be added. This works fine, the problem ...
1
vote
0answers
26 views
Why my gridview is so unsmooth?
I use a AsyncTask in MainActivity read all data from DB, and use a static SparseArray to save this data, in the getView i immediate use the SparseArray. But it still not smooth.
The AsyncTask
...
1
vote
0answers
22 views
Replace element in GridView on element's event
I'm using a highly dynamic GridView inside my Windows Store App. Element's inside the GridView can have different template and size, depending on what I'm inserting inside DataSource. For instance:
...
1
vote
0answers
17 views
ASP Format to percentage specific row of gridview
I have a fixed size table databound to a gridview from a stored procedure:
Note: the table is 17 columns long.
Currently I'm using a For..Next statement to alter the background colour of the ...
1
vote
0answers
38 views
Disabling a button in a gridview that's populated from a select in another gridview
Here's the scenario. I have 2 gridviews.
Gridview 1 is like this for example
__________________________________
| select | cell 2 | cell 3 |
Then when you click on the select in cell 1 it ...
1
vote
0answers
41 views
Stubborn WinForm loses focus and doesn't regain it
I have a form with a splitview container. The left side is a devex GridView and the right side is just a regular view. I drag-drop text from the GridView to the view at the right hand side. To ...
1
vote
0answers
112 views
clicking on link button in gridview does not show the details in detailsview
I have a grid view and a details view. In that grid view I have a link button column in the first column. When I click on the link button column it has to show the corresponding row values in the ...
1
vote
0answers
164 views
GridView, RowEditing, How to change text in textbox when editing row?
I`m working with GridView. I have a problem with the change of value in textbox (t5 and t6) during the editing row.
I want after pressing the edit button in TextBox(t5 and t6) were only the first 10 ...
1
vote
0answers
41 views
Remove FadingEdge on GridView. Android Honeycomb
I need to remove fading edge from my gridview. I'm made a little research, currently below is what my gridview looks like, the problem is that nothing works. Is there any way to disable/remove/hide ...
1
vote
0answers
209 views
Horizontal scroll in gridview android?
i am working on custom gallery here i fetch the images from sdcard and display it in grid view from mentioned date below,
(ex.)
1/1/2001
image 1, image 2, image 3,...
2/1/2001
image 1, image 2, ...
1
vote
0answers
26 views
border of the gridview column disappear when it is pinned
I have a radGridView from Telerik 2010 Q3 when I set one column as pinned to the left its right boarder (including the border between columns headers) disappear, but when I try to pin it to the right ...

