473,503 Members | 10,178 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

datatable and autogeneratecolumns question

M

My problem is that AutogenerateColumns="false" does not work with the datatable I built from a hashtable.
(Please don't ask why I'm pulling data from a database, putting it in a hashtable, then putting it into a datatable.)

Everything works great, including hiding the column on the fly. Problem is, the rest of the datatable data/columns still prints out in the
datagrid via autogeneration. So I have duplicate columns....the ones I designated as bound columns, plus the ones that get autogenerated.

Thanks in advance.
Here is the web page code:

<asp:datagrid id="DataGrid5" Runat="server" AutoGenerateColumns="False">
<Columns>
<asp:BoundColumn DataField="Name" HeaderText="Name"></asp:BoundColumn>
<asp:BoundColumn DataField="RepCode" HeaderText="RepCode"></asp:BoundColumn>
</Columns>
</asp:datagrid>

Here is the code behind code:

DataTable myT = new DataTable();
myT= sc.getSecurityInfo(1001, 1010, 1, myDiv, true, false);
for(i=0; i < myT.Columns.Count; i++)
{
BoundColumn col = new BoundColumn();
col.DataField = myT.Columns[i].ColumnName;
col.HeaderText = myT.Columns[i].ColumnName;
if (col.DataField == myT.Columns["RepCode"].ColumnName)
{
col.Visible = false;
}

DataGrid5.Columns.Add(col);
DataGrid5.DataSource = myT;
DataGrid5.DataBind();
}
Here is the C# snippet of middle tier code that builds the datatable:

DataSet ds = new DataSet();
DataTable myT;
myT = ds.Tables.Add("Company");
DataRow row = ds.Tables["Company"].NewRow();
//Create the Customers DataTable.

int sizeOfHash = fu.sizeOfHashTable(securedCompanyHash);
object[] aValues = new string [sizeOfHash];
int thisI = 0;
foreach(DictionaryEntry entry in securedCompanyHash)
{

string key = Convert.ToString(entry.Key);

myT.Columns.Add(key, typeof(string));

string val = Convert.ToString(entry.Value);

row[key] = val;

if (val == null || val.Length == 0)
{
}else{

aValues[thisI] = val;
thisI++;
}
}

ds.Tables["Company"].LoadDataRow(aValues, false);

return myT;

Nov 17 '05 #1
1 2626
M
I figured it out. I had a DataGrid5.Columns.Add command in there. (sheesh!).

M wrote:

My problem is that AutogenerateColumns="false" does not work with the
datatable I built from a hashtable.


Nov 17 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
7451
by: Frank | last post by:
Hi alll, How can I bind a dynamically created dataTable to a repeater? I do not know the number of columns and the column names at design time. I try to do the same thing as for datagrid:...
12
2881
by: Alphonse Giambrone | last post by:
Is there a simple way to convert the contents of a datatable to an HTML table. I have a dataset containing multiple datatables that I need to be able to insert all the data into an html email. I...
3
15390
by: Tim::.. | last post by:
I currently have the following datagrid but want to turn the name and email column into a hyperlink in the codebehind! Can someone please tell me how I achieve this! Thanks Private Sub...
8
34209
by: George | last post by:
Hi, I have been trying to see if I can do the following: 1. Create a DataGridView 2. Create 2 columns in the DataGridView (1 textbox and the other combobox) 3. Create a DataTable containing...
1
1970
by: Ryan Liu | last post by:
Hi, Is there a way to specify data Grid column Style if its DataSource is an IList(ArrayList), not a datatable? Can I selectively only show few columns, not all of its properties? Thanks!
4
26681
by: Tomasz Jastrzebski | last post by:
Hello Everyone, I have a GridView control bound to a plain DataTable object. AutoGenerateEditButton is set to true, Edit button gets displayed, and RowEditing event fires as expected.
0
6230
by: frostbb | last post by:
Ok, stumped one more time, I'm trying to learn how to use a DataGridView in place of the old DataGrid control. QUESTION: How do I map the columns returned from a RunTime sql query to the columns...
8
11022
by: cj | last post by:
I have a program to display queries to a SQL db. I type my query in a textbox and click a button and the results display in a datagrid. I could use either dataset or datatable to read the data in...
0
2365
by: Andy B | last post by:
I have the following gridview. There are 2 other textBoxes and a button on the page as well. When somebody puts text into the 2 textBoxes and presses the add button, it puts the values of those...
0
7207
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7095
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7294
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
7015
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7470
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5602
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5026
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3183
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
403
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.