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

learn more… | top users | synonyms

0
votes
0answers
23 views

to change color of a gridview cell on select of a dialog box item

I am creating an android app for attendamce where in i am displaying a calendar where the user has to select a date..when the date is selected a popup will appear with two buttons PRESENT and ABSENT. ...
0
votes
0answers
18 views

bind grid through different tables

I have a a query. Actually I want to bind a gridview through 2 different tables. Tables are having no relation, both tables having different named columns. How can I bind the Gridview. I'd have used ...
0
votes
0answers
43 views

to display a dialog box on click of a date in calendar change the color of the grid cell

I am creating an app where i need to display a calendar in full screen and ask the user to select a date..after the selection of date a dialog box will appear with two buttons in it BUTTON 1 and ...
1
vote
2answers
75 views

Get access of gridview from its adapter- Android

I have a custom gridview with my own adapter.I'm handling gridview button click at adapter's implementation.After pressing the button I want to show a quick actionbar like "confirm" then if the user ...
0
votes
2answers
50 views

Add Item for Gridview in StaggeredGridview

I've downloaded StaggeredGridView library and demo from here: https://github.com/maurycyw/StaggeredGridViewDemo https://github.com/maurycyw/StaggeredGridView I need to add more item for gridview ...
3
votes
1answer
122 views

Gridview buttons

I am trying to fix my button click events and right now I have every button reacting the same. I want each button to ultimately do something different. My code currently is: @Override public View ...
0
votes
3answers
44 views

Using an adapter in a fragment

