Having installed the en-GB language pack and enabled it, the date format in the shortlist module is still M/D/Y - can you please let me know how to change the format to match the portal format (ie. UK date format, DD/MM/YYYY)
Thanks, Simon
As you can see in the ascx file, the format is taken from the current context:
<%# CType(DataBinder.Eval(Container, "DataItem.LastModified"), Date).ToString("d") %>
the ToString("d") means show in short date format according to current thread culture. It is DNN that manages this by setting the thread to your preferred locale or whatever you select in the language selector.
Peter
Thanks Peter - I shifted servers an tried putting on the GB pack and removing the US pack and it worked! Thanks for your reply.
The shortlist module is great, but one that clients may well want to customise in terms of columns showing, even the order of them.
I see the datagrid in the .ascx file but may want to change something in the code behind - is the source code available for this module?