jQWidgets
  • Documentation
  • License and Pricing
  • Services
  • Community
    • Forums
    • Blogs
    • Follow Us
    • Client Login
  • About
    • About Us
    • Contact Us
    • FAQ
  • Demo
  • Download

React UI Components

  • Javascript/jQuery
  • Angular
  • Vue
  • React
  • Custom Elements
  • ASP .NET MVC
  • Showcase Demos
  • Responsive Design
  • Theme Builder
Show Demo List

React UI Components

  • jqxGrid
  • jqxTabs
  • jqxTextArea
  • jqxWindow
  • jqxKnob
  • jqxResponsivePanel
  • jqxChart
  • jqxMenu
  • jqxInput
  • jqxDocking
  • jqxGauge
  • jqxNavBar
  • jqxPivotGrid
  • jqxTree
  • jqxPasswordInput
  • jqxNotification
  • jqxBarGauge
  • jqxSortable
  • jqxScheduler
  • jqxNavigationBar
  • jqxMaskedInput
  • jqxPopOver
  • jqxExpander
  • jqxLoader
  • jqxTreeGrid
  • jqxListMenu
  • jqxComplexInput
  • jqxTooltip
  • jqxRating
  • jqxDraw
  • jqxDataTable
  • jqxToolBar
  • jqxFormattedInput
  • jqxColorPicker
  • jqxRangeSelector
  • jqxDragDrop
  • jqxTreeMap
  • jqxComboBox
  • jqxNumberInput
  • jqxScrollView
  • jqxSlider
  • jqxPanel
  • jqxEditor
  • jqxDropDownList
  • jqxDateTimeInput
  • jqxProgressBar
  • jqxScrollBar
  • jqxValidator
  • jqxRibbon
  • jqxListBox
  • jqxCalendar
  • jqxFileUpload
  • jqxSplitter
  • jqxValidator
  • jqxLayout
  • jqxButtons
  • jqxKanban
  • jqxBulletChart
  • jqxDockingLayout

jqxKanban

  • Default Functionality
  • Header Template
  • Item Template
  • Kanban Editing
  • Multiple Kanbans
  • Add, Remove, Update Items
  • Disable Collapse
  • Kanban Events
  • Kanban Fluid Size
  • Right to Left Layout
Theme:
Light
  • Demo
  • App.htm
  • App.js
ReactJS Kanban demo. Multiple Kanban widgets
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title id='Description'>
        ReactJS Kanban demo. Multiple Kanban widgets
    </title>
	<meta name="description" content="This React Kanban demo showcases how to add multiple kanbans"/>	
	
    <link rel="stylesheet" href="../jqwidgets/styles/jqx.base.css" type="text/css" />
    <script type="text/javascript" src="../jqwidgets/jqxcore.js"></script>
    <script type="text/javascript" src="../jqwidgets/jqxsortable.js"></script>
    <script type="text/javascript" src="../jqwidgets/jqxkanban.js"></script>
    <script type="text/javascript" src="../jqwidgets/jqxsplitter.js"></script>
    <script type="text/javascript" src="../jqwidgets/jqxdata.js"></script>
    <script type="text/javascript" src="../scripts/demos.js"></script>

    <style>
        #kanbanBox1 {
            width: 400px;
            height: 400px;
            float: left;
            padding: 2px;
        }

        #kanbanBox2 {
            width: 400px;
            height: 400px;
            float: left;
            padding: 2px;
        }

        #outerBox1 {
            float: left;
            padding: 5px;
            margin: 2px;
            background-color: #6bbd49;
            color: #fff;
        }

        #outerBox2 {
            color: #fff;
            float: left;
            padding: 5px;
            margin: 2px;
            background-color: #5dc3f0;
        }
    </style>

</head>
<body>
    <div class="example-description" style="margin-bottom:3em">
        ReactJS Kanban demo. Multiple Kanban widgets
    </div>
    <div id="app"></div>
    <script src="../build/kanban_multiplekanbans.bundle.js"></script>
</body>
</html>

import React from 'react';
import ReactDOM from 'react-dom';

import JqxKanban from '../../../jqwidgets-react/react_jqxkanban.js';

class App extends React.Component {
    render() {
        let staff = [
            { id: 0, name: 'No name', image: '../jqwidgets/styles/images/common.png', common: true },
            { id: 1, name: 'Andrew Fuller', image: '../images/andrew.png' },
            { id: 2, name: 'Janet Leverling', image: '../images/janet.png' },
            { id: 3, name: 'Steven Buchanan', image: '../images/steven.png' }
        ];
        let kanbanColumns = [
            { text: 'Backlog', dataField: 'new', access: 'none', maxItems: 5 },
            { text: 'In Progress', dataField: 'work', access: 'none', maxItems: 5 },
            { text: 'Done', dataField: 'done', access: 'none', maxItems: 5, collapseDirection: 'right' }
        ];
        let kanbanSourceConnected1 = [
            { id: 3, status: 'done', text: 'Combine Orders', tags: 'orders, combine', color: '#5dc3f0', resourceId: 3 },
            { id: 4, status: 'work', text: 'Change Billing Address', tags: 'billing', color: '#6bbd49', resourceId: 1 },
            { id: 5, status: 'new', text: 'One item added to the cart', tags: 'cart', color: '#5dc3f0', resourceId: 3 },
            { id: 6, status: 'work', text: 'Login 404 issue', tags: 'issue, login', color: '#6bbd49' }
        ];
        let kanbanSourceConnected2 = [
            { id: 0, status: 'new', text: 'State opened does not contain items', tags: 'state, open', color: '#5dc3f0', resourceId: 1 },
            { id: 1, status: 'done', text: 'Patch #2043', tags: 'patch', color: '#6bbd49', personId: 2 },
            { id: 2, status: 'work', text: 'Change payment method', tags: 'payment', color: '#6bbd49', resourceId: 2 }
        ];
        return (
            <div>
                <div id='outerBox1'>
                    <h2>Team 1</h2>
                    <div id='kanbanBox1'>
                        <JqxKanban ref='kanbanOne'
                            width={400} height={400} columns={kanbanColumns} resources={staff}
                            source={kanbanSourceConnected1} connectWith={'#kanbanBox2'}
                        />
                    </div>
                </div>
                <div id='outerBox2'>
                    <h2>Team 2</h2>
                    <div id='kanbanBox2'>
                        <JqxKanban ref='kanbanOne'
                            width={400} height={400} columns={kanbanColumns} resources={staff}
                            source={kanbanSourceConnected2} connectWith={'#kanbanBox1'}
                        />
                    </div>
                </div>
            </div>
        )
    }
}

ReactDOM.render(<App />, document.getElementById('app'));
jQWidgets
  • Facebook
  • Youtube
  • Google +
  • Demo
  • Download
  • Documentation
  • License and Pricing
  • Services
  • Forums
  • About
  • Terms of Use
  • Privacy Policy
  • Contact Us

jQWidgets © 2011-2019. All Rights Reserved.