I am trying to use a GridView in a Fragment and then using an Adapter to populate it with buttons. My code currently is: Inside the MainActivity: public static class MiscFragment extends Fragment { ...
0
votes
1answer
26 views

What is the best way to display custom view with scrollable behaviour on android

I have to display multiple custom view with scrollable behaviour (as a grid list). Like scrolling horizontally and vertically on a chest grid where each item is a custom view. What is the best way to ...
0
votes
3answers
64 views

Putting GridView data in a DataTable

I'm trying to save a GridView to a DataTable. I have code which should in theory do it but I keep getting this error: Column 0 doesn't exist Here is my code: protected void ...
1
vote
2answers
38 views

Selecting the wrong item because of old data in GridView

I'm working in Visual Studio 2010 with C#/ASP.NET and a SQL server database. I'm trying to fix a website that will allow managers to assign employees to various tasks. The problem now is that if two ...
0
votes
1answer
35 views

Updating row directly in ASP.NET using databind() ! Please help me

This is a difficult problem so I found how to solve when cell on table don't receive input value from user . Please show me how retrieve value from updated cell . Please help me . I am very boring ...
0
votes
2answers
27 views

Bind a GridView to a single object

I'm trying to bind a single row to a Telerik RadGridView, but I think this question might apply to any GridView control. Since this list only ever contains one item, it seems inefficient to bind to a ...
0
votes
0answers
24 views

Copy gridview rows in another gridview on a button_click

I have a textBox and a search button that fills the first Gridview. After that a Second Button Copies the first grid rows in the second grid . After that i should be able to search again in the first ...
0
votes
1answer
90 views

Anroid - Custom GridView with separated XML

My goal is to display a chessboard. I have an Activity which displays a menu and load an instance of "ChessView" which extends GridView. I've created a custom GridView because I want to have a class ...
1
vote
0answers
42 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
2answers
57 views

Disabling GridView scrolling

I have a GridView of more than 10 rows. That is a reference chart so the user is unable to scroll manually. The GridView should be scroll down in a particular time period. What I have to do for that? ...
0
votes
0answers
18 views

Sorting the WPF Listview

Iam having a ListView named "ListLoginDetails" in WPF. In which I displays two columns namely "User_Name", "Password" through DataSet. Now I haven to Sort the ListView on Both Ascending & ...
0
votes
1answer
34 views

Yii - sorting only actually displayed GridView without connecting to mysql

I would like to have a gridview where I could sort actaully displayed values. I don't wan't to get different data from database but simply sort the displayed one. Just like jquery tablesorter plugin. ...
0
votes
0answers
42 views

datarow not updating, no errors returned and ID is set

on rowdeleting event im setting a field Deleted to 1, my code is as below, the ID is correctly set to 757 but the row does not get updated at all, there are no errors returned though, nothing it all ...
0
votes
2answers
32 views

Gridview Search

I have created a stored procedure which searches the gridview based on input and it is as follows: Create procedure spSearch ( @Emp_id nvarchar(50) = null, @Emp_name nvarchar(50) = null, @Emp_exp ...
0
votes
1answer
49 views

asp.net gridview without database

Hi guys I have a question. Is there some way to populate a gridview in asp.net without using a database? I'm using a gridview to show information but I've seen that everytime I try to insert more rows ...
3
votes
2answers
142 views

How to sum of value in gridview select data from database in asp.net [closed]

I work in asp.net and i have one grid view in which i find out pf and ESI value from Basic Salary and I want proper solution of sum of total PF and total ESI in gridview footer in Repues So please ...
0
votes
0answers
60 views

Android Gridview-Shrinking another items when selecting one item

I am working on an Android app which have a gridview. The gridview contains a ImageView and a title.That is the gridview is designed for a reference chart so that when a user clicks on the ImageView ...
1
vote
3answers
77 views

C# Check gridview row select or not

I want to check whether a row in a gridview is selected or not. how can I write if condition?? if (gridview-row[1].select) { //do something } else { //do something }
0
votes
1answer
10 views

when enter key is pressed the data must go to DB where txtbox is inside gridview

I have a gridview in which there is 5 textboxes . When, I press enter the data present in the textbox must go to database. Where I'm using row_command for inserting data to db and the TextBox is in ...
0
votes
1answer
36 views

CustomView in GridView

I want to display my own custom View in a GridView. I tried with this Code: GridView gv= (GridView) rootView.findViewById(R.id.TerminGrid); Cursor cr = db.rawQuery(DatenbankManager.GET_TERMINE, ...
0
votes
0answers
22 views

Export to xls file removing leading zeros

Each of the FixedLifeMaster and VariableLifeMaster fields are stored in my database as nvarchars and in the Entity Framework as a strings. However, when I export to an .xls file, Excel only sees ...
-1
votes
0answers
25 views

autoscroll to a specific gridviw row in asp.net

How to autoscroll to a specific in a gridviw row in asp.net.. ?? I have a gridview with exam questions on it. and a fixed panel with link to every question. this panal has link to evry question. when ...
2
votes
2answers
75 views

how to binding gridview with data from two different tables C#

How can I binding gridview with data from two different tables? I have three tables: Players, PlayerTeam and Teams. My gridview has next data: PlayerID, Name, Surname, ... from table Players, and ...
0
votes
0answers
10 views

jeditable returns a whole page markup inseat of the value

I am using jeditable on a dynamically generated gridview and having problems with it, I am not that familiar with this plugin yet. jediable: $(document).ready(function () { $('.edit').each( ...
0
votes
0answers
37 views

Display TextBox within a Gridview in C#

I am working on a Windows App using C#, A small Point of Sale system. I want to know if it is possible to include or display a TextBox control inside the the gridview. I want when users add items to ...
0
votes
2answers
65 views

Get value of CheckBox in GridView, Bit Datatype, asp.net

I am beginner and question or syntax may be silly. I have drawn a grid view having based on a SqlDataSource query. Converted a status field into Bit. a checkbox is automatically created. now how ...
3
votes
1answer
75 views

Can you please tell me why I am getting `The GridView 'GridView1' fired event RowUpdating which wasn't handled.` error message

I have been able to work through the initial problem of not being able to insert records consistently but a new error message crops up. Now, I am getting The GridView 'GridView1' fired event ...
0
votes
0answers
60 views

YiiBooster TbButtonGroup inside TbExtendedGridView is partially invisible

I use Yii with YiiBooster extension. I'm trying to add a TbButtonGroup (so I have nice dropdown style menu with some actions) to a TbExtendedGridView widget. It is placed inside the very last column ...
-1
votes
1answer
32 views

WPF application in MVVM

I've developed a WPF application by following the MVVM pattern. What I'm doing is that I have made a grid in my views. In the 1st grid I'm listing the values in the rows & columns like the ...
0
votes
3answers
47 views

Want to change color of a grid on second click

I have created a custom calendar, in which i'm setting the color for a single grid when it is clicked. My requirement is to change the color to some other color on second click. I tried achieving this ...
0
votes
1answer
36 views

Gridview Not load when dropdownlist event fired

here is my ddl select index change event and inside i call LoadData() function. My Problem is whenever i select new value in dropdownlist my gridview can't bind according to that value. FYI: I ...
0
votes
1answer
44 views

gridview dissapears on rowediting, clicking between two functions brings it back with the item expanded

Not sure if this is an odd one or not, but i have a gridview that dissapears on rowediting, my steps are > click butUsers > click edit > grid dissapears > click butDev > grid is back > click ...
0
votes
2answers
128 views

Change values of GridView based on the selected item from a DropDownList

The GridView don't change when i change the value of the dropdown here is my code : DropDownList: <table> <tr> <td style="height: 49px"><asp:Label ID="Label1" ...
-1
votes
0answers
35 views

Error “No value given for one or more required parameters” occurring when adding record to GridView

This is the error: Server Error in '/' Application. No value given for one or more required parameters. Description: An unhandled exception occurred during the execution of the current web ...
1
vote
1answer
49 views

Gridview OnRowEditing event handler not firing

I have a gridview that uses list as it's datasource, this list is populated using entity framework and passed to my method where this data is binded to my grid view control. I seem to be having a ...
0
votes
1answer
48 views

Conditional Formatting using e.Row.RowType for a Gridview in ASP.Net 2010

Afternoon All, I have been searching the net for some help in reference to applying some conditional formatting based on a value in my grid view. I am using Studio 2010 in the form of VB. I ...
1
vote
2answers
85 views

Data Grid in PHP

I want to use data grid in php to fetch data from a store procedure. Please give me some implemented examples. how to use it in my projects. I am using mysql store procedures. Thanks
0
votes
2answers
64 views

moving columns in gridview between template fields and bound fields

I have a gridview (GridviewProduct) in that i Have a Template field column Link button as Remove From Cart and and another Template Field column next to it as Quantity and other three Fields are ...
0
votes
2answers
55 views

Devexpress GridView crazy MouseDown event

When I implement the MouseDown event of the GridView, after I click on anything inside the GridView my program goes nuts and starts to treat everything on the screen as GridView, calling the MouseDown ...
1
vote
0answers
122 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 ...
0
votes
1answer
49 views

Delete multiple image from GridView on one time button press

I am working on gridview ,here is my requirement to delete multiple selected image items from gridview on one time delete button press. means i should be able to deleted selected images on press of ...
0
votes
2answers
23 views

Gridview filtering by textboxes

This is table with column names and textboxes for entering data to columns <table border="1"> <tr> <th>EmpId</th> <th>EmpName</th> ...
0
votes
2answers
22 views

Sorting in ASP.NET Gridview

Its Arun. This time I have a sorting issue in ASP.Net. For the first click, descending is working fine but on the second click ascending is not taken again. Its still in the descending order. I m ...
-2
votes
2answers
75 views

Each row has its own heading in android gridview [closed]

I am developing an app with android gridview. My gridview consists of 10 rows and 7 columns. Actually this is a color chart so each element in the gridview should be of different color. I have created ...

1 2 3 4 5 199