How to Load JSON Data to a Flutter DataGrid

Поделиться
HTML-код
  • Опубликовано: 30 июл 2024
  • Learn how easily you can load JSON data to a Syncfusion Flutter DataGrid. This video explains how to add a Syncfusion Flutter DataGrid to a flutter application, fetch the JSON data from an online source and convert it to a list collection. It also explains how to create the rows using the DataGridSource class using the created list collection, and then bind the rows to the DataGrid.
    [00:00] Introduction
    [01:05] Add a DataGrid to the app
    [02:03] Create JSON datasource
    [02:51] Convert JSON datasource to a list
    [04:20] Convert the list to DataGridRows
    [06:50] Create columns to show in DataGrid
    [07:06] Bind datasource to DataGrid
    Example project: bit.ly/2U4v4oy
    SYNCFUSION FLUTTER DATAGRID
    -------------------------------------------------
    Product overview: bit.ly/2U3bSri
    Documentation: bit.ly/3hAwaRM
    API documentation: bit.ly/2Qw1JBa
    Examples-GitHub: bit.ly/3cG5f57
    Tutorial videos: bit.ly/2U2680Z
    Demo-web: bit.ly/3caH7GO
    Demo-Android Play Store: bit.ly/3cAX75x
    Demo-Apple App Store: apple.co/2vP4aVa
    Download free trial: bit.ly/3kj2lac
    Package in pub.dev: bit.ly/3h9DFzf
    SUBSCRIBE
    ----------------
    Syncfusion on RUclips: bit.ly/syncfusionyoutube
    Sign up to receive email updates: bit.ly/syncfusionemail
    SOCIAL COMMUNITIES
    ---------------------------------
    Facebook: / syncfusion
    Twitter: / syncfusion
    LinkedIn: / syncfusion
    #flutterdatagrid #datagrid #loadjson
  • ХоббиХобби

