SharePoint / sp-dev-docs

SharePoint & Viva Connections Developer Documentation
https://docs.microsoft.com/en-us/sharepoint/dev/
Creative Commons Attribution 4.0 International
1.25k stars 1.01k forks source link

List Formatting - Datetime picker dialog "inlineEditField" is not overlay when using Board View #9926

Closed aaclage closed 1 month ago

aaclage commented 2 months ago

Target SharePoint environment

SharePoint Online

What SharePoint development model, framework, SDK or API is this about?

Declarative list formatting

Developer environment

Windows

What browser(s) / client(s) have you tested

Additional environment details

Describe the bug / error

When using declarative formatting in Board View card that include date picker inlineEditField it's identify that calendar dialog box is not overlay and hide behind the bucket.

CalendarPicker

Steps to reproduce

  1. Create Sample List
  2. Create Column "StartDate" with type "Date and Time"
  3. Create Board View
  4. Customize card with following json
{
  "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/board-formatting.schema.json",
  "hideSelection": false,
  "formatter": {
    "elmType": "div",
    "attributes": {
      "class": "sp-card-container sp-card-container-noPadding"
    },
    "children": [
      {
        "elmType": "div",
        "style": {
          "width": "100px",
          "margin": "10px",
          "padding-left": "120px"
        },
        "children": [
          {
            "elmType": "div",
            "txtContent": "[$StartDate]",
            "inlineEditField": "[$StartDate]"
          }
        ]
      }
    ]
  }
}

Expected behavior

It's expected when using "inlineEditField" and select "Date and Time" that calendar dialog is overlay and not hide in bucket when using Board View.

CalendarPicker

@tpodugu-ms, @arkogupta, @jgupta-msft for your consideration.

tpodugu-ms commented 2 months ago

@aaclage Thank you for bringing this to our attention. We will provide an update on this soon.

aaclage commented 1 month ago

Dear @tpodugu-ms, I tested on my sandboxes and issue doesn't appear.

I will close ticket and thank you for your support on this topic.