Discussion on Materialize - Next.js, Vuejs, Nuxt, HTML, Laravel, Django, Asp.Net Material Design Admin Template

Discussion on Materialize - Next.js, Vuejs, Nuxt, HTML, Laravel, Django, Asp.Net Material Design Admin Template

Cart 12,639 sales
Recently Updated
Well Documented

PIXINVENT supports this item

Supported

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

566 comments found.

Will you update Materialize at some point? Is it safe to do it myself without breaking everything?

Hey one87,

Could you please mention those points, we will surely improve on those in future updates.

Sure you can edit your self, read the documentation to extend it, and do not change core files.

Hello,

We’re glade to announce Materialize – Materialize Admin Template major update.

We have upgrade materializecss framework with jQuery. It also include Gradient Materialize UI with New Collapsible Menu Theme, Dashboard, Cards and many more..

Apology for that delay as we were working on the major release and due that it took long time.

Hope you will enjoy the new features, design & components. Please rate us 5 start to get more new fantastic updates.

Cheers~ PIXINVENT

hi there,

i founded a bug for browser-default class in select element tag, like in this screenshoot https://s14.postimg.org/dd5ix0mzl/Screenshot_16a.png

in mobile device, i cannot select item options. can you fix that soon?

Hi hairulazami,

Let us check and get back to you asap, thanks for your inputs.

Hello.

I want to know, is this template support to have a nested menu (left side bar) ? I have checked it in the demo files and I found nothing this far.

anyway, I like this theme. :)

thanks for the response. It’s a good news for me. I am waiting for the update.:)

thanks for the response. It’s a good news for me. I am waiting for the update.:)

Hello,

We’re glade to announce Materialize – Materialize Admin Template major update.

We have upgrade materializecss framework with jQuery. It also include Gradient Materialize UI with New Collapsible Menu Theme, Dashboard, Cards and many more..

Apology for that delay as we were working on the major release and due that it took long time.

Hope you will enjoy the new features, design & components. Please rate us 5 start to get more new fantastic updates.

Cheers~ PIXINVENT

Glitch with Input Select that makes you have to double click every select, it’s your code as it happens on the “preview” as well. First click disappears then you have to click and select again: https://gfycat.com/HonorablePerfectDogfish

it is happening on the latest version of firefox, and it happens on chrome as well. Even when testing on my phone on the mobile browser it occurs. Would like you to look into it and fix it with an update as it’s an important part of why I am using the theme.

Okay socks5proxies, let me check and get back to you asap, you may raise support ticket where I can attach file related changes.

Hello,

We’re glade to announce Materialize – Materialize Admin Template major update.

We have upgrade materializecss framework with jQuery. It also include Gradient Materialize UI with New Collapsible Menu Theme, Dashboard, Cards and many more..

Apology for that delay as we were working on the major release and due that it took long time.

Hope you will enjoy the new features, design & components. Please rate us 5 start to get more new fantastic updates.

Cheers~ PIXINVENT

Does this theme integrate with the Dot Net Web Form and we can use the ASP Ajax control in this theme? As some theme did not support the ASP ajax controls

Hi NajamBashir,

This theme can be integrate in any backend language, you can also integrate .Net control but the UI and Look and Feel of that control may not be supported in this theme as this theme has its own. You can use them.

Feel free to ask if you have any pre-sales questions.

Thanks

Hi, I like this topic very much, I want to know, can obtain sass and gulp files after purchase?I hope you can reply, thanks

Hi yrzpin,

You will get sass with grunt in materialize admin theme, for gulp you need to configure it your self and its easy as we provide grunt.

Feel free to aks if you have any pre-sales questions.

Thanks, GeeksLabs

Hi Geekslabs;

I am interested on this themes; but i have a inquiries if this materials design is fit to Open Journals System? Platform.

I am creating my own design and it’s hard to apply to OJS. When I search this design, I put my interest to purchase this but the problem if this capable to my platform(OJS) that I use.

I starting learning a Mareialize CSS framework.

Hope u consider this comment. or email me to

Thanks for your fast reply;

Okay.

But My intention is to be front end of the OJS. I think this design is fit to the OJS.

Here is the problem If perfectly completely implement this to the OJS? What is my assurance after I purchase your theme codes. you can not accusing me a Copyright and IP Violation?

I’m interested buyer.

Hi pair2007,

You will get the single usage licence from envato with invoice copy, so you are the legal holder for single usage of this theme.

If you are planing to create OJS theme which you will going to sell to your customer (let say you wan to sub-license) then single usage license won’t work and you have to purchase extended license which is quite costly.

So its depend on your usage and requirements, no one can fire copyright or IP violation if you have the license code any invoice from envato.

Regards, GeeksLabs

Hello GeeksLabs,

for now I am focusing for our own OJS website not in my mine to sell the themes. But as you’ve said if I will sell the themes codes maybe soon or later I will update Geekslabs about the sub-license, you give me an idea.

Regards, Pair2007

Hi, the Floating Action Button popup(OnMouseOver) not disappearing in Mobile Version on MouseOut. Please suggest

