Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hello Everyone.
How do I get Status, Last edited and Created by Value from List View and show it
Thanks in advance!
Hi Dat Vu
The question is ... where do you want to get these values and show them :-P
If it's on the front-end of your site, then 'every page' in your ListView represented by an object that implement IPublishedContent.
So if you get the .Children of the ListView page, each one of those children will be an IPublishedContent object
If the item isn't published it won't show in the list
but the other information should be available:
This is the list of IPublishedContent properties:
https://our.umbraco.com/documentation/reference/querying/ipublishedcontent/Properties/
There is a CreateDate and an UpdateDate
and there is a property called WriterName that is the name of the person who last updated.
regards
Marc
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Get List View Column Value
Hello Everyone.
How do I get Status, Last edited and Created by Value from List View and show it
Thanks in advance!
Hi Dat Vu
The question is ... where do you want to get these values and show them :-P
If it's on the front-end of your site, then 'every page' in your ListView represented by an object that implement IPublishedContent.
So if you get the .Children of the ListView page, each one of those children will be an IPublishedContent object
If the item isn't published it won't show in the list
but the other information should be available:
This is the list of IPublishedContent properties:
https://our.umbraco.com/documentation/reference/querying/ipublishedcontent/Properties/
There is a CreateDate and an UpdateDate
and there is a property called WriterName that is the name of the person who last updated.
regards
Marc
is working on a reply...