Questions tagged [sfdatagrid]
26 questions
2
votes
1 answer
adding button in sfdatagrid get whole row details onTap
I am adding SfDataGrid to my web app in Flutter Every thing works fine only one issue i am facing as below.
Below is my DataSourceMethod for SfDataGrid`
class EmployeeDataSource extends DataGridSource {
EmployeeDataSource({required List…

Vishal Parmar
- 615
- 4
- 31
1
vote
2 answers
SfDataGrid overlapping with existing content using MAUI and .NET 7
I've created a table using the SfDataGrid plugin as well as a standard Stacklayout template to load other data.
I've contained both in a . Both load, however, they load on top of each other / under the table
The general Hierarchy of the page…

Adam Gong
- 41
- 5
1
vote
1 answer
Flutter - Navigating to detail page on a sfdatagrid row selection (table has data fromfirestore)
I managed to populate a SfDatagrid table with data from firestore, this is the link to the code:
https://github.com/SyncfusionExamples/How-to-load-data-from-firestore-to-Flutter-DataTable-SfDataGrid-
This code is running perfectly and I have the…

Ageu Chamene
- 33
- 5
1
vote
1 answer
Is there any event which get triggered when an item is added to SfDataGrid in Xamarin Forms?
I have a SfDataGrid in my Xamarin code base and in that SfDataGrid, there is an Entry for each row. I have to set Focus to the Entry when I add an item. I add Items to the SfDataGrid via a popup.
So, are there any events exists to do that? if so,…

ZamrinJameel
- 43
- 9
0
votes
1 answer
How do I get a selected row count of a data grid even if nothing is selected?
I'm using an SfDataGrid and I've added a context menu to it. The problem I'm having is if the user pulls up the context menu and makes a selection, with no selected rows in the datagrid, the program will fail. So how do I check if a row has been…

BobG
- 9
- 1
0
votes
2 answers
How do I update a specific cell in a SfDataGrid control?
I'm using a data grid control from Syncfusion in my .NET MAUI application, and now I want to update a singe cell that the user clicked on. In the XAML code I have this:

BobG
- 9
- 1
0
votes
2 answers
How do I get the value of e.RowColumnIndex of a CellLongPress event in a SfDataGrid control?
I found a DatGrid control from Syncfusion and set it up like this:

BobG
- 9
- 1
0
votes
1 answer
Fetching Data Faster in Firestore
I am Using Firestore with flutter and trying to fetch data from sub-collection.
I am using async and await to fetch the data so the data fetching is taking around 8-10 seconds.
Here is the example of Structure of my…

sadil manjiyani
- 21
- 5
0
votes
1 answer
Can´t center text in Syncfusion GridSummaryColumn
I'm trying without sucess to center or position in other ways the text in the summary row of my Syncfusion SfDataGrid in WPF. I have the following structure:
...
…

Rafael Leonardi
- 62
- 8
0
votes
0 answers
Flutter SFdatagrid on editing the table scrolls to the top
The problem is that If i have few rows in the datagrid it is all ok, but if I have lots of them and I scroll to go to the latest rows when I tap to edit a cell, the keyboard correctly appear but the table scroll to the top. I want the table don't…

nvrm22
- 61
- 4
0
votes
1 answer
Flutter Syncfusion SfDataGrid Problem with single tap editing
The problem is that when I try to edit a cell I need to use 2 tap, first tap to select and the second to edit. The Problem is that I config
editingGestureType: EditingGestureType.tap
as suggests documentation.
I want that editing appear at the…

nvrm22
- 61
- 4
0
votes
0 answers
In Syncfusion Flutter DataGrid how can I listen to keyboard events in mobile
I want to move to next cell on same row while editing inside a SfDataGrid, so I follow How to move to next cell example here.
So I define my own EditorGridSelectionManager like this:
import 'package:flutter/material.dart';
import…

Daniel Ardison
- 502
- 4
- 18
0
votes
1 answer
Apply checkBox in flutter with SFDataGrid
It's so difficult to find some documentations for flutter on internet, you are my last chance ahah
In my example, i create a simple grid with some data.
So, i want to use checkbox in flutter with SFDataGrid, my goal is :
select rows
if a row is…

Ant3xes
- 51
- 8
0
votes
1 answer
How to populate Syncfusion sfDataGrid with nested view?
I have been trying for hours to manually populate the grid with a nested view, I have read the documentation but for some reason I can't get it to work. I can do it by setting the AutoGenerateRelations and AutoGenerateColumns to true. But I need to…

RicEspn
- 123
- 2
- 4
- 12
0
votes
2 answers
I want to add a checkbox in the header of a checkbox column in an SFDataGrid in C#
I am having trouble adding a checkbox that can check and uncheck all checkboxes in that column in a Syncfusion SFDataGrid in C#. This is my XAML code:
…