Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsEventsEventsEvents Start and End Date/Time - display just date?Events Start and End Date/Time - display just date?
Previous
 
Next
New Post
7/7/2006 11:21 PM
 
In the list view, is it possible to use just the date in the start/end columns rather than the default combination of date and time. Thank you in advance.
 
New Post
7/8/2006 6:34 PM
 
I'm not aware that this is possible. If we could apply an XML Transform (see http://www.dotnetnuke.com/Community/ForumsDotNetNuke/tabid/795/forumid/21/threadid/50774/scope/posts/Default.aspx) this would be easy.
 
New Post
7/8/2006 11:34 PM
 
Since the when the event is created the time and date are inputted seperately - can we not assume that they are seperate fields (I am not good at SQL so I have not tried to look at the back-end tables to see myself). 
 
New Post
8/11/2006 8:05 PM
 

mhuang wrote
In the list view, is it possible to use just the date in the start/end columns rather than the default combination of date and time. Thank you in advance.

I also want this, especially since the time zone issue is posting all the wrong times.  Plus, a lot of my events are all day events.

Karen

 
New Post
8/26/2006 6:11 AM
 

Yes this is possible. You can either use format string and can call custom function. e.g.

<asp:textbox id="txtStartDate" Text='<%# FormatDateString(DataBinder.Eval(Container.DataItem, "StartDate")) %>' cssclass="NormalTextBox" runat="server" maxlength="11" width="65" columns="30"></asp:textbox>

protected string FormatDateString(object objDate)
{
    string dateString = "";           
    if (objDate != null)
    {
        DateTime dt = new DateTime();
        dt = (DateTime)objDate;

        if (Null.IsNull(dt) != true)
        {
            dateString = dt.ToShortDateString();
        }
    }

    return dateString;
}

I hope this will help.

Vinni
http://www.laksha.net


Vinni
Email: websupport@laksha.net
Website: http://www.Laksha.net
 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsEventsEventsEvents Start and End Date/Time - display just date?Events Start and End Date/Time - display just date?


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out