Creating a Mendix Application with Syncfusion React Components | Syncfusion Blogs
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (175).NET Core  (29).NET MAUI  (208)Angular  (109)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (41)Black Friday Deal  (1)Blazor  (220)BoldSign  (15)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (67)Flutter  (133)JavaScript  (221)Microsoft  (119)PDF  (81)Python  (1)React  (101)Streamlit  (1)Succinctly series  (131)Syncfusion  (920)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (51)Windows Forms  (61)WinUI  (68)WPF  (159)Xamarin  (161)XlsIO  (37)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (151)Chart  (132)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (633)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (41)Extensions  (22)File Manager  (7)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (508)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (43)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (11)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (387)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (19)Web  (597)What's new  (333)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Creating a Mendix Application with Syncfusion React Components

Creating a Mendix Application with Syncfusion React Components

Mendix is one of the easiest low-code app development platforms. It enables us to quickly build, deploy, and operate mobile and web applications.

In this article, we’ll see how to create a Mendix application using Syncfusion React UI components as custom widgets.

Prerequisites

Before getting started, install the prerequisites for creating a Mendix app. 

Create a Mendix app

We are going to create a simple Mendix app using the Syncfusion React Data Grid component as a custom widget. Follow these steps:

  1. Create a test app.
  2. Create a CustomWidget folder in the Mendix app using the following commands:
    mkdir CustomWidgets
    cd CustomWidgets

Add the Syncfusion React Data Grid in the Mendix app

