Home > D > Datta Able React Redux Admin Template Review

$29

Datta Able React Redux Admin Template

ThemeForest Rating | 3.67
Datta Able React Admin Template Datta Able React Reducx Admin Template is made using React + Redux Framework. It fully support Bootstrap 4 framework for achieve any easy or complex dashboard need. Datta Able is the most flexible react redux admin template, as we have put most of efforts to getting bug free code, easy to use its structure, added 1000+ UI components etc…to make Datta Able React version a great admin template. Features Here are top features comes with Datta Able admin theme. We’ve higlight few of theme in below points. 20+ Page layouts (+counting) Live customizer to choose what setting your project desire Well structured code styles Fully responsive and browser tested design Eye catchy color styles Made for perfor... READ MORE
Review Left On 04/10/2022
Kragh
Hello I’m having problems deploying my react admin site. I have tried to publish on heroku and AWS S3 but I keep getting this: Failed to load resource: the server responded with a status of 404 (Not Found) react-dom.production.min.js:198 ChunkLoadError: Loading chunk 0 failed. (error: http://new.s3-website-eu-west-1.amazonaws.com/dashboard/static/js/0.4e8bcb60.chunk.js) at Function.n.e (http://new.s3-website-eu-west-1.amazonaws.com/:2:7523) at http://new.s3-website-eu-west-1.amazonaws.com/static/js/53.8b0e333c.chunk.js:1:26589 at http://new.s3-website-eu-west-1.amazonaws.com/static/js/40.e5ad4ad9.chunk.js:2:115261 at Pi (http://new.s3-website-eu-west- VM13:2 Uncaught (in promise) ChunkLoadError: Loading chunk 0 failed. I don’t know if it is a home page domain issue in the package.json or an issue with the code in the theme somewhere? Can you please help me.
Review Left On 04/11/2022
Ultann Tipold
Hi Team I am looking to integrate a calendar into our Datta Able portal and have a few questions: 1) We understand that there is a Full Calendar view for Datta Able. However, how do we go about adding calendar events for specific time slots of a given day? 2) In the view mode of the Full Calendar, I am not able to click on each event to see further details or modify (or delete) the details (such as timing) of the event. 3) Are we able to add specific notes for each calendar event? Your response is much appreciated. Thank you.
Review Left On 04/13/2022
Japheth Schleisman
Hey, I’m considering purchasing your Datta Able Admin Template. I have a couple of questions. - Do I receive all of the source files when I purchase a license? - Will I be able to edit the code so I can make API calls from services that are specific to my business?
Review Left On 04/24/2022
Noli Fejes
Hello, could you help me? there is an issue with one of the dependency when I copy either the skeleton version or the full version and do the yarn install and after that yarn start: Failed to compile ./src/App/layout/AdminLayout/app.scss (./node_modules/css-loader/dist/cjs.js??ref-6-oneOf-5-1\\./node_modules/resolve-url-loader??ref-6-oneOf-5-3\\./src/App/layout/AdminLayout/app.scss) Module not found: Can’t resolve ‘react-tag-autocomplete/example/styles.css’ in ’/[path removed]/src/App/layout/AdminLayout’ This error occurred during the build time and cannot be dismissed.
Review Left On 04/25/2022
Dachy
Hi, there is an issue with one of the dependency when I copy either the skeleton version or the full version and do the yarn install and after that yarn start: Failed to compile ./src/App/layout/AdminLayout/app.scss (./node_modules/css-loader/dist/cjs.js??ref-6-oneOf-5-1./node_modules/resolve-url-loader??ref-6-oneOf-5-3./src/App/layout/AdminLayout/app.scss) Module not found: Can’t resolve ‘react-tag-autocomplete/example/styles.css’ in ’/[path removed]/src/App/layout/AdminLayout’ This error occurred during the build time and cannot be dismissed.
Review Left On 04/28/2022
Ehrlich
I need a refund! Everything is legacy and there are endless issues with deprecated dependencies.
Review Left On 05/02/2022
Atalanta
Hello. I’ve sent a support questions, but they simple doesn’t works. The discord link is invalid and there’s no chance from receiving any answer from your team. I just have a basic question: I just need to use a Private Route, to redirect the users who are not logged in to the first page (very basic stuff… I’m new in react and usually I use a PrivateRoute function (I’ve copied bellow) – that is not possible in your routes.js configuration) Please guys, tell me how to implement it with your template, ok? import React from ‘react’; import { Route, Redirect } from ‘react-router-dom’; import { connect } from ‘react-redux’; const PrivateRoute = ({ component: Component, auth, ...rest }) => ( { if (auth.isLoading) { return Loading… ; } else if (!auth.isAuthenticated) { return ; } else { return ; } }} /> ); const mapStateToProps = state => ({ auth: state.auth }); export default connect(mapStateToProps)(PrivateRoute);
Review Left On 05/09/2022
Brindell Daricek
Hi there, I’m using this theme on my job and I had some problems with the Landing page (/default/landing), because, it’s not possible to add interaction inside this, I mean Modal windows or Collapse menu. In fact, the Mobile menu button doesn’t work, even in the live preview (http://html.codedthemes.com/datta-able/react/default/landing), something is missing or wrong. I hope you can help me to get the error and solve it. Kind regards
Review Left On 07/21/2022
Eimile Belsito
Hi guys. I’ve bought the theme with support, but when I try to access it I receive a message from Discord telling me the ‘invite link’ is invalid. Please take a look on it. I’ve sent my purchase code and questions by email, but certainly, the question could be useful for other users. Well, my problem is quite basic. Your template is great and I would like to use it in a personal project. The problem occurs when I try to use the Combine Redux function. I basically wrote a combine reducers function and tried to register it on store at /src/index: import { combineReducers } from "redux"; import {reducer as formReducer} from 'redux-form'; import reducer from "../store/reducer"; import tasksReducer from "./taskReducer"; import textReducer from "./textReducer"; export default combineReducers({ form: formReducer, tasks: tasksReducer, text: textReducer, reducer }); and changed the src/index.js import React from 'react'; import ReactDOM from 'react-dom'; import { createStore } from 'redux'; import {Provider} from 'react-redux'; import {BrowserRouter} from 'react-router-dom'; import App from './App/index'; import * as serviceWorker from './serviceWorker'; import reducer from './store/reducer'; import rootReducer from './reducers' ## Added, from reducers/index.js ## import config from './config'; const store = createStore( rootReducer, ## Changed the reducer here ## window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()); const app = ( {/* basename="/datta-able" */} ); The states are being registered with the redux, with no problems. But the page isn’t rendered anymore. I receive the error below: TypeError: Cannot read property ‘findIndex’ of undefined NavCollapse.render src/App/layout/AdminLayout/Navigation/NavContent/NavCollapse/index.js:49 46 | let navLinkClass = [‘nav-link’]; 47 | 48 | let navItemClass = [‘nav-item’, ‘pcoded-hasmenu’]; > 49 | const openIndex = isOpen.findIndex(id => id === this.props.collapse.id); | ^ 50 | if (openIndex > -1) { 51 | navItemClass = [...navItemClass, ‘active’]; 52 | if (this.props.layout !== ‘horizontal’) { How should I deal with it? I thank your attention and reply, My best regards
Review Left On 08/24/2022
Blodget
Hello, First of all thank you for your interest in our product. About your query, here is our detailed answer 1) Yes, you will receive all of the source files of Datta Able React Template. If you need the design file i.e. Sketch, PSD then you will do request to us we will send it out externally. 2) Yes, you can edit your code whatever you need for your end product. If your End Product is Saas based then you need the Extended License for that. Other than that you will use the regular license. Let us know if you have any other question(s) Thank You - CodedThemes
Review Left On 09/09/2022
Shelburne
Hi, I see there was a change in the multiselect visualization in http://html.codedthemes.com/datta-able/bootstrap/default/form-select.html But I see there is no update in the template code. Is going to be an update on the code? how can I get it? Thank you

Leave A Review For For Datta Able React Redux Admin Template


Useful Links