Questions tagged as 'gridview'

1
answer

Send data Drag and Drop from one Grid to another

In my project I had the following question: I have 2 dataGridView , where dataGridView1 would be a list of products (one query SQL of products). I would like to know if I can drag this dataGridView1 and drop the...
asked by 11.10.2016 / 05:57
1
answer

Save the text of a text box in a string

I am doing a program in QT in order to create a form and be able to save the information in a document. I have created my View for the form (where the user will enter the name), but now I do not know how to save what is written there in a String...
asked by 04.10.2018 / 14:56
1
answer

Implement Filterable to a Custom BaseAdapter - Android

I have the following custom adapter for a GridView : public class AdapterGrid extends BaseAdapter implements Filterable{ private Context context; private int layout; private List<String> items; public AdapterGrid...
asked by 27.03.2018 / 20:44
2
answers

Convert from grid to array

I have a dataGridView1 with 3 columns name, amount and price I need to take them to the following format 000000010000001000Papas where:    (0000000100) (00001000) (Popes) The first is the price, the second the quantity and...
asked by 11.10.2016 / 06:39
1
answer

Sort columns of a GridView in ASP.NET C #

I want to sort the columns of a GridView in ASP.NET, I am consuming an external service that throws me and the results and that result I have put it in a grid, that is to say in a GridView but what I want is to order by columns. This...
asked by 14.06.2017 / 17:24
2
answers

fill dropdownlist in gridview and the maximum value must be the value that one of the cells has

I have a gridview with products from a store listing some characteristics, among them the quantity of products in stock so the user should not be able to select a value greater than the number in stock (stocks) I have this gridview and I need...
asked by 05.05.2017 / 18:15
2
answers

Filling gridview with stored procedure

I am trying to fill a grid with data of sp I'm working with data, business and presentation layer This is where I call the business and then bring the data from the data layer (the sp ) BuscarListaPersonal(); the HTML...
asked by 14.12.2016 / 21:49
3
answers

Error when wanting to pass a gridview to an excel file

I have my gridview defined as well <asp:GridView ID="GridView1" runat="server" AllowPaging="True" DataSourceID="SqlDataSource1" Width="976px"> </asp:GridView> and I'm trying to pass the data to an excel in the following...
asked by 23.11.2016 / 06:29
4
answers

Access from C # to the link of a HyperLinkField of a GridView

I have the following GridView in ASP.NET: <asp:GridView ID="GridView1" runat="server" DataKeyNames="ID" DataSourceID="AccessDataSource1"> <Columns> <asp:HyperLinkField HeaderText="ID" DataTextField="ID" DataN...
asked by 29.09.2016 / 19:42
0
answers

Modify selected element of a GridView filled with TextView

I find a class exercise in which I have a GridView to which I have put an Adapter , this is filled with TextView , which have a number each. The functionality of my program is to know if any number that I select from my GridView ha...
asked by 25.12.2018 / 16:58