Now that we have created a simple Mendix app, let’s see the steps to add the Syncfusion React Data Grid component to it:

  1. Create a custom Grid widget in the CustomWidget folder using the following command and respond to the Pluggable Widget Generator’s questions:
    yo @mendix/widget Grid
  2. All Syncfusion React components are available in npm. Install the @syncfusion/ej2-react-grids package using the following command:
    npm install @syncfusion/ej2-react-grids --save
  3. Refer to the Mendix documentation on adding the attributes required to add a custom component to the Mendix app. After following the first two steps of the documentation, the Grid.xml file will look as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <widget id="mendix.grid.Grid" pluginWidget="true" needsEntityContext="true" offlineCapable="true"
            supportedPlatform="Web"
            xmlns="http://www.mendix.com/widget/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="http://www.mendix.com/widget/1.0/ ../node_modules/mendix/custom_widget.xsd">
        <name>Grid</name>
        <description>My widget description</description>
        <icon/>
        <properties>
            <propertyGroup caption="Data source">
                <property key="textAttribute" type="attribute">
                    <caption>Attribute (path)</caption>
                    <description/>
                    <attributeTypes>
                        <attributeType name="String"/>
                    </attributeTypes>
                </property>
            </propertyGroup>
        </properties>
    </widget>
  4. Create a new file, components/GridSample.tsx, and add the Data Grid component to it.
    import { Component, ReactNode, createElement } from "react";
    import { ColumnDirective, ColumnsDirective, GridComponent } from '@syncfusion/ej2-react-grids';
    import { data } from './datasource';
     
    export interface GridProps {
        value: string;
    }
     
    export class GridSample extends Component<GridProps> {
        render(): ReactNode {
            return (
                <div>
                    <h2>Grid</h2>
                    <GridComponent dataSource={data}>
                        <ColumnsDirective>
                            <ColumnDirective field='OrderID' width='100' textAlign="Right"/>
                            <ColumnDirective field='CustomerID' width='100'/>
                            <ColumnDirective field='EmployeeID' width='100' textAlign="Right"/>
                            <ColumnDirective field='Freight' width='100' format="C2" textAlign="Right"/>
                            <ColumnDirective field='ShipCountry' width='100'/>
                        </ColumnsDirective>
                    </GridComponent>
                </div>
            );
        }
    }
  5. Now let’s add the data source for the Syncfusion React Data Grid. Create the src/component/datasource.ts file and add the following data to it:\
    export let data: Object[] = [
        {
            OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, OrderDate: new Date(8364186e5),
            ShipName: 'Vins et alcools Chevalier', ShipCity: 'Reims', ShipAddress: '59 rue de l Abbaye',
            ShipRegion: 'CJ', ShipPostalCode: '51100', ShipCountry: 'France', Freight: 32.38, Verified: !0
        },
        {
            OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, OrderDate: new Date(836505e6),
            ShipName: 'Toms Spezialitäten', ShipCity: 'Münster', ShipAddress: 'Luisenstr. 48',
            ShipRegion: 'CJ', ShipPostalCode: '44087', ShipCountry: 'Germany', Freight: 11.61, Verified: !1
        },
        {
            OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, OrderDate: new Date(8367642e5),
            ShipName: 'Hanari Carnes', ShipCity: 'Rio de Janeiro', ShipAddress: 'Rua do Paço, 67',
            ShipRegion: 'RJ', ShipPostalCode: '05454-876', ShipCountry: 'Brazil', Freight: 65.83, Verified: !0
        }];
    
  6. Create the src/component/GridSample.css file and add the CSS styles required for the Grid using the following code:
    @import "../node_modules/@syncfusion/ej2-base/styles/material.css";
    @import '../../node_modules/@syncfusion/ej2-buttons/styles/material.css'; 
    @import '../../node_modules/@syncfusion/ej2-calendars/styles/material.css'; 
    @import '../../node_modules/@syncfusion/ej2-dropdowns/styles/material.css'; 
    @import '../../node_modules/@syncfusion/ej2-inputs/styles/material.css'; 
    @import '../../node_modules/@syncfusion/ej2-navigations/styles/material.css';
    @import '../../node_modules/@syncfusion/ej2-popups/styles/material.css';
    @import '../../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
    @import '../../node_modules/@syncfusion/ej2-notifications/styles/material.css';
    @import "../../node_modules/@syncfusion/ej2-react-grids/styles/material.css";
    
  7. Import the GridSample.css style file in the src/component/GridSample.tsx file. Refer to the following code example:
    import { Component, ReactNode, createElement } from "react";
    import './GridSample.css';
    import { ColumnDirective, ColumnsDirective, GridComponent } from '@syncfusion/ej2-react-grids';
    import { data } from './datasource';
     
    export interface GridProps {
        value: string;
    }
     
    export class GridSample extends Component<GridProps> {
        render(): ReactNode {
            return (
                <div>
                    <h2>Grid</h2>
                    <GridComponent dataSource={data}>
                        <ColumnsDirective>
                            <ColumnDirective field='OrderID' width='100' textAlign="Right"/>
                            <ColumnDirective field='CustomerID' width='100'/>
                            <ColumnDirective field='EmployeeID' width='100' textAlign="Right"/>
                            <ColumnDirective field='Freight' width='100' format="C2" textAlign="Right"/>
                            <ColumnDirective field='ShipCountry' width='100'/>
                        </ColumnsDirective>
                    </GridComponent>
                </div>
            );
        }
    }
    
  8. In the terminal, use the following code to run the created Grid widget. This will update the changes made in the src folder to the dist folder.
    npm run start
  9. Our Syncfusion React Data Grid is now ready to render. To synchronize the Grid with the Mendix app, refer to the seventh step in this documentation. After configuring the custom Data Grid widget, it will appear in the Widgets area of the Toolbox. Refer to the following image.Custom Data Grid widget
  10. Drag and drop the created custom Data Grid widget in the layout.Drag and drop the created custom Data Grid widget in the layout
  11. Click Design mode. The Data Grid will display the data we have provided in the data source.Click on the Design Mode
  12. Click Run locally and navigate to the following URL to see the output in the browser.
    http://localhost:8080/

    The output should look like the following image:

    Mendix Application with Syncfusion React Data Grid
    Mendix Application with Syncfusion React Data Grid

GitHub reference

Check out the complete example code on GitHub for creating a Mendix app with the Syncfusion React Data Grid.

Conclusion

Thanks for reading! In this blog, we have seen how to create a Mendix app and integrate the Syncfusion React Data Grid. Following these steps, you can also use other Syncfusion React components as custom widgets in Mendix apps. Try out the guide provided in this blog and leave your feedback in the comments below!

The new version of Essential Studio is available for current customers from the License and Downloads page. If you are not a Syncfusion customer, you can try our 30-day free trial to check out our available features.

You can contact us through our support forum, support portal, or feedback portal. We are always happy to assist you!

Related blogs

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed