This is a migrated thread and some comments may be shown as answers.

how to design the Grid

3 Answers 77 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Jols
Top achievements
Rank 2
Jols asked on 17 Mar 2009, 12:41 PM
hello to all!,
 
             once again i would like to ask  question again about the grid, coz i have another design here on my page that refer to responses of the user..anyway here is the scenario the header is the name and date and time, below is the response of the person, 

                     John Macalana     Feb 12,2009 1:20;30
                         cannot log in to the system..
                     Richard Bayer       Feb 12,2009 1:25:26
                          I already Check the system i works fine try to log in again
                     John Macalan       Feb 12,2009  1:35:12
                         Thanks Richard i forgot my password

all response inputed on the page is save directly to the database and reload on grid. how can i do that in grid and how i'm going to design the grid..

codes/sample is highly appreciated
thanks to all.

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 18 Mar 2009, 07:15 AM
Hi Jols,

I guess the Name, Date and Messages are all coming from the Database. If so you can use a GridTemplateColumn to achieve the desired scenario.

ASPX:

<
telerik:GridTemplateColumn UniqueName="TempCol"  > 
          
          <ItemTemplate> 
             <%#Eval("Name")%>  <%#Eval("Date")%>  
             <br /> 
               <%#Eval("Message")%> 
          </ItemTemplate> 
         
        </telerik:GridTemplateColumn> 


Thanks
Shinu
0
Jols
Top achievements
Rank 2
answered on 20 Mar 2009, 06:53 AM
sir shinu thanks a lot its works
0
Shinu
Top achievements
Rank 2
answered on 20 Mar 2009, 08:40 AM
Hi Jols,

You can also refer the following help article which explains how to customize the Grid appearence using GridTemplateColumn.
Customizing with GridTemplateColumn

Thanks
Shinu
Tags
Grid
Asked by
Jols
Top achievements
Rank 2
Answers by
Shinu
Top achievements
Rank 2
Jols
Top achievements
Rank 2
Share this question
or