0
votes
3answers
29 views
[ASP.NET] GridView.FindControl() - works, but not properly
Hi, I have the the GridView's column looking like that:
<Columns>
<asp:TemplateField HeaderText="Opcje">
<ItemTemplate>
…
0
votes
1answer
23 views
ASP.NET GridView: How to Control the Format of a Column in Edit Mode?
Given the following GridView:
<asp:GridView runat="server" ID="GridMenuItemAttributes" DataKeyNames="MenuItemAttributeID" AutoGenerateColumns="false"
OnRowCommand="Gri …
0
votes
5answers
43 views
Optionally display a text in place of GridView when the GridView has no rows
I have a basic GridView that displays a list of tasks to do (just an example)
<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1" AllowSorting="True" > …
0
votes
1answer
29 views
ASP.NET GridView row count using Javascript
Having the GridView client control ID, I would like to get some ideas on how to count the GridView rows or at least be able to tell if there is at least one row on the Gridview the …
0
votes
1answer
25 views
ASP.Net GridView memory leak with large result set?
I have a GridView that is bound to an ObjectDataSource that is calling a Business Service object which returns a List<> of POCO's.
Recently my client removed the Page Limit n …
0
votes
4answers
39 views
GridView not Rebinding Properly After Postback
I have a GridView that has a DataSourceID pointing to an ObjectDataSource. The ObjectDataSource points to a method that returns a LINQ IQueryable by using the TypeName, SelectMetho …
0
votes
2answers
26 views
ASP.NET C# GridView Tab Index issue
It seems that when adding a row to an ASP.NET GridView, the Tab Index does not behave as expected (or desired). Instead of tabbing across each column in a row and then moving to th …
1
vote
1answer
21 views
asp.net gridview editindex
Please take a look at this:
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
int index = Convert.ToInt32(e.CommandArgument);
if (e.Command …
1
vote
2answers
51 views
empty gridview although the sqldatasource has values
I have really weird situation.
I've created new aspx page, and without using ANY custom logic objects (everything created with visual studios wizards) tried to create grid view fr …
0
votes
0answers
19 views
Dynamic textbox inside gridview
Hi all,
We are creating dynamic textbox inside the gridview. Without entering data in the textbox the tab key is working fine. But pressing tab key after entering values in the te …
1
vote
1answer
22 views
ASP.NET: Gridview Showing a button on a row, when a row cell vlaue = false in the Bound row from the database
I have a GridView binded to a datasource, i was wondering of how i can check a row cell value (bool) from the database row being bound , and then show a button on the rows where th …
0
votes
2answers
29 views
GridView doesn’t cause NHibernate proxy to load relationships
I'm currently learning NHibernate and I would like to data-bind to Web controls (i.e. GridView).
In my current example I am using Fluent NHibernate to map two tables to their busi …
0
votes
2answers
17 views
Clickable GridViewRow overriding child HyperLink
So I made each row of a GridView clickable using this method:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRo …
0
votes
1answer
49 views
Help with ASP.NET ObjectDataSource
I have a User object with a Load method that takes in a UserId parameter and loads that users data to the objects member variables.
Now what I'd like to do is load this data to a …
0
votes
2answers
45 views
gridview paging problem
i m using an gridview in which pagingsize is 5 when the next page is clicked it returns empty data. but actually it has 12 datas.im using sql as back end and asp.net c# and the dat …
