Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
3k views

GridView: Get datakey of the row on button click

How can I get a value of the DataKeyName of a GridView Row when I have a button inside a row that have an OnClick event. In my OnClick event of my button I want to get a the DataKeyName of the row ...
0
votes
0answers
54 views

gridview row border

I have a gridview which is data bounded. i want that every time data is bound the the border color and width of some rows will change. i wrote this function: protected void GridView1_DataBound(object ...
0
votes
2answers
220 views

Add gridviewRow to gridview on email control

I am trying to control whether or not an email address is already in a list, and if so i'd like to add a row from a gridview to the new gridview that will be send to that email account. I have some ...
0
votes
2answers
406 views

How can I retrieve all GridViewRows from a GridView control with paging enabled?

I am working on Add To Cart Functionality, and I have added a GridView control with paging enabled. In the GridView, I show the quantity in a text box and handle the OnTextChanged event for that ...
0
votes
1answer
797 views

Uncheck Checkboxes in GridView with Paging

I have an ASP .NET GridView with Paging. One column in it has a CheckBox. In a certain scenario, I want to uncheck the checkboxes that are checked. foreach (GridViewRow dr in gvMyGridView.Rows) { ...
0
votes
0answers
262 views

How to Preview a GridViewRow

I've a GridView and DetailView connected to table 'Items' via LinqDataSource. When a GridViewRow fires onmouseover/onmouseout, I'm able to show/hide the DetailView in a ModalPopupExtender (using ...
0
votes
1answer
384 views

Can I use a GridViewRowPresenter to merge cells?

I have a ListView and GridView within it. Upon clicking a button on any row I set an error state based on which I need to change that particular row's cell structure. For eg. I need it to go from a 5 ...
0
votes
1answer
357 views

With the ASP.NET GridView control, how can I disable controls or individual cells in a GridViewRow after PageIndexChanged?

I have a data bound GridView control, in which I am able to disable individual cells based on the User role. This only works on the first page. private void LimitAccessToGridFields() { if ...
0
votes
1answer
751 views

Setting value of checkbox programmatically in VB.NET

I can check the value of a checkbox in a GridViewRow: isChecked = CType(row.FindControl("chkSelect"), CheckBox).Checked But what's baking my noodle is trying to figure out how to programmatically ...
0
votes
2answers
550 views

placing checkbox in gridview in c#

i need to add checkbox column to my gridview in c#. i have my code: foreach (GridViewRow objRow in GrdDynamicControls.Rows) { if ...
0
votes
2answers
885 views

Cannot cause $(this).find(“a”).click(); to fire using JQuery

I have a small question which should be very easy for the jquery experts out there. I am trying to follow http://aspdotnetcodebook.blogspot.com/2010/01/page-languagec-autoeventwireuptrue.html to be ...
0
votes
1answer
1k views

Update gridview from code behind in asp.net

I have gridview in my asp.net 3.5 application [C#]. Which looks like this: <asp:GridView CssClass="grid_table" ID="GridView1" AllowPaging="true" PageSize="10" ...
0
votes
1answer
1k views

How to add custom tablecell collection to gridview row

I've created a custom GridView server control. The next thing I'd like to do is to use my own custom TableCell Collection with that GridView so I can set some custom properties and etc. Countless ...