Discussion on Lorax - Angular 20+ Material Design Admin Template

Discussion on Lorax - Angular 20+ Material Design Admin Template

Cart 637 sales
Recently Updated
Well Documented

redstartheme supports this item

Supported

This author's response time can be up to 1 business day.

105 comments found.

I could not update which you did for the latest version. Need full code for deploying.. I was taken 35MB.. there is no changes and no deploying

please share your email address I will email you solutions and template will be update today. Thank you

Now updated template from themeforest account error solve…

Hallo I getting error of echart component,. the error is ” legend: { orient: “vertical”, x: “right”, y: “bottom”, data: [“Allocated Budget”, “Actual Spending”] }, “

because in the node_module variable legend is “legend?: EChartOption.Legend”

please help me,.

Hi, as you can see in live demo http://www.radixtouch.in/templates/admin/loraxangular/source/angularlight/#/charts/echart

there is no error in echart page, also I checked in code it working fine. If you still face error please email us your code on redtartheme@gmail.com so we can check your code from our side.

Thank you.

Sorry, when I try to send email, the email is invalid (redtartheme@gmail.com), is there another email? Thank’s

Hi. I am facing the following issue: I am creating the menu dynamic. I am including it using the $(“idMenu”).html(htmlMenu) when i included him at the first time, the toggle option didn’t work. but when I refresh the page it starts to work.

Hi, Please share your email address so I can try to solve it and share with you.

Thank you.

Good Morning.

I request the reversal of the purchase and that the money be returned to me since the template will not be used because it prevents me from using native angular things and I must use much more JQUERY.

I look forward to the return

Thank you

Hi, I don’t know why you face this type of issue, anyway please request for refund I will accept it.

Thank you for everything.

Good Morning

The template does not allow you to use your own angular components but everything must be through JQUERY.

What should I do to allow me to use angular properties and things, such as: “change”, “click”, “value”

Stay tuned

Lorax – Angular 8 Admin Dashboard Template Regular License 6 months support (expires on 17 Jan 2020) Purchase code: 8094c473-8ab5-4f67-9ac8-7c39a994eeb4

Hi, Lorax is simple angular template, you can use both jQuery and angular properties. Here is a sample code for click event. in HTML file input element click event: <input formControlName=”email” (click)=”open($event, item)” class=”form-control” placeholder=”Username”>

you can write click event function in .ts file like

public open(event, item) {
   alert('clicked ');
 }

pdfmake library does not work, please help you.

hi, we are not using pdfmake library in lorax, so please refer these link https://stackoverflow.com/questions/45136111/angular2-how-to-use-pdfmake-library and please check you are import necessary files or not. if pdfmake library is configure properly it will work fine.

