Click here to Skip to main content
15,893,486 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Data grid! Pin
PandemoniumPasha19-Feb-07 20:42
PandemoniumPasha19-Feb-07 20:42 
GeneralRe: Data grid! Pin
nclauder19-Feb-07 21:18
nclauder19-Feb-07 21:18 
GeneralRe: Data grid! Pin
nclauder19-Feb-07 21:40
nclauder19-Feb-07 21:40 
GeneralRe: Data grid! Pin
PandemoniumPasha19-Feb-07 21:48
PandemoniumPasha19-Feb-07 21:48 
GeneralRe: Data grid! Pin
nclauder19-Feb-07 22:06
nclauder19-Feb-07 22:06 
GeneralRe: Data grid! Pin
luckyve19-Feb-07 22:30
luckyve19-Feb-07 22:30 
GeneralRe: Data grid! Pin
PandemoniumPasha19-Feb-07 21:47
PandemoniumPasha19-Feb-07 21:47 
AnswerRe: Data grid! Pin
NanaAM19-Feb-07 22:19
NanaAM19-Feb-07 22:19 
Grid can be bound to any Collection type.
You can create a dummy datattable as following:-
DataTable dt = new DataTable("Try");
dt.Columns.Add("column1");
dt.Rows.Add("one");
dt.Rows.Add("two");
dt.Rows.Add("three");

and now set the datasource to dt.

Also you need to have atleast 1 row in datasource to get the grid displayed

Nana

GeneralRe: Data grid! Pin
nclauder19-Feb-07 22:33
nclauder19-Feb-07 22:33 
GeneralRe: Data grid! Pin
NanaAM19-Feb-07 22:50
NanaAM19-Feb-07 22:50 
GeneralRe: Data grid! Pin
nclauder19-Feb-07 22:56
nclauder19-Feb-07 22:56 
GeneralRe: Data grid! Pin
NanaAM19-Feb-07 23:03
NanaAM19-Feb-07 23:03 
GeneralRe: Data grid! Pin
nclauder20-Feb-07 0:06
nclauder20-Feb-07 0:06 
GeneralRe: Data grid! Pin
PandemoniumPasha20-Feb-07 22:46
PandemoniumPasha20-Feb-07 22:46 
QuestionHow to delete rows that are checked in a datagrid / [modified] Pin
Arun Hegde19-Feb-07 19:54
Arun Hegde19-Feb-07 19:54 
AnswerRe: How to delete rows that are checked in a datagrid / Pin
PandemoniumPasha19-Feb-07 20:52
PandemoniumPasha19-Feb-07 20:52 
AnswerRe: How to delete rows that are checked in a datagrid / Pin
NanaAM19-Feb-07 22:32
NanaAM19-Feb-07 22:32 
QuestionDisplay Datagrid horizontally Pin
iamdking19-Feb-07 19:47
iamdking19-Feb-07 19:47 
AnswerRe: Display Datagrid horizontally Pin
Vsree19-Feb-07 20:46
Vsree19-Feb-07 20:46 
GeneralRe: Display Datagrid horizontally Pin
iamdking19-Feb-07 21:09
iamdking19-Feb-07 21:09 
GeneralRe: Display Datagrid horizontally Pin
luckyve19-Feb-07 22:34
luckyve19-Feb-07 22:34 
GeneralRe: Display Datagrid horizontally Pin
Vsree20-Feb-07 2:01
Vsree20-Feb-07 2:01 
QuestionCrystal Report Problem Pin
Kissy1619-Feb-07 18:33
Kissy1619-Feb-07 18:33 
AnswerRe: Crystal Report Problem Pin
Sylvester george19-Feb-07 19:36
Sylvester george19-Feb-07 19:36 
QuestionFire Fox Pin
Khan.Bangash19-Feb-07 18:22
Khan.Bangash19-Feb-07 18:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.