Hi shameemsyed,

Our support person for this theme is on leave for a week and will be back on 22nd August. We will get back to you next week addressing this issue. Apologies for the delay.

Thanks, GeeksLabs Team.

I am looking for Multi Select Dropdown where we can select multiple items from dropdown..

Also i am looking for searchable dropdown which is useful and not available currently. Request you to please help

Hi popatrajkumar,

Our support person for this theme is on leave for a week and will be back on 22nd August. We will get back to you next week.. Apologies for the delay.

Thanks, GeeksLabs Team.

Dear Team, We are looking for below chart availability in this theme is it possible.. Please find link of chart. Request your sincere help https://www.dropbox.com/s/tvtj6sk5wj3tyz1/chart%20male%20female%20-%20materliaze%20theme.png?dl=0

Hi popatrajkumar,

Thanks for your inputs, ChartJS can do this type of chart.

Use the following js for the column-multi-axis id of html.


// Column multi axis chart
// ------------------------------
$(window).load(function(){

    //Get the context of the Chart canvas element we want to select
    var ctx = $("#column-multi-axis");

    // Chart Options
    var chartOptions = {
        responsive: true,
        maintainAspectRatio: false,
        responsiveAnimationDuration:500,
        hoverMode: 'label',
        stacked: false,
        title:{
            display:false,
            text:"Chart.js Bar Chart - Multi Axis" 
        },
        scales: {
            yAxes: [{
                type: "linear", // only linear but allow scale type registration. This allows extensions to exist solely for log scale for instance
                display: true,
                position: "left",
                id: "y-axis-1",
            }, {
                type: "linear", // only linear but allow scale type registration. This allows extensions to exist solely for log scale for instance
                display: true,
                position: "right",
                id: "y-axis-2",
                gridLines: {
                    drawOnChartArea: false
                }
            }],
        }
    };

    // Chart Data
    var chartData = {
        labels: ["January", "February", "March", "April", "May"],
        datasets: [{
            label: "My First dataset",
            data: [45, -19, -32, 48, -56],
            backgroundColor: "rgba(153,184,152,.6)",
            hoverBackgroundColor: "rgba(153,184,152,.8)",
            yAxisID: "y-axis-1",
        }, {
            label: "My Second dataset",
            data: [28, -48, 40, -19, 66],
            backgroundColor: "rgba(254,206,168,.6)",
            hoverBackgroundColor: "rgba(254,206,168,.8)",
            yAxisID: "y-axis-2",
        },
        {
            label: "My Third dataset",
            data: [-40, 25, -16, -36, 57],
            backgroundColor: "rgba(255,132,124,.6)",
            hoverBackgroundColor: "rgba(255,132,124,.8)",
            yAxisID: "y-axis-1",
        }]
    };

    var config = {
        type: 'bar',

        // Chart Options
        options : chartOptions,

        data : chartData
    };

    // Create the chart
    var lineChart = new Chart(ctx, config);

    // Animate charts on window scroll for chartjs
    var inView = false;

    // Check if element is within view
    function isScrolledIntoView(elem)
    {
        var docViewTop = $(window).scrollTop();
        var docViewBottom = docViewTop + $(window).height();

        var elemTop = $(elem).offset().top;
        var elemBottom = elemTop + $(elem).height();

        return ((elemTop <= docViewBottom) && (elemBottom >= docViewTop));
    }

    // Redraw chart on window scroll to see animation effect after page scroll
    $(window).scroll(function() {
        if (isScrolledIntoView(ctx)) {
            if (inView) { return; }
            inView = true;
            new Chart(ctx, config);
        }
    });
});

You need to check the documentation for customisation: http://www.chartjs.org/docs/#bar-chart

Feel free to ask if you have any query related to theme.

Regards, GeeksLabs

We are unable to get Year in Calendar, can you please let me know how to get it..

HI popatrajkumar,

We are using fullcalendar in materialize admin theme.

You can find all the api here : http://fullcalendar.io/docs/current_date/ You should use the following code to get year

$('#my-button').click(function() {
    var moment = $('#calendar').fullCalendar('getDate');
    alert("The current date of the calendar is " + moment.format());
});

Feel free to ask if you have any more query,

Regards, GeeksLabs

Hello. For it is? How to connect the data? Used to Wordpress? Thanks

Hi gnxdevelop ,

Thanks for asking before the purchase, we would like to clear all your queries before purchase.

- This is just HTML theme not wordpress theme or any other CMS theme. - You need to integrate it your self with any CMS or back end language PHP, .NET and JAVA. - You need to connect your self with DB by using any back-end language.

Thanks, GeeksLabs

When will be the next update be? There’s a bug with e-commerce.

Please fix user profile page on mobile screen. It’s not looking good on mobile.

Cheers!

Sure, kurtdcdg

Will check that also and add our todos to fix that.

Hello,

We’re glade to announce Materialize – Materialize Admin Template major update.

We have upgrade materializecss framework with jQuery. It also include Gradient Materialize UI with New Collapsible Menu Theme, Dashboard, Cards and many more..