Hi redstartheme. I really like your admin dashboard and how clean the design is! I have been looking for a certain functionality and wonder if your dashboard has it. Does your dashboard have any timer related plugins with the ability to set an active timer with start, stop, reset, and capture buttons to track project/task management (examples: https://clockify.me/work-hours-tracker or https://toggl.com/features/)? Thanks for your info.

Sorry Sir, currently we have no plan for add timer related functionality, Thank you for your suggestions.

Hi, I have a problem using ngFor to render the table. Paging, search, show entries and another features doesn’t appears, and style become weird, Can you help me? How can i use ngFor to render the table, or can i use ngx-datatable with your template?

Thank you.

HI, have you try this : https://stackoverflow.com/questions/45983485/how-can-i-use-angular4-ngfor-to-create-a-data-table please try to integrate as specify in above link.

Yes, you can use ngx-datatable with lorax template.

Do you have an example how to use ngx-datatable with lorax?

Currently we have not any examples with ngx-datatable

Hi

We are facing issue with select box. On first occurrence of the site load, the select box lists with no default selection, and after the page load, the select box assigns default value and displays the rest of the values for selection. CSS over write issue.

kindly reply at the earliest

Hi, In static data it is working fine. I can test in static data only. please email us with screen shots so we can understand your issue and help you to solve it.

Hi,

We need a latest updated theme for multiple select box with search.

Share the latest files.

Thanks

in select2 input element becomes the search box for multiple selects, you can check multiselect on page http://www.radixtouch.in/templates/admin/loraxangular/source/angularlight/#/forms/advance

Do you guys have more detailed documentation. Something like Apex admin theme docs https://pixinvent.com/apex-angular-4-bootstrap-admin-template/documentation/documentation-tables-smart.html

They also provide instructions with code snippet of components

we have only one document which provide with template package. If you have any query regarding template feel free to contact us.

Hi, I made the download of the layout: themeforest-23430042-lorax-angular-7-admin-dashboard-template. I did the installation following the guide and when I access the page forms/advance appears the following message on console log of the browser: inputmask is not a function. No one of the inputs in the section Masked Input works. How can I solve this?

Best Regards,

hi, i followed your steps. First: in the gruntfile.js there isn’t this line you told me. But there is in gulpfile.js in the line you told: 74, and it was write as you told: paths.bower + ’/inputmask/dist/min/jquery.inputmask.bundle.min.js’. . After that I gone in the bower.json and the version it was there was: “inputmask”: “^4.0.8”. in the section dependencies and resolutions. I change it to “3.3.11” and run the command gulp as you requested. And didn’t work. After that I removed the folders: node_modules and bower_components. runned the command npm install, after bower install and to finalize gulp.

Didn’t work.

Before this version it was working. After the update stoped work. The download of the new version was done and not even this version work.

There are another solution?

Hi, I didn’t find in the layout any example to use the advanced table to insert data by service in angular. Do you have some example in forum of your layout?

Hi, we have just update our template with solve input mask bug so please update template. we have no any live api for advance data table, template have always static data examples, so you have yo write code yourself for make it dynamic.

Thank you.

function advancedDragDrop() { const dragAndDrop = { init() { this.dragula(); this.eventListeners(); }, }

eventListeners() {
    this.dragula.on('drop', this.dropped.bind(this));
    // this.dragula.drop().subscribe(({ name, el, target, source, sibling }) => {
    //   console.log(target);
    // });
  },
};
dragula() {
  this.dragula = dragula([
    document.getElementById('0'),
    document.getElementById('1'),
    document.getElementById('2'),
  ]);
},
dropped(element: any) {
  console.log(element);
},
dragAndDrop.init();

I have to call a function when an item is moved to another container (not just reorder items in same container). That function need to know in which container is after the drop. I’ve tried to do that with your syntax: I have access to the item that is dragdrop, but not on the container. I’ve read on dragula documentation that the way to do so is like: this.dragulaService.drop().subscribe(({ name, el, target, source, sibling }) => { });

How may I solve this?

Best regards, Marius

Hi, you can get drag container details, drop container details and element details like this:

drake.on(‘drop’, function(el, target, source){ console.log(source); console.log(target); console.log(el); })

We need multi selection dropdown (checkbox) with Search option in it.Please give us the solution immediately..

ok thanq you. but when i am try to page reload(location.reload() )continuously loading…How to stop the loading.Please help me

in template we use .fadeOut() for loading image you can see in admin.js file. you have to write loading js code in your logic whanever you want to hide loader as per your logic. please refer setTimeout(function () { $(’.page-loader-wrapper’).fadeOut(); }, 50); in admin.js you will understand what happen.

ok thanq you.

Hi, Kindly let me know how to upgrade this template to integrate the “E-commerce” functionality that was available in the theme.Please sent that file as prakash.l@knila.com

Hi,

I want to ask about using the select tag in another any HTML because when I use it adds bootstrap classes?

we are using materializecss for material design components so select item is from https://materializecss.com/select.html, materializecss and bootstrap both have the same <select> tag. If you have still have any issue please email us on redstartheme@gmail.com.

Hello. After installing the admin in our local server. I have tried to change code of the layout to : { path: ’’, component: LayoutComponent, canActivate: [AuthGuardService], children: [ { path: ‘dashboard’, loadChildren: () => import(’./components/pages/dashboard/dashboard.module’).then(m => m.DashboardModule) }, { path: ’’, redirectTo: ‘dashboard’, pathMatch: ‘full’ }, ] }

after changing, the sidebar has stopped working properly as shown here : https://prnt.sc/o3atdb

We tried to remove the display : none on the code

Is there another method of doing the changes without affecting the side menu?

Thank you.

Is there another method of

Thank you for quick response!!

Could you please share the download link for updated theme.

you just login in themeforest website and you can see latest version in downloads tab in your account.

Hi,

In that latest version missing that “Task Creation Functionality”.

Hello, Kindly let me know how to upgrade this template to integrate the “task creation” functionality that was available in the theme last week.

Hi, Yes we removed task page from latest version, if you steel want task page please give me email id So I can write code for task and email you.

Please share your files, prakash.l@knila.com

Thank you for your quick response!!!

Please release a versione where the scss files are editable in runtime. i’m became crazy to modify it and i cannot do that due to scss limitations and bugs, or at least release a support or guide where explain how to do that…

Hi, All sass must have to build when any change or either you can use watch in gulp file so it will be automatically compiling your sass code. If you want to integrate watch in gulp file please email me on radixtouch@gmail.com.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey