Skip to content

Commit

Permalink
Fix {panelIndex} and {visiblePanelIndex} descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Tsukanov committed Sep 27, 2023
1 parent f40d2b4 commit b8b72a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/question_paneldynamic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,8 +384,8 @@ export class QuestionPanelDynamicModel extends Question
*
* The template can contain the following placeholders:
*
* - `{panelIndex}` - A zero-based index of a panel in the [`panels`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#panels) array.
* - `{visiblePanelIndex}` - A zero-based index of a panel in the [`visiblePanels`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#visiblePanels) array.
* - `{panelIndex}` - A panel index within the collection of all panels. Starts with 1.
* - `{visiblePanelIndex}` - A panel index within the collection of visible panels. Starts with 1.
* @see template
* @see templateDescription
* @see templateElements
Expand All @@ -406,8 +406,8 @@ export class QuestionPanelDynamicModel extends Question
*
* The template can contain the following placeholders:
*
* - `{panelIndex}` - A zero-based index of a panel in the [`panels`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#panels) array.
* - `{visiblePanelIndex}` - A zero-based index of a panel in the [`visiblePanels`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#visiblePanels) array.
* - `{panelIndex}` - A panel index within the collection of all panels. Starts with 1.
* - `{visiblePanelIndex}` - A panel index within the collection of visible panels. Starts with 1.
* @see templateTitle
* @see renderMode
*/
Expand Down

0 comments on commit b8b72a1

Please sign in to comment.