Apology for that delay as we were working on the major release and due that it took long time.

Hope you will enjoy the new features, design & components. Please rate us 5 start to get more new fantastic updates.

Cheers~ PIXINVENT

Hi, It’s a really good Admin UI. I enjoyed developing with it. And here is a few issue I found during developing. at the page of /advanced-ui-translation.html FireFox has to click twice to open the multi-choice window. Chrome works fine with it. Hopes to reply, Thanks~ :-)

Another bug i found is that the Navbar in ui-navbar.html. The MOBILE COLLAPSE BUTTON doesn’t work as expacted. The demo has the same problem. Please have a look at it. Thanks!

Hi C0lacan,

We are very thankful to you for providing the valuable comments, we’re just started working on this issues and new release of this theme will be in this weekend.

Feel free to log any support related issue on our support portal support.geekslabs.com

We appreciate your patience. You may mail us and we can provide you a fixed files before the release.

Thanks, GeeksLabs

I want to buy this template, but first, I need to know if is possible to connect the charts on influxdb, I need to know too, if I can change the refresh rate of the charts, and what is the maximum speed possible between refreshes.

Are Charts hard-coded or is there a tool to create them?

PS: I will query influxdb using its http api

Thanks in advance

Hi ervison,

All these chart we have used required JSON data as input based on chart parameters requirements.

We are not much aware about influxdata integration but we can tell you if these api returning db in json format you may use any of charts from out theme.

Feel free to ask if you have any pre-sales questions.

Regards, GeeksLabs

Hi,

I’m using your theme for more than a year now,

You answered :
Hi bondanherumurti, We have seen your snap, Could you send us the code for this sample POC on admin[at]geekslabs.com. We will modify that for the material and will provide you. It may take 3-5 days, so please have patience. Thanks, GeeksLabs

Do you really plan to integrate select2 ? The selects are are still buggy on ipads… Your last update seems to date from January(six months ago), is this theme still being updated or did you create another one ?

Thanks.

Hi neokeats,

Thanks for get in touch, however every updates and featured in future are based on our sales.

We are really want to integrate and provide all those, but due to some sales reason we aren’t. But for Select 2 we will create one POC for you and will provide you in a week.

Please have patience.

Regards, GeeksLabs

I’m looking into the possibility of using and buying this theme and I see you include Angular directives (I would guess for angular 1.5/1.2?). Do you also include Angular 2 components in the theme?

Hi sigve_albretsen ,

No its for the older version of Angular, not for Angular 2.0 Its good to ask before purchase so you can confirm.

Feel free to ask if you have any query.

Thanks

Do you plan to include Angular 2.0 components in the near future?

Hi sigve_albretsen,

We do not have any plan as of now but in future we will surely do, we have added you in out wish list we will intimate you.

Thanks, GeeksLabs

This is the best customized admin template i have seen but there are few requirements for us. first of all we want to have all platforms one design template, when checking this template in mobile there is some lag in sidebar and the tables are getting the scroll we need this template to be multiplatform optimized. will there be any update coming . we are waiting to buy it but we need to have a confirmation regarding the issues.

HI narencoolcracker ,

Thanks for your appropriation, that sidebar lagging issue is due to the animated charts. We going to improve it. On the rest of the pages you won’t see a lag. We are surely updating our theme future update, next update will be releasing in July end.

Feel free to ask if you have any pre-sales questions.

Regards, GeeksLabs

Hello,

We’re glade to announce Materialize – Materialize Admin Template major update.

We have upgrade materializecss framework with jQuery. It also include Gradient Materialize UI with New Collapsible Menu Theme, Dashboard, Cards and many more..

Apology for that delay as we were working on the major release and due that it took long time.

Hope you will enjoy the new features, design & components. Please rate us 5 start to get more new fantastic updates.

Cheers~ PIXINVENT

Great theme and really impressive IE9 support which I unfortunately need. I am a bit disappointed that you guys didn’t use Bootstrap as your base framework because as of now it is a universal language for all web developers. I am in the process in integrating a custom Bootstrap build with just the essential components so fingers crossed!

P.S. – I’m having issues with the page loader. Where can I find the code for that? I’d also like to adjust the animation timing. Thanks!

Hi dbilinski,

That’s correct but material design and its effects are not provided by Bootstrap and we have mentioned that we used materializecss framework, For IE9 even microsoft doesn’t support it.

For loading animation…

HTML code, but for customization you need to change css.

  <!-- Start Page Loading -->
  <div id="loader-wrapper">
      <div id="loader" />        
      <div class="loader-section section-left" />
      <div class="loader-section section-right" />
  </div>
  <!-- End Page Loading -->

CSS/SCSS: You can use _preloader.scss, or change in style.css but we recommend you to backup or write custom css in custom-style.css

Feel free to ask if you have any query in future.

Cheers~ GeeksLabs

nice work.. is supported RTL layout?

Hi ahmeddeveloper,

No, its not supported in RTL version, but you can easily convert it. We have added this option for our future requirements, that will be available in our future release.

Thanks :)

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