Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rsshetty

  1. rsshetty

    TemplateField in Child Gridview

    Actually, never mind. I got it to work. ((GridView)sender).Columns[0].Visible = true; That did the trick. rsshetty. It's always in the details.
  2. rsshetty

    TemplateField in Child Gridview

    When I try e.Row.FinControl("gvStudentList"), I get a message saying that gvStudentList is not available int he current context. The error message is valid as I am looking for a GridViw in the row of the GridView. What I actually need is the ability to access the templatefield itself. Ideas...
  3. rsshetty

    TemplateField in Child Gridview

    I have a gridview inside a datalist. In this gridview I have a templatefield. <asp:DataList ID="dlParent" runat="server" OnItemDataBound="dlParent_ItemDataBound"> <ItemTemplate> <asp:GridView ID="gvStudentList" runat="server" AutoGenerateColumns="false"...
  4. rsshetty

    Nested Gridview - RowDataBound Question

    Thats what I thought. I keep getting an error - The name 'gvStudentList' does not exist in the current context protected void gvStudentList_RowDataBound(object sender, GridViewRowEventArgs e) { //data row if (e.Row.RowType == DataControlRowType.DataRow) {...
  5. rsshetty

    Nested Gridview - RowDataBound Question

    I have the following structure on my aspx page: <asp:Repeater id="myRepeater" runat="server" OnItemDataBound="myRepeater_ItemDataBound"> <ItemTemplate> <asp:GridView ID="gvStudentList" runat="server" AutoGenerateColumns="false" >...
  6. rsshetty

    Gridview Layout

    Actually I did think of the nested gridview. I am unsure how to implement it. In the itemdatabound event of the outer gridview, I can bind the dataset to the inner gridview. However, how do I separate the inner gridviews based on Col1? I am new to .NET, so please pardon my ignorance...
  7. rsshetty

    Gridview Layout

    I should have indicated that the number of groups is dynamic. What then? rsshetty. It's always in the details.
  8. rsshetty

    Gridview Layout

    I have a dataset of the following nature: Col1 Col2 Col3 -------------- ClassA 10 12 ClassA 13 11 ClassA 18 22 ClassA 20 42 ClassB 12 34 ClassB 32 27 ClassB 13 51 ClassB 12 32 ClassC 16 65 ClassC 12 33 I want the gridview to have 3 separate HTML tables on the web page - one for rows...
  9. rsshetty

    Open Window

    I'm guessing there is not way of accomplishing this without the page refresh. rsshetty. It's always in the details.
  10. rsshetty

    Open Window

    Would it be possible to indicate where I'd have to use the RegisterStartUpScript? Page_Load? As of now I am capturing the list of checkboxes checked in the imagebutton_click event handler. The flow of control is as follows: Select Checkboxes -> Click imagebutton -> page_load ->...
  11. rsshetty

    Open Window

    Hello, I have a rather tricky problem and I have run out of ideas. I have a page with a datalist that has checkboxes in it. At the bottom of the page, I have an imagebutton (not part of the datalist). When the imagebutton is clicked, I need to find out the checkboxes selected by the user, add...
  12. rsshetty

    Open a new Window

    Thank you. I will post in the ASP.NET forum. rsshetty. It's always in the details.
  13. rsshetty

    Open a new Window

    Hello, I have a rather tricky problem and I have run out of ideas. I have a page with a datalist that has checkboxes in it. At the bottom of the page, I have an imagebutton (not part of the datalist). When the imagebutton is clicked, I need to find out the checkboxes selected by the user, add...
  14. rsshetty

    DataGrid Event Handler

    Ah... that's it... I am missing that indeed. Thanks!!! rsshetty. It's always in the details.
  15. rsshetty

    DataGrid Event Handler

    Hello, I am a .NET newbie and I have been trying to work out an exercise. using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using...

Part and Inventory Search

Back
Top