473,387 Members | 1,502 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

formatting problem with dynamic gridview

All,

I would be very grateful for any help on this question. I have an
application in asp.net 2.0 where I dynamically create a datatable and then
bind that to a gridview. Unfortunately, the date column always shows the
date and time while I just want the short date. I have tried applying a
format string {0:d} but to no avail. I saw a lot of posts regarding the
htmlencode property but I do not know how to turn that off for a dynamically
created column - can it be done? If so, that may solve my problem. Here is
a small snapshot of what I am doing:

Dim dcLeaveDate As New DataColumn("LeaveDate", GetType(Date))
Dim dtleaveformdays As New DataTable

dtleaveformdays.Columns.Add(dcLeaveDate)
gvDays.DataSource = dtleaveformdays
gvDays.DataBind()

gvDays is my gridview and I cannot get the date column to format. I even
tried doing this in the rowcreated function:

Protected Sub gvDays_RowCreated........
e.Row.Cells(0).Text = String.Format("{0:d}", e.Row.Cells(0).Text)

Please help - I need to do this dynamically and keep track of all changes
they make before they actually submit the data. At that point, I will save
the datatable to a sql table. In the meantime, dynamic formatting is giving
me a headache (-:

Thanks,
Ken

Aug 30 '06 #1
4 8305
Using "{0:dd-MMM-yyyy}" will give you the date as a 2-digit day,
3-letter month abbreviation, and 4-digit year separated by dashes ('-').

Of course there are other options. Check the MSDN docs for Date & Time
formatting.

-={ Kyle }=-
Ken Wigle wrote:
All,

I would be very grateful for any help on this question. I have an
application in asp.net 2.0 where I dynamically create a datatable and then
bind that to a gridview. Unfortunately, the date column always shows the
date and time while I just want the short date. I have tried applying a
format string {0:d} but to no avail. I saw a lot of posts regarding the
htmlencode property but I do not know how to turn that off for a dynamically
created column - can it be done? If so, that may solve my problem. Here is
a small snapshot of what I am doing:

Dim dcLeaveDate As New DataColumn("LeaveDate", GetType(Date))
Dim dtleaveformdays As New DataTable

dtleaveformdays.Columns.Add(dcLeaveDate)
gvDays.DataSource = dtleaveformdays
gvDays.DataBind()

gvDays is my gridview and I cannot get the date column to format. I even
tried doing this in the rowcreated function:

Protected Sub gvDays_RowCreated........
e.Row.Cells(0).Text = String.Format("{0:d}", e.Row.Cells(0).Text)

Please help - I need to do this dynamically and keep track of all changes
they make before they actually submit the data. At that point, I will save
the datatable to a sql table. In the meantime, dynamic formatting is giving
me a headache (-:

Thanks,
Ken
Aug 30 '06 #2
That does not help - I tried that formatting instead of {0:d} but it does not
affect the gridview. The gridview ignores all formatting and I think it is
because of htmlencoding which I have not found a way to turn off when using
dynamic columns.

I appreciate your help - I will try anything to try and get this working. I
seem to spend much more time on little things that should be simple to do
than the actual project itself.

ken
"Kyle K." wrote:
Using "{0:dd-MMM-yyyy}" will give you the date as a 2-digit day,
3-letter month abbreviation, and 4-digit year separated by dashes ('-').

Of course there are other options. Check the MSDN docs for Date & Time
formatting.

-={ Kyle }=-
Ken Wigle wrote:
All,

I would be very grateful for any help on this question. I have an
application in asp.net 2.0 where I dynamically create a datatable and then
bind that to a gridview. Unfortunately, the date column always shows the
date and time while I just want the short date. I have tried applying a
format string {0:d} but to no avail. I saw a lot of posts regarding the
htmlencode property but I do not know how to turn that off for a dynamically
created column - can it be done? If so, that may solve my problem. Here is
a small snapshot of what I am doing:

Dim dcLeaveDate As New DataColumn("LeaveDate", GetType(Date))
Dim dtleaveformdays As New DataTable

dtleaveformdays.Columns.Add(dcLeaveDate)
gvDays.DataSource = dtleaveformdays
gvDays.DataBind()

gvDays is my gridview and I cannot get the date column to format. I even
tried doing this in the rowcreated function:

Protected Sub gvDays_RowCreated........
e.Row.Cells(0).Text = String.Format("{0:d}", e.Row.Cells(0).Text)

Please help - I need to do this dynamically and keep track of all changes
they make before they actually submit the data. At that point, I will save
the datatable to a sql table. In the meantime, dynamic formatting is giving
me a headache (-:

Thanks,
Ken
Aug 30 '06 #3
Hi Ken,

If you don't know where the DateTime is coming from because the GridView is
dynamic, you have to dig into every cell in the row to find a DateTime and
apply the formatting to the text. It's a pain, but it can be done.

Here's a little sample that shows you the concept.

Let us know if this helps?

Ken
Microsoft MVP [ASP.NET]

<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Protected Sub Page_Load _
(ByVal sender As Object, ByVal e As System.EventArgs)
If Not IsPostBack Then
GridView1.DataSource = CreateDataSource()
GridView1.DataBind()
End If
End Sub
Protected Sub GridView1_RowDataBound _
(ByVal sender As Object, ByVal e As _
System.Web.UI.WebControls.GridViewRowEventArgs)
' Routine to display an unknown DateTime column
' as a short date at runtime
' By Ken Cox [Microsoft MVP]
' August 30/06
'
' Make sure this is a datarow being bound
If e.Row.RowType = DataControlRowType.DataRow Then
' Create variables to hold values
Dim dtview As System.Data.DataRowView
Dim dt As DateTime
Dim intCounter As Integer
' Get the contents of the current row
' as a DataRowView
dtview = e.Row.DataItem
' Loop through the individual values in the
' DataRowView's ItemArray
For intCounter = 0 To _
dtview.Row.ItemArray.Length - 1
' Check if the current value is
' a System.DateTime type
If TypeOf dtview.Row.Item(intCounter) Is _
System.DateTime Then
' If it is a DateTime, cast it as such
' into the variable
dt = dtview.Row.Item(intCounter)
' Set the text of the current cell
' as the short date representation
' of the datetime
e.Row.Cells(intCounter).Text = _
dt.ToShortDateString
End If
Next
End If
End Sub
Function CreateDataSource() As Data.DataTable
' Provides some dummy data
Dim dt As New Data.DataTable
Dim dr As Data.DataRow
dt.Columns.Add(New Data.DataColumn _
("LeaveDate", GetType(DateTime)))
Dim i As Integer
For i = 0 To 5
dr = dt.NewRow()
dr(0) = Now.AddDays(i)
dt.Rows.Add(dr)
Next i
Return dt
End Function
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Format Dates in Dynamic GridView</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:gridview id="GridView1" runat="server"
onrowdatabound="GridView1_RowDataBound">
</asp:gridview>
</div>
</form>
</body>
</html>

"Ken Wigle" <Ke******@discussions.microsoft.comwrote in message
news:6E**********************************@microsof t.com...
All,

I would be very grateful for any help on this question. I have an
application in asp.net 2.0 where I dynamically create a datatable and then
bind that to a gridview. Unfortunately, the date column always shows the
date and time while I just want the short date. I have tried applying a
format string {0:d} but to no avail. I saw a lot of posts regarding the
htmlencode property but I do not know how to turn that off for a
dynamically
created column - can it be done? If so, that may solve my problem. Here
is
a small snapshot of what I am doing:

Dim dcLeaveDate As New DataColumn("LeaveDate", GetType(Date))
Dim dtleaveformdays As New DataTable

dtleaveformdays.Columns.Add(dcLeaveDate)
gvDays.DataSource = dtleaveformdays
gvDays.DataBind()

gvDays is my gridview and I cannot get the date column to format. I even
tried doing this in the rowcreated function:

Protected Sub gvDays_RowCreated........
e.Row.Cells(0).Text = String.Format("{0:d}", e.Row.Cells(0).Text)

Please help - I need to do this dynamically and keep track of all changes
they make before they actually submit the data. At that point, I will
save
the datatable to a sql table. In the meantime, dynamic formatting is
giving
me a headache (-:

Thanks,
Ken

Aug 31 '06 #4
Thank you very much! The rowdatabound routine worked perfectly! I really
appreciate it.

Ken

"Ken Cox [Microsoft MVP]" wrote:
Hi Ken,

If you don't know where the DateTime is coming from because the GridView is
dynamic, you have to dig into every cell in the row to find a DateTime and
apply the formatting to the text. It's a pain, but it can be done.

Here's a little sample that shows you the concept.

Let us know if this helps?

Ken
Microsoft MVP [ASP.NET]

<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Protected Sub Page_Load _
(ByVal sender As Object, ByVal e As System.EventArgs)
If Not IsPostBack Then
GridView1.DataSource = CreateDataSource()
GridView1.DataBind()
End If
End Sub
Protected Sub GridView1_RowDataBound _
(ByVal sender As Object, ByVal e As _
System.Web.UI.WebControls.GridViewRowEventArgs)
' Routine to display an unknown DateTime column
' as a short date at runtime
' By Ken Cox [Microsoft MVP]
' August 30/06
'
' Make sure this is a datarow being bound
If e.Row.RowType = DataControlRowType.DataRow Then
' Create variables to hold values
Dim dtview As System.Data.DataRowView
Dim dt As DateTime
Dim intCounter As Integer
' Get the contents of the current row
' as a DataRowView
dtview = e.Row.DataItem
' Loop through the individual values in the
' DataRowView's ItemArray
For intCounter = 0 To _
dtview.Row.ItemArray.Length - 1
' Check if the current value is
' a System.DateTime type
If TypeOf dtview.Row.Item(intCounter) Is _
System.DateTime Then
' If it is a DateTime, cast it as such
' into the variable
dt = dtview.Row.Item(intCounter)
' Set the text of the current cell
' as the short date representation
' of the datetime
e.Row.Cells(intCounter).Text = _
dt.ToShortDateString
End If
Next
End If
End Sub
Function CreateDataSource() As Data.DataTable
' Provides some dummy data
Dim dt As New Data.DataTable
Dim dr As Data.DataRow
dt.Columns.Add(New Data.DataColumn _
("LeaveDate", GetType(DateTime)))
Dim i As Integer
For i = 0 To 5
dr = dt.NewRow()
dr(0) = Now.AddDays(i)
dt.Rows.Add(dr)
Next i
Return dt
End Function
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Format Dates in Dynamic GridView</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:gridview id="GridView1" runat="server"
onrowdatabound="GridView1_RowDataBound">
</asp:gridview>
</div>
</form>
</body>
</html>

"Ken Wigle" <Ke******@discussions.microsoft.comwrote in message
news:6E**********************************@microsof t.com...
All,

I would be very grateful for any help on this question. I have an
application in asp.net 2.0 where I dynamically create a datatable and then
bind that to a gridview. Unfortunately, the date column always shows the
date and time while I just want the short date. I have tried applying a
format string {0:d} but to no avail. I saw a lot of posts regarding the
htmlencode property but I do not know how to turn that off for a
dynamically
created column - can it be done? If so, that may solve my problem. Here
is
a small snapshot of what I am doing:

Dim dcLeaveDate As New DataColumn("LeaveDate", GetType(Date))
Dim dtleaveformdays As New DataTable

dtleaveformdays.Columns.Add(dcLeaveDate)
gvDays.DataSource = dtleaveformdays
gvDays.DataBind()

gvDays is my gridview and I cannot get the date column to format. I even
tried doing this in the rowcreated function:

Protected Sub gvDays_RowCreated........
e.Row.Cells(0).Text = String.Format("{0:d}", e.Row.Cells(0).Text)

Please help - I need to do this dynamically and keep track of all changes
they make before they actually submit the data. At that point, I will
save
the datatable to a sql table. In the meantime, dynamic formatting is
giving
me a headache (-:

Thanks,
Ken


Aug 31 '06 #5

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

Similar topics

3
by: washoetech | last post by:
I have a gridview control. In this grid view there is a column for the price of an item. Some of the prices have a dollar sign in front of it and some dont. How do I get rid of the dollar sign...
1
by: euan | last post by:
HI Guys, I have bee using conditional formatting in the datagrid recently and I am moving over to framework 2.0 and noticed the datagrid has been replaced by the gridview. So, I would like to do...
4
by: Nalaka | last post by:
Hi, I have two questions about gridViews. 1. How can I intercept the row/column values at loading to change values? 2. After I update a row (using default update functionality), how can I...
3
by: Simon Harvey | last post by:
Hi all, I'm having problems getting my date to format. Someone told me that with the GridView, you need to use a TemplateColumn and not a BoundColumn when displaying dates. Given that, can...
3
by: CSharpguy | last post by:
I'm trying to format the GridView on my web form and its not working. for money I have {0:C} and for date fields, I have {0:d} and the format isn't changing, what else do I need to do to get the...
1
by: AmitKu | last post by:
I've got the Gridview going at full speed, and I've enabled editing, but when I click on the "edit" button, this ugly editing UI comes up. Well it's not ugly, but it's not great either. How do I...
2
by: pgonzo | last post by:
In my initial tests with the GridView control, I cannot understand why the DataFormatString attribute has no affect on the column formatting. The 'creation_date' field is being reported as "3/30/02...
1
by: =?Utf-8?B?cGVsZWdrMQ==?= | last post by:
i have a GridView which i can Page on (go to page 2,10,...) the thing is that i have a dynamic query which set the GridView from starts on page 1. the thing is that when i start to go over the...
2
by: tomh2099 | last post by:
Hi, Hi, I have an ASP.NET 2005 application (using VB) with a GridView control that needs to have the last 5 or 6 rows in Bold or maybe some other special formatting. Most of the rows show...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.