Комментарии • 39

  • @SyncfusionInc
    @SyncfusionInc  3 года назад

    Thanks for watching! If your question requires a fast response, please create a support ticket here:
    www.syncfusion.com/support/directtrac/incidents/newincident
    We answer tickets from 5:30 PM ET Sunday to 3:30 PM ET Friday.

  • @eyimofeokikiola5031
    @eyimofeokikiola5031 Год назад

    Thank you, you’re a life saver struggled with pulling data from Firestore

    • @SyncfusionInc
      @SyncfusionInc  Год назад

      Hello,
      We ae glad that you have found it helpful.

  • @asrulazmir9097
    @asrulazmir9097 2 года назад

    How do I combine two JSON file into single List and create a table? I need to put these JSON together and map it into a single table. These two JSON have same rows count.

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      Hello Asrul,
      Thank You for reaching out. Please refer to the below link, and let us know if you have any questions. flutter.syncfusion.com/#/datagrid/data-source/json

  • @spoiled_kitten
    @spoiled_kitten 2 года назад

    Hi there! Loved the tutorial! Was quick and easy to understand! Just one thing tho, I would like to have a button on there which will pass the product name onto another class (I will be doing another request with that,) any idea how? Thanks!

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      Hi,
      We are glad that you have found it helpful.
      For the fastest response to technical questions, we recommend opening a support ticket here,
      www.syncfusion.com/support/directtrac/incidents/newincident
      We will check on this with our team and post a response but it will take a little time.
      Thanks for your question!

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      Please provide more details about your requirement, and it will help to understand and provide a prompt solution at the earliest.
      Do you want to pass the selected row to another class?
      Do you want to perform a CRUD operation in DataGrid?

    • @spoiled_kitten
      @spoiled_kitten 2 года назад

      @@SyncfusionInc I wish to be able to pass the product name to another function as it will be used to generate another JsON get request.

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      We suspect that you are trying to get cell value when tapping the grid cell. If yes, you can get the cell value from the onCellTap callback.
      Refer to the following KB article: www.syncfusion.com/kb/12895/how-to-get-the-cell-value-when-tapping-the-cells-in-flutter-datatable-sfdatagrid
      If we misunderstood anything, please provide more details about your requirement.

  • @yupickmyusername
    @yupickmyusername Год назад

    Can you show us how can we combine sfdatagrid and sfdaterange, for example we have data from firestore with a date, and when user pick a daterange, data in the table will only shows data between the date range

    • @SyncfusionInc
      @SyncfusionInc  Год назад

      Hi,
      Thank you for reaching out.
      To fulfill your requirement, you can implement programmatic filtering by assigning the appropriate value to the corresponding Date column. You can then apply the filter programmatically using the selected range of dates in the Date range picker button. Please refer to the provided code snippet for further details.
      @override
      Widget build(BuildContext context) {
      return Scaffold(
      appBar: AppBar(
      title: const Text('Flutter DataGrid Sample'),
      ),
      body: Column(
      children: [
      Row(
      mainAxisAlignment: MainAxisAlignment.center,
      children: [
      Container(
      margin:
      const EdgeInsets.symmetric(vertical: 20, horizontal: 20),
      child: ElevatedButton(
      onPressed: () async {
      DateTimeRange? dateRange = await showDialog(
      context: context,
      builder: (context) => AlertDialog(
      shape: const RoundedRectangleBorder(
      borderRadius:
      BorderRadius.all(Radius.circular(10.0))),
      content: SizedBox(
      height: 400,
      width: 400,
      child: DateRangePickerDialog(
      currentDate: DateTime.now(),
      firstDate: DateTime(2020, 12, 1),
      lastDate: DateTime(2023, 1, 5)),
      )));
      if (dateRange != null) {
      var startDate = dateRange.start;
      var endDate = dateRange.end;
      if ((dataGridSource.filterConditions.keys
      .contains('DOJ'))) {
      dataGridSource.clearFilters(columnName: 'DOJ');
      }
      dataGridSource.addFilter(
      'DOJ',
      FilterCondition(
      type: FilterType.greaterThanOrEqual,
      value: startDate,
      filterOperator: FilterOperator.and,
      filterBehavior: FilterBehavior.strongDataType,
      ),
      );
      dataGridSource.addFilter(
      'DOJ',
      FilterCondition(
      type: FilterType.lessThanOrEqual,
      value: endDate,
      filterOperator: FilterOperator.and,
      filterBehavior: FilterBehavior.strongDataType,
      ),
      );
      }
      },
      child: const Text('Pick a Date Range')),
      ),
      ElevatedButton(
      onPressed: () {
      dataGridSource.clearFilters(columnName: 'DOJ');
      },
      child: const Text('Clear Filter From DOJ'),
      ),
      ],
      ),
      Expanded(
      child: SfDataGrid(
      source: dataGridSource,
      columns: getColumns,
      columnWidthMode: ColumnWidthMode.fill,
      ),
      ),
      ],
      ),
      );
      }

  • @muhammadlabeeb4101
    @muhammadlabeeb4101 2 года назад +1

    NoSuchMethodError (NoSuchMethodError: Class '_InternalLinkedHashMap' has no instance method 'cast' with matching arguments.
    Please help

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      Hi Mohammad Labeeb,
      Thank you for reaching out to us. We checked the sample at our end and it is working fine. Can you please tell us if you have tried with the following sample at your side?
      github.com/SyncfusionExamples/how-to-load-json-data-to-a-flutter-datagrid.

  • @snn1514
    @snn1514 2 года назад

    can you include button inside each of the row using DataGrid?

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      Hello,
      Thank you for reaching out. Our team will be providing a sample for this in the corresponding forum, www.syncfusion.com/forums/174217/how-to-add-a-button-inside-each-column
      Please let us know if we can be of any further assistance.

  • @mubasheransari498
    @mubasheransari498 2 года назад

    How can i use this package and parse json like this that i have two arrays in my response??

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      Hi Mubasher,
      Thank you for watching our video.
      We have given the example in GitHub, github.com/SyncfusionExamples/how-to-load-json-data-to-a-flutter-datagrid
      Please check this example and let us know if you have any questions.

  • @viralcreation4500
    @viralcreation4500 2 года назад

    I'm having data from a get api and the json is nested and the data is in the "Table" key i want to show the data in data grid and the video provided by you on youtube isn't working so please help me how to do so

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      Hello,
      We can look into this and get back to you but response times via our RUclips videos are slower than our regular support. Have you opened a support ticket or tried our live chat? www.syncfusion.com/support/directtrac/incidents/newincident
      If you have a retail or flat license, you also have access to our support chat.

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      Please refer to this KB to populate DataGrid with JSON API.
      KB link: www.syncfusion.com/kb/12646/how-to-populate-flutter-datatable-sfdatagrid-with-json-api

    • @viralcreation4500
      @viralcreation4500 2 года назад

      @@SyncfusionInc thank you so much for your time

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      It's our pleasure! Please let us know if we can be of further assistance. If you open a support ticket, we can track your needs and get back to you faster with sample code or other items.

  • @kevinnarvaez1921
    @kevinnarvaez1921 Год назад

    Hi, How can I export the data to excel?

    • @SyncfusionInc
      @SyncfusionInc  Год назад

      Hello Kevin,
      Thank you for reaching out.
      We have already published the KB article about "How to export Flutter SfDataGrid to Excel document and save it as file." Please refer to the following KB document.
      KB Document: www.syncfusion.com/kb/12892/how-to-export-flutter-datatable-sfdatagrid-to-excel-document-and-save-it-as-file
      Also, we have already provided detailed information about the export to Excel in the following UG document.
      UG Document: help.syncfusion.com/flutter/datagrid/export-to-excel
      We hope this helps.

  • @sageat1242
    @sageat1242 Год назад

    how can we display realtime database firebase in the datagrid?

    • @SyncfusionInc
      @SyncfusionInc  Год назад

      Hi Sage,
      We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots.
      www.syncfusion.com/support/directtrac/incidents/newincident
      We will check on this with our team and post a response but it will take a little time.
      Thanks for your question!

    • @SyncfusionInc
      @SyncfusionInc  Год назад

      Please refer to this KB article to load data from Firebase to Flutter DataGrid.
      KB Document: www.syncfusion.com/kb/12766/how-to-load-data-from-firebase-to-flutter-datatable-sfdatagrid

  • @AhmadRifai-ey4uo
    @AhmadRifai-ey4uo 7 месяцев назад

    Is SfDataGrid free/opensource or we have to pay it? Can u show how to styling last row in datatable where the data get from JSON? I have successfull to load data with JSON API using datatable but can not figure out how to styling las row different from other

    • @SyncfusionInc
      @SyncfusionInc  7 месяцев назад

      Hello,
      To customize the row cell style, adjust the required style within the Text widget loaded in the DataGridSource.pulse.ly/mrykwvktfn method. Within this method, determine if the row is the last one by using the indexOf method from the DataGridSource.pulse.ly/tjl6k2dihj property. When identifying the last row, set a custom style using the Text.pulse.ly/jrfhs5g0z3 widget and modify the last row's background color via the DataGridRowAdapter.pulse.ly/co3o6mviqd property.
      Sample Link: syncfusion.pulse.ly/c31c6d8zqd
      For comprehensive guidance on styling, please consult our User Guide document, where you'll find extensive details and examples on this topic, aiding in the implementation of desired styles.

    • @SyncfusionInc
      @SyncfusionInc  6 месяцев назад

      Hi,
      You need to have a paid license for commercial usage.

  • @thisaragunasekara924
    @thisaragunasekara924 3 года назад

    Please provide the json data link

    • @SyncfusionInc
      @SyncfusionInc  3 года назад +2

      Hi Thisara,
      Please refer to the following link,
      ej2services.syncfusion.com/production/web-services/api/Orders
      Also please refer to the following KB link to populate Flutter DataTable with JSON API,
      www.syncfusion.com/kb/12646/how-to-populate-flutter-datatable-sfdatagrid-with-json-api
      I hope the above is useful to you.
      Thank you.

  • @kayquebritoo
    @kayquebritoo 2 года назад

    font code video aula?

    • @SyncfusionInc
      @SyncfusionInc  2 года назад

      Hello Kayque,
      We don't quite understand your question. Could you please be more specific? Are you looking for the font we have in the app?

  • @thisaragunasekara924
    @thisaragunasekara924 3 года назад

    Hii you have any facebook community or something then we can ask questions and communicate with you thanks

    • @SyncfusionInc
      @SyncfusionInc  3 года назад +1

      Hi Thisara,
      Thank you for reaching out. You can chat via support page on our website by using the following link,
      www.syncfusion.com/forums/flutter

    • @thisaragunasekara924
      @thisaragunasekara924 3 года назад

      Ok thanks upload more flutter new version videos

    • @SyncfusionInc
      @SyncfusionInc  3 года назад

      Hi Thisara,
      Thank you. We will pass this along to our Syncfusion team on uploading flutter videos.