I am using the CSOM in javascript. I have a list which contains 3 text types and 2 date types. When I use:
var listEnumerator = this.listItems.getEnumerator();
var collection = listEnumerator.get_current();
var linkTitle = collection.get_item('Start');
alert(linkTitle);
For the text types it returns the correct information but when I input the name of the date type into get_item it doesn't even return an alert.
What is happening?
moveNext()first? In any case, open your browsers dev tool console (Usually F12), and check for errors