diff --git a/grid-sdk/maui/data-grid/empty-view.md b/grid-sdk/maui/data-grid/empty-view.md index 63e021f5..97a4da7b 100644 --- a/grid-sdk/maui/data-grid/empty-view.md +++ b/grid-sdk/maui/data-grid/empty-view.md @@ -96,7 +96,7 @@ this.Content = dataGrid; ## Display a DataTemplate when DataGrid has no items -#### Using EmptyViewTemplate with Custom Binding +### Using EmptyViewTemplate with Custom Binding For advanced scenarios such as filtered or searched data, you can set the `EmptyView` to a custom type that will be displayed when the `ItemsSource` is null or the collection that the `ItemsSource` parameter specifies is empty or null. The `EmptyViewTemplate` can be used to modify the `EmptyView`'s appearance and behavior based on dynamic properties. diff --git a/grid-sdk/maui/data-grid/overview.md b/grid-sdk/maui/data-grid/overview.md index 7042068e..eab8c381 100644 --- a/grid-sdk/maui/data-grid/overview.md +++ b/grid-sdk/maui/data-grid/overview.md @@ -73,7 +73,7 @@ The following table summarizes the globalization support available in this contr Keyboard navigation -DataGrid +DataGrid full-support full-support not-applicable diff --git a/grid-sdk/maui/data-grid/properties.md b/grid-sdk/maui/data-grid/properties.md index 946731f4..30b77384 100644 --- a/grid-sdk/maui/data-grid/properties.md +++ b/grid-sdk/maui/data-grid/properties.md @@ -19,347 +19,347 @@ keywords: .net maui datagrid, .net maui sfdatagrid, syncfusion datagrid, datagri Description - AllowColumnSelection + AllowColumnSelection bool Defines whether column selection is enabled. - AllowDeleting + AllowDeleting bool Defines whether row deletion is enabled. - AllowDiagonalScrolling + AllowDiagonalScrolling bool Defines whether diagonal scrolling is enabled. - AllowDraggingColumn + AllowDraggingColumn bool Defines whether column dragging is enabled. - AllowDraggingRow + AllowDraggingRow bool Defines whether row dragging is enabled. - AllowEditing + AllowEditing bool Defines whether editing is enabled. - AllowGroupExpandCollapse + AllowGroupExpandCollapse bool Defines whether group expand and collapse is enabled. - AllowKeyboardNavigation + AllowKeyboardNavigation bool Defines whether keyboard navigation is enabled. - AllowLoadMore + AllowLoadMore bool Defines whether load more is enabled. - AllowPullToRefresh + AllowPullToRefresh bool Defines whether pull-to-refresh is enabled. - AllowResizingColumns + AllowResizingColumns bool Defines whether column resizing is enabled. - AllowSwiping + AllowSwiping bool Defines whether swiping is enabled. - AllowTriStateSorting + AllowTriStateSorting bool Defines whether tri-state sorting is enabled. - AlternationRowCount + AlternationRowCount int Defines the alternation row count. - AutoExpandGroups + AutoExpandGroups bool Defines whether groups expand automatically. - AutoGenerateColumnsMode + AutoGenerateColumnsMode AutoGenerateColumnsMode Defines how columns are generated automatically. - AutoGenerateColumnsModeForCustomType + AutoGenerateColumnsModeForCustomType AutoGenerateColumnsModeForCustomType Defines how columns are generated for custom types. - AutoGenerateRelations + AutoGenerateRelations bool Defines whether relations are generated automatically. - AddNewRowPosition + AddNewRowPosition DataGridAddNewRowPosition Defines where the add new row appears. - AddNewRowText + AddNewRowText string Defines the add new row text. - AllowRowHoverHighlighting + AllowRowHoverHighlighting bool Defines whether row hover highlighting is enabled. - CanMaintainScrollPosition + CanMaintainScrollPosition bool Defines whether scroll position is maintained after data changes. - CanUseViewFilter + CanUseViewFilter bool Defines whether the view filter can be used. - ColumnWidthMode + ColumnWidthMode ColumnWidthMode Defines how column widths are calculated. - CurrentCell + CurrentCell RowColumnIndex Defines the current cell position. - CurrentRow + CurrentRow object Defines the current row. - DataFetchSize + DataFetchSize int Defines the data fetch size. - DefaultColumnWidth + DefaultColumnWidth double Defines the default column width. - DetailsViewDefaultStyle + DetailsViewDefaultStyle DataGridStyle Defines the default style for details view. - DetailsViewPadding + DetailsViewPadding Thickness Defines the padding used for details view. - EditTapAction + EditTapAction DataGridTapAction Defines the tap action used to begin editing. - EmptyView + EmptyView object Defines the content shown when there is no data. - EmptyViewTemplate + EmptyViewTemplate DataTemplate Defines the template shown when there is no data. - EnableDataVirtualization + EnableDataVirtualization bool Defines whether data virtualization is enabled. - ExpanderColumnWidth + ExpanderColumnWidth double Defines the expander column width. - FrozenColumnCount + FrozenColumnCount int Defines the number of frozen columns. - FrozenRowCount + FrozenRowCount int Defines the number of frozen rows. - GridLinesVisibility + GridLinesVisibility GridLinesVisibility Defines the visibility of grid lines. - GroupingMode + GroupingMode GroupingMode Defines the grouping mode. - HeaderGridLinesVisibility + HeaderGridLinesVisibility GridLinesVisibility Defines the visibility of header grid lines. - HeaderRowHeight + HeaderRowHeight double Defines the header row height. - HorizontalScrollBarVisibility + HorizontalScrollBarVisibility ScrollBarVisibility Defines the horizontal scrollbar visibility. - IndentColumnWidth + IndentColumnWidth double Defines the indent column width. - IsBusy + IsBusy bool Defines whether the grid is busy. - ItemsSource + ItemsSource object Defines the data source. - LoadMorePosition + LoadMorePosition DataGridLoadMorePosition Defines where load more is shown. - LostFocusBehavior + LostFocusBehavior DataGridLostFocusBehavior Defines how the current cell behaves when focus is lost. - MaxSwipeOffset + MaxSwipeOffset double Defines the maximum swipe offset. - NavigationMode + NavigationMode DataGridNavigationMode Defines the navigation mode. - ReuseRowsOnItemsSourceChange + ReuseRowsOnItemsSourceChange bool Defines whether rows are reused when the data source changes. - RowHeaderWidth + RowHeaderWidth double Defines the row header width. - RowHeight + RowHeight double Defines the row height. - SelectedIndex + SelectedIndex int Defines the selected row index. - SelectedRow + SelectedRow object Defines the selected row. - SelectedRows + SelectedRows object Defines the selected rows. - SelectionMode + SelectionMode DataGridSelectionMode Defines the selection mode. - SelectionUnit + SelectionUnit DataGridSelectionUnit Defines whether selection is applied to rows or cells. - ShowColumnWhenGrouped + ShowColumnWhenGrouped bool Defines whether grouped columns remain visible. - ShowDetailsViewIndentCell + ShowDetailsViewIndentCell bool Defines whether the details view indent cell is shown. - ShowRowHeader + ShowRowHeader bool Defines whether row headers are shown. - ShowSortNumbers + ShowSortNumbers bool Defines whether sort order numbers are shown. - SortingGestureType + SortingGestureType DataGridSortingGestureType Defines the gesture used for sorting. - SortingMode + SortingMode DataGridSortingMode Defines the sorting mode. - SourceType + SourceType Type Defines the source type. - ShowToolTip + ShowToolTip bool Defines whether tooltips are shown. - SwipeOffsetMode + SwipeOffsetMode DataGridSwipeOffsetMode Defines how swipe offset is calculated. - TransitionType + TransitionType PullToRefreshTransitionType Defines the pull-to-refresh transition type. - VerticalScrollBarVisibility + VerticalScrollBarVisibility ScrollBarVisibility Defines the vertical scrollbar visibility. - View + View ICollectionViewAdv Defines the underlying collection view. @@ -374,207 +374,207 @@ keywords: .net maui datagrid, .net maui sfdatagrid, syncfusion datagrid, datagri Description - AutoGeneratingColumn + AutoGeneratingColumn DataGridAutoGeneratingColumnEventArgs - Raised when a column is auto generated. + Raised when a column is automatically generated from the data source. - AutoGeneratingRelations + AutoGeneratingRelations DataGridAutoGeneratingRelationsArgs - Raised when relations are auto generated. + Raised when relations are automatically generated for the DataGrid. - CellDoubleTapped + CellDoubleTapped DataGridCellDoubleTappedEventArgs - Raised when a cell is double tapped. + Raised when a cell is double-tapped. - CellEntered + CellEntered DataGridCellEnteredEventArgs Raised when the pointer enters a cell. - CellExited + CellExited DataGridCellExitedEventArgs Raised when the pointer exits a cell. - CellHovered + CellHovered DataGridCellHoveredEventArgs - Raised when a cell is hovered. + Raised when the pointer hovers over a cell. - CellLongPress + CellLongPress DataGridCellLongPressEventArgs - Raised when a cell is long pressed. + Raised when a cell is long-pressed. - CellRightTapped + CellRightTapped DataGridCellRightTappedEventArgs - Raised when a cell is right tapped. + Raised when a cell is right-clicked or right-tapped. - CellTapped + CellTapped DataGridCellTappedEventArgs Raised when a cell is tapped. - CellValueChanged + CellValueChanged DataGridCellValueChangedEventArgs Raised when a cell value changes. - ColumnResizing + ColumnResizing DataGridColumnResizingEventArgs Raised when a column is resized. - CurrentCellActivated + CurrentCellActivated DataGridCurrentCellActivatedEventArgs Raised after the current cell is activated. - CurrentCellActivating + CurrentCellActivating DataGridCurrentCellActivatingEventArgs Raised before the current cell is activated. - CurrentCellBeginEdit + CurrentCellBeginEdit DataGridCurrentCellBeginEditEventArgs Raised before current cell edit begins. - CurrentCellDropDownSelectionChanged + CurrentCellDropDownSelectionChanged CurrentCellDropDownSelectionChangedEventArgs Raised when a drop-down selection changes in the current cell. - CurrentCellEndEdit + CurrentCellEndEdit DataGridCurrentCellEndEditEventArgs Raised after current cell edit ends. - DataGridLoaded + DataGridLoaded EventArgs Raised when the grid is loaded. - DetailsViewCollapsed + DetailsViewCollapsed DataGridDetailsViewCollapsedEventArgs Raised after a details view collapses. - DetailsViewCollapsing + DetailsViewCollapsing DataGridDetailsViewCollapsingEventArgs Raised before a details view collapses. - DetailsViewExpanded + DetailsViewExpanded DataGridDetailsViewExpandedEventArgs Raised after a details view expands. - DetailsViewExpanding + DetailsViewExpanding DataGridDetailsViewExpandingEventArgs Raised before a details view expands. - DetailsViewLoading + DetailsViewLoading DataGridDetailsViewLoadingEventArgs Raised when a details view starts loading. - DetailsViewUnloading + DetailsViewUnloading DataGridDetailsViewUnloadingEventArgs Raised when a details view is unloaded. - GroupCollapsed + GroupCollapsed DataGridColumnGroupChangedEventArgs Raised after a group collapses. - GroupCollapsing + GroupCollapsing DataGridColumnGroupChangingEventArgs Raised before a group collapses. - GroupExpanded + GroupExpanded DataGridColumnGroupChangedEventArgs Raised after a group expands. - GroupExpanding + GroupExpanding DataGridColumnGroupChangingEventArgs Raised before a group expands. - ItemsSourceChanged + ItemsSourceChanged DataGridItemsSourceChangedEventArgs Raised when the items source changes. - QueryColumnDragging + QueryColumnDragging DataGridQueryColumnDraggingEventArgs Raised when column dragging is queried. - QueryRowDragging + QueryRowDragging DataGridQueryRowDraggingEventArgs Raised when row dragging is queried. - QueryRowHeight + QueryRowHeight DataGridQueryRowHeightEventArgs Raised when a row height is queried. - QueryUnboundColumnValue + QueryUnboundColumnValue DataGridUnboundColumnEventArgs Raised when an unbound column value is queried. - QueryUnboundRow + QueryUnboundRow DataGridUnboundRowEventArgs Raised when an unbound row is queried. - SelectionChanged + SelectionChanged DataGridSelectionChangedEventArgs Raised when selection changes. - SelectionChanging + SelectionChanging DataGridSelectionChangingEventArgs Raised before selection changes. - SortColumnsChanged + SortColumnsChanged DataGridSortColumnsChangedEventArgs Raised when sorted columns change. - SortColumnsChanging + SortColumnsChanging DataGridSortColumnsChangingEventArgs Raised before sorted columns change. - SwipeEnded + SwipeEnded DataGridSwipeEndedEventArgs Raised when swipe interaction ends. - SwipeStarting + SwipeStarting DataGridSwipeStartingEventArgs Raised before swipe interaction starts. - Swiping + Swiping DataGridSwipingEventArgs Raised while swiping. - ViewCreated + ViewCreated EventArgs Raised when the view is created. @@ -589,37 +589,37 @@ keywords: .net maui datagrid, .net maui sfdatagrid, syncfusion datagrid, datagri Description - CollapseAllDetailsView() + CollapseAllDetailsView() void Collapses all details views. - ExpandAllDetailsView() + ExpandAllDetailsView() void Expands all details views. - GetSelectedCells() + GetSelectedCells() void Returns the selected cells. - EndEdit() + EndEdit() void Ends the current editing session. - ClearSelection() + ClearSelection() void Clears the current selection. - ScrollToColumnIndex(int) + ScrollToColumnIndex(int) void Scrolls to the specified column index. - ScrollToRowIndex(int) + ScrollToRowIndex(int) void Scrolls to the specified row index. diff --git a/grid-sdk/maui/data-grid/summaries.md b/grid-sdk/maui/data-grid/summaries.md index e709bf5a..bd8630e5 100644 --- a/grid-sdk/maui/data-grid/summaries.md +++ b/grid-sdk/maui/data-grid/summaries.md @@ -1718,7 +1718,7 @@ Each summary has a specific key using which the custom summary renderer can be r Table summary -DataGridTableSummaryCellRenderer +DataGridTableSummaryCellRenderer TableSummary diff --git a/grid-sdk/maui/smartdatagrid/ai-powered-features.md b/grid-sdk/maui/smartdatagrid/ai-powered-features.md index f94c7898..a977cdc7 100644 --- a/grid-sdk/maui/smartdatagrid/ai-powered-features.md +++ b/grid-sdk/maui/smartdatagrid/ai-powered-features.md @@ -1,7 +1,7 @@ --- layout: post title: AI-Powered Features in .NET MAUI Smart Data Grid control | Syncfusion® -description: Learn how to use AI-powered natural language commands in Syncfusion® .NET MAUI Smart Data Grid to interact, analyze, and manipulate data using everyday language. +description: Learn to use AI-powered natural language commands in in Syncfusion® .NET MAUI Smart Data Grid to analyze, interact with, and manage data effortlessly. platform: MAUI control: SfSmartDataGrid documentation: UG diff --git a/grid-sdk/maui/smartdatagrid/overview.md b/grid-sdk/maui/smartdatagrid/overview.md index 45f3a1d4..99df3656 100644 --- a/grid-sdk/maui/smartdatagrid/overview.md +++ b/grid-sdk/maui/smartdatagrid/overview.md @@ -68,7 +68,7 @@ The following table summarizes the globalization support available in this contr Keyboard navigation -Smart DataGrid +Smart DataGrid full-support full-support not-applicable diff --git a/grid-toc.html b/grid-toc.html index 78f1d484..c5c0b72f 100644 --- a/grid-toc.html +++ b/grid-toc.html @@ -3549,6 +3549,7 @@