Change position is not working

Hi! this is part of sections/works/articles.

type: pages

headline: work

parent: site.find(“works”)

info: “{{ page.dateFormatted }}”

template: works-article

empty: No work yet

sortBy: date desc

and this is works.yml

title: work

options:
title: false
duplicate: false
status: false
url: false
delete: false

tabs:
articles:
columns:
- width: 1/3
sections:
drafts:
extends: sections/works/articles
headline: drafts
info: false
status: draft
unlisted:
extends: sections/works/articles
headline: in review
info: false
status: unlisted
- width: 2/3
sections:
listed:
extends: sections/works/articles
headline: published
status: listed
layout: cards
image:
ratio: 4/5
cover: true
options:
columns:
- width: 1/2
fields:
heading:
label: headline
type: text
icon: title
subheading:
label: description
type: writer
icon: title
- width: 1/2
fields:
limit:
label: Articles per page
type: number
width: 1/2
placeholder: 6
dateFormat:
label: Date format
type: text
width: 1/2
icon: calendar
placeholder: d M, Y

problem is… I can not change positon in listed item.
I tried to delete sortBy: date desc line, but still can not. “change position” is grey color… can not click…
can you help me?

It would be helpful if you post your code properly, so that it is readable, i.e. enclosed within backticks like this:

backticks

What I’m missing is the blueprint of works-article

this is part of sections/works/articles.

type: pages

headline: work

parent: site.find(“works”)

info: “{{ page.dateFormatted }}”

template: works-article

empty: No work yet

sortBy: date desc

and this is works.yml

title: work

options:
title: false
duplicate: false
status: false
url: false
delete: false

tabs:
articles:
columns:
- width: 1/3
sections:
drafts:
extends: sections/works/articles
headline: drafts
info: false
status: draft
unlisted:
extends: sections/works/articles
headline: in review
info: false
status: unlisted
- width: 2/3
sections:
listed:
extends: sections/works/articles
headline: published
status: listed
layout: cards
image:
ratio: 4/5
cover: true
options:
columns:
- width: 1/2
fields:
heading:
label: headline
type: text
icon: title
subheading:
label: description
type: writer
icon: title
- width: 1/2
fields:
limit:
label: Articles per page
type: number
width: 1/2
placeholder: 6
dateFormat:
label: Date format
type: text
width: 1/2
icon: calendar
placeholder: d M, Y

Still no works-article yaml

title: works
num: date
icon: 📖

status:
  draft:
    label: Draft
    text: The note is still in draft mode. It can only be seen by editors with panel access.
  unlisted:
    label: In Review
    text: The note is online and can be visited with the direct URL. The team must still give the final go to publish it.
  listed:
    label: Published
    text: The note is onliㄴne and listed in the blog

columns:
  - width: 2/3
    fields:
      brand:
        label: Brand
        type: text
      campaign:
        type: text
      cover:
        type: files
        max: 1
        uploads:
          template: works-article-image
      text:
        label: Content
        type: blocks
        uploads:
          template: works-article-image
      additionalImages:
        label: Table view image
        type: files
        max: 7
        uploads:
          template: works-article-image

  - width: 1/3
    sections:
      meta:
        type: fields
        fields:
          date:
            type: date
            label: year
            time: false
            display: "YYYY"
            default: now
          director:
            type: tags
            options: query
            query: page.siblings.pluck("tags", ",", true)
          category:
            type: tags
            options:
              beauty: beauty
              lifestyle: lifestyle
              food: food
              drink: drink
              electronic: electronic
              musicVideo: music video
              IT: IT
              kidol: K idol
          client:
            label: client
            type: text
      images:
        type: files
        template: works-article-image
      ```

here..thank you..!

Pages are only sortable manually when the default number scheme is used, not when using date or alpha.

thanks! but… I deleted num: date … still can not change position…

Have you also removed this part?