Tagged Questions
The autogeneratecolumn tag has no wiki summary.
3
votes
2answers
176 views
how do i escape a slash character in a WPF binding path, or how to work around?
I'm just learning WPF, and I gragged a table from a datasource onto a window which generated XAML for each column.
Some of those columns had names that caused the following:
<DataGridTextColumn ...
2
votes
2answers
178 views
Get SQL Computed Column Inserted Value
My Table Structure as follow,
CREATE TABLE tbl_Info
(
[SSEID] BIGINT NOT NULL IDENTITY(1,1),
[ShortenKey] AS ConvertToBase([SSEID]),
[Title] ...
2
votes
2answers
157 views
Creating a column which should be auto generated by concatenating values in other columns in a table
I got a table in a SQL database with four columns: ID, Comp_Id, Cont_Id and Comp_Cont_Id. The values into ID, Comp_Id, Cont_Id columns are entered manually and the value in the column Comp_Cont_Id is ...
1
vote
1answer
124 views
Accessing all of the columns of an AutoGenerated GridView - ASP.NET
I have a simple Gridview with AutoGenerate on. I need to know how to access these columns, because the column count is always zero, even though they show in the page.
I found something about an ...
1
vote
1answer
442 views
Auto-generate field value on sfGuardUser when registering
I'm building a Symfony 1.4 project that is using sfDoctrineGuardPlugin for users/authentication. I have a field on my user table named "access_token" that I would like to populate with an ...
1
vote
1answer
302 views
Autogenerating columns from empty results in Silverlight
I'm doing some rapid prototyping and is trying to mock out an admin interface for a website and went with WCF RIA Services. I'm able to expose and consume the domain services from server to client, ...
1
vote
1answer
212 views
Controlling DBML EntityRef creation in DBML with multiple foreign keys
Using Linq to SQL and the autogeneration capabilities of DBML, foreign key relationships create EntityRefs in the DBML designer file. For example :
private int _USStateId;
private ...
1
vote
2answers
754 views
Using Mode=TwoWay and AutogenerateColumns=True in Silverlight 3 DataGrid
My List<BusinessObject> has some public properties that I want to bind to columns in a DataGrid. Unfortunately, the names of the public properties are not good and I may not even know what they ...
1
vote
1answer
355 views
ASP.NET 3.5 Gridview layout for each product type in DB
I'm trying to create a simple CMS-likeb backend app that uses TreeView for categories and GridView for product display/editing.
The problem that I'm experiencing lies within the fact that there is a ...
1
vote
1answer
1k views
Programatically add ValidationRules to WPF DataGrid when autogenerating columns
I want to do this in the AutoGeneratingColumn event:
<my:DataGridTextColumn Header="CompanyName">
<my:DataGridTextColumn.Binding>
<Binding Path="CompanyName">
...
1
vote
1answer
699 views
Change Order of columns
I am using gridView. I have 4 auto generated columns and 1 generated by my self. Now the column which i have generated is displayed first and then the auto generated columns.
I want to display auto ...
1
vote
2answers
1k views
DataGridView Autogeneratecolumns as TextBox instead of label
How can I have a datagridview that will autogenerate a textbox instead of a label?
0
votes
0answers
54 views
How to replace/modify autogenerated columns with template columns in a gridview for ASP.net
I need to create a gridview in asp.net from autogenerated columns. I have an SQL query that pivots a table and creates a variable number of columns based on the number of different brands in the ...
0
votes
3answers
144 views
replacing the autogenerated checkbox feild with radio button in a Autogenerated columns Grid View
I have a Grid view for which columns are auto-generated. The binding data-table would be having a Bit(Boolean) column. Now when the data is binded, the check-box field is generated in place of the Bit ...
0
votes
2answers
19 views
Auto colums html
I wonder if it is possible to create ato columns.
Now i using something like this:
<table>
<tr>
<td>
key1: value1<br />
key2: value2<br />
key3: ...
0
votes
2answers
370 views
Auto generate varchar Ticket number via DB
I'm looking for suggestion on how to get the DB to auto generate Ticket numbers (preferably via the SQL DB) for a varchar column. I have the following tables in the DB: Activities & Cases and ...
0
votes
2answers
2k views
How to get width of gridview column when AutoGenerateColumns is true
I have a gridview that I need to get the width of columns for after the gridview is databound. I have to have AutoGenerateColumns=true because the columns for the datatable that the gridview is bound ...
0
votes
2answers
1k views
C# Datagridview - Turn off AutoGenerateColumns when binding to XML file?
I am binding an XML file to a DataGridView. I don't want the columns to be auto-generated, in fact I want to generate them myself. Is there a way of turning off the auto generating columns feature and ...