Click here to Skip to main content
16,015,991 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: design problem Pin
Bino B3-Aug-07 6:36
Bino B3-Aug-07 6:36 
AnswerRe: design problem Pin
koolprasad20036-Aug-07 0:02
professionalkoolprasad20036-Aug-07 0:02 
QuestionAfter postback Datagrids items and cells are not visible Pin
Anees Mitha3-Aug-07 0:08
Anees Mitha3-Aug-07 0:08 
AnswerRe: After postback Datagrids items and cells are not visible Pin
N a v a n e e t h3-Aug-07 0:27
N a v a n e e t h3-Aug-07 0:27 
GeneralRe: After postback Datagrids items and cells are not visible Pin
Anees Mitha3-Aug-07 1:41
Anees Mitha3-Aug-07 1:41 
GeneralRe: After postback Datagrids items and cells are not visible Pin
N a v a n e e t h3-Aug-07 1:48
N a v a n e e t h3-Aug-07 1:48 
AnswerRe: After postback Datagrids items and cells are not visible Pin
sulabh20203-Aug-07 1:39
sulabh20203-Aug-07 1:39 
GeneralRe: After postback Datagrids items and cells are not visible Pin
Anees Mitha3-Aug-07 3:39
Anees Mitha3-Aug-07 3:39 
Navaneeth, I have tried PreLoad and its not working.

Please find below my sample code so that u get a better idea.

protected void Page_PreLoad(object sender, EventArgs e)
{
if (!IsPostBack)
{ getdata(); }
.....
}

public virtual void grdvwCheckbox_ItemCommand(object s, DataGridCommandEventArgs e)
{
if (e.CommandName == "Select")
{
e.Item.BackColor = System.Drawing.Color.Wheat;
DataGrid dg = (DataGrid) s;
.........
}
}

public void getdata()
{
DataSet ds = new DataSet();
string rptDetails;
rptDetails = txtRptDetails.Text;

GridReports objBO = new GridReports();
ds = (DataSet)objBO.GridData(rptDetails);

grdvwCheckbox.AutoGenerateColumns = false;

foreach (DataColumn c in ds.Tables[0].Columns)
{
grdvwCheckbox.Columns.Add(CreateBoundColumns(c));
}

...................
}

Hope this helps u to help me.

If u have any working sample code in .Net 2.0 where Bound columns are created at runtime and ItemCommand event
is fired then please forward it to me.

Thanks guys for your reply!
QuestionThe control does not exist. in telerik Pin
Piyush Vardhan Singh3-Aug-07 0:07
Piyush Vardhan Singh3-Aug-07 0:07 
AnswerRe: The control does not exist. in telerik Pin
Bino B3-Aug-07 6:39
Bino B3-Aug-07 6:39 
Questiontrying to access a form from a class( same instance) Pin
Hardboiled862-Aug-07 23:52
Hardboiled862-Aug-07 23:52 
AnswerRe: trying to access a form from a class( same instance) Pin
Talal Sultan3-Aug-07 0:08
Talal Sultan3-Aug-07 0:08 
GeneralRe: trying to access a form from a class( same instance) Pin
Hardboiled863-Aug-07 0:42
Hardboiled863-Aug-07 0:42 
AnswerRe: trying to access a form from a class( same instance) Pin
N a v a n e e t h3-Aug-07 1:03
N a v a n e e t h3-Aug-07 1:03 
GeneralRe: trying to access a form from a class( same instance) Pin
Hardboiled863-Aug-07 1:08
Hardboiled863-Aug-07 1:08 
GeneralRe: trying to access a form from a class( same instance) Pin
N a v a n e e t h3-Aug-07 1:09
N a v a n e e t h3-Aug-07 1:09 
GeneralRe: trying to access a form from a class( same instance) Pin
Hardboiled863-Aug-07 1:56
Hardboiled863-Aug-07 1:56 
Questionmaster page and user control Pin
ravikiranreddydharmannagari2-Aug-07 23:45
ravikiranreddydharmannagari2-Aug-07 23:45 
AnswerRe: master page and user control Pin
Rhys Gravell3-Aug-07 5:12
professionalRhys Gravell3-Aug-07 5:12 
AnswerRe: master page and user control Pin
Bino B3-Aug-07 6:54
Bino B3-Aug-07 6:54 
QuestionDelete directory recursively throwing an error Pin
Nicejith2-Aug-07 23:22
Nicejith2-Aug-07 23:22 
AnswerRe: Delete directory recursively throwing an error Pin
N a v a n e e t h3-Aug-07 0:06
N a v a n e e t h3-Aug-07 0:06 
GeneralRe: Delete directory recursively throwing an error Pin
Nicejith3-Aug-07 1:30
Nicejith3-Aug-07 1:30 
QuestionMultiple file uploading [modified] Pin
Milind Panchal2-Aug-07 23:02
Milind Panchal2-Aug-07 23:02 
AnswerRe: Multiple file uploading Pin
N a v a n e e t h3-Aug-07 0:04
N a v a n e e t h3-Aug-07 0:04 

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.