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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. wimani

    gridview enableviewstate

    Think it's working now.. Changed: sbCallDetail.Append(gvCallDetails.Rows[i].Cells[0].Text + ','); To: sbCallDetail.Append(Convert.ToString(gvCallDetails.DataKeys[i][0]) + ','); And now I'm able to retrieve the values of CallDetailID
  2. wimani

    gridview enableviewstate

    In the gridview (enableviewstate = false), the first column is a boundfield having a DataField = "CallDetailID" and the second column is a checkbox (enableviewstate = false), and there are other columns. The code-behind for a button on the page goes through all the checkboxes that are selected...
  3. wimani

    gridview, scrollbar, changing width dynamically

    Thanks Mark. That did the trick.
  4. wimani

    gridview, scrollbar, changing width dynamically

    I have added a scrollbar (<div style="OVERFLOW: auto; HEIGHT: 250px">) to my gridview so that if the PageSize exceeds 10 rows the user can use the scrollbar. The width of the table that embeds the gridview is 925px and the width of the gridview is 912px where 13px is being left for the...

Part and Inventory Search

Back
Top