Hi there
I created a custom Sharepoint field and a custom renderplattern for it:
<RenderPattern Name="DisplayPattern">
<Column Name="Date" HTMLEncode="FALSE" Format="DateTime"/>
</RenderPattern>
So basically it is writing out the raw value of the "Date" field. Currently I'm using the output clientside using Javascript:
...
var date = new Date(rawDateString);
...
Here I read the raw date string and parse it into a date object. This works fine so far, however I'm wondering if this is a stable solution. Will Sharepoint region/language/time settings have an impact on this? I want this to work across different settings.
Thanks for any help.