search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

React Scheduler > Behaviour of `rowHeaderWidth`

Asked by Andy
2 hours ago.

Hello,

Is it intentional behaviour that the left pane’s width is capped at the width sum of all rowHeaderColumns?

This is my configuration.


// Sum of width is 350
const rowHeaderColumns = [
  { id: '1', width: 200, label: 'Title' },
  { id: '2', width: 100, label: 'Owner' },
  { id: '3', width: 50, label: 'Status' }
];

const rowHeaderWidth = 1000;

// Outcome: The left pane's width is 350, instead of 1000.

const config = {
    treeEnabled: true,
    weekStarts,
    rowHeaderColumns,
    rowHeaderWidth,
    rowHeaderColumnsMergeParents: false,
    rowHeaderWidthAutoFit: false,
    rowHeaderColumnsResizable: false,
    rowHeaderResizable: false,
    rowHeaderScrolling: true,
    rowHeaderSplitterWidth: 1,
    eventMinWidth: 100,
    controlRef,
    onAfterRender,
    useEventBoxes: 'Never',
    snapToGrid: false,
    heightSpec: 'Parent100Pct',
    treeAnimation: false,
    floatingEvents: false,
 }

Answer posted by Dan Letecky [DayPilot]
1 hour ago.

Yes, this is by design.

Comment posted by Andy
1 hour ago.

Thanks for the clarification, Dan!

New Reply
This reply is
Attachments:
or drop files here
Your name (optional):