Skip to content

Commit bac0863

Browse files
committed
Removing section
1 parent 3b286c3 commit bac0863

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

powerapps-docs/developer/component-framework/reference/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This section contains reference documentation for creating code components using
2525
|[Column](column.md)|[!INCLUDE [column-description](includes/column-description.md)]|Model-driven apps and canvas apps (public preview)|
2626
|[ConditionExpression](conditionexpression.md)|[!INCLUDE [conditionexpression-description](includes/conditionexpression-description.md)]|Model-driven apps|
2727
|[Context](context.md)|[!INCLUDE [context-description](includes/context-description.md)]|Model-driven apps and canvas apps (public preview)|
28-
|[DataSet](dataset.md)|[!INCLUDE [dataset-description](includes/dataset-description.md)]|Model-driven apps|
28+
|[DataSet](dataset.md)|[!INCLUDE [dataset-description](includes/dataset-description.md)]|Model-driven apps and canvas apps (public preview)|
2929
|[DateFormattingInfo](dateformattinginfo.md)|[!INCLUDE [dateformattinginfo-description](includes/dateformattinginfo-description.md)]|Model-driven apps|
3030
|[Device](device.md)|[!INCLUDE [device-description](includes/device-description.md)]|Model-driven apps and canvas apps (public preview)|
3131
|[EntityRecord](entityrecord.md)|[!INCLUDE [entityrecord-description](includes/entityrecord-description.md)]|Model-driven apps|

powerapps-docs/developer/component-framework/sample-controls/data-set-component-canvas.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -561,12 +561,6 @@ In this sample component, two property sets are defined in its manifest, `sample
561561
> [!div class="mx-imgBorder"]
562562
> ![Property Set view fields](../media/property-set-view-fields.png)
563563
564-
### Navigation
565-
566-
Data record navigation can be done with a few extra configurations in the canvas app. Component’s `OnSelect` property is bound to `context.parameters.[dataset_property_name].openDatasetItem(entityReference)`.
567-
568-
Using this API along with the `dataset_property_name_selected property`, the user can update the page context with the selected records. This works with canvas’s `UpdateContext` and `Navigate` function.
569-
570564
### Sizing
571565
572566
This sample also showcases how the component listens to the container resize. The `trackContainerResize` method should be called within the `init` method so that the `mode.allocatedWidth` and `mode.allocatedHeight` will be provided each time when the `updateView` is being called. If this method is not called initially, they don't have `allocatedWidth` and `allocatedHeight` values provided. If the `allocatedHeight` is –1, that means there is no limit on height. The component should adjust its height based on the provided width.
@@ -581,7 +575,6 @@ In this preview for canvas apps, only a limited set of [filtering](../reference/
581575
582576
In model-driven apps, views are required for dataset components to get the column's information. In canvas apps, views are used as a filter. It’s up to the app maker to decide which columns to be added for each of the component. A view can be selected after a source is selected for the dataset component. This is applicable only when you choose Common Data Service as a source. Selecting a view applies the view’s filter to the source. The view name and view id can be retrieved using the `context.parameters.[dataset_property_name].getTitle()` and `context.parameters.[dataset_property_name].getViewId()` methods.
583577
584-
585578
### Related topics
586579
587580
[Download sample components](https://go.microsoft.com/fwlink/?linkid=2088525)<br/>

0 commit comments

Comments
 (0)