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.

Checkbox in modal not show , Help me please.

all form in modal not show, please check bug.

Hi yhingg,

All the form inputs types is working on modal popup.

Check the below code, its working fine for us, you need to check console error or css issues may occur based on your change.

<form class="col s12">
                    <div class="row">
                      <div class="input-field col s12">
                        <input id="to_email" type="email" class="validate">
<p>
                      <input type="checkbox" id="test5">
                      <label for="test5">Red</label>
                    </p>
                        <label for="to_email" class="">To</label>
                      </div>
                    </div>
                    <div class="row">
                      <div class="input-field col s12">
                        <input id="subject" type="text" class="validate">
                        <label for="subject" class="">Subject</label>
                      </div>
                    </div>
                    <div class="row">
                      <div class="input-field col s12">
                        <textarea id="compose" class="materialize-textarea" length="500"></textarea>
                        <label for="compose" class="">Compose email</label>
                      <span class="character-counter" style="float: right; font-size: 12px; height: 1px;" /></div>
                    </div>
                  </form>

Thank you very much . that right.

Hello. Are you planing to implement autocomplete input, and input for tags (multiple autocomplete values)? Thanks

Hi dmijic,

We have added that and we had this request also, sure we will add this features in our upcoming release.

Thanks

Your documentation does not explicitly say where and how custom sass files should be added to ensure that they will be bundled by the grunt tasks provided with the package. An alternative would be to create my sass file anywhere in my project and edit the included grunt file to reference it, but I don’t want to do that if I don’t have to. Please clarify.

Right kabudu,

We have added functionality to add custom .css but for less we will add it for sure in next week release.

BTW its very easy to add and change grunt file for custom.less

Regards, GeeksLabs

Hello, bought your product yesterday, but Encountering lots of bugs in the layou, especially on medium-width screens.

1) Possible to scroll further right than needed (blank space on the right side) 2) “Hamburger-icon” for the menu is not on the correct height 3) The slide-up of Form element names is not ok on Safari (osx) 4) Left sidebar often decides that it doesn’t want to scroll anymore if hovered

I hope you can fix these.

Hi floriansmeyers,

We have logged the point no 1,2 & 3 as we can regenerate theme, we will resolve those in next release.

For point no 4 we need to check more as we are not able to reproduce it. And be free to log more if there any issue still that will help us to improve.

Thanks :)

Hello,

Is there support for the default left nav menu to appear when the user hovers or clicks on a button?

Hi aliakakis,

Of course it support ,For any menu hover and on click event is there which is easy to use.

GeeksLabs

no mobile menu on horizontal layout…

Hi iviewclear,

Stay tuned for the next quick update for v 3.0

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

Wondering if you would be able to recommend the simplest way to correct the issue on the horizontal layout where the last item in the navigation is forced to another row.

Hi yooneek,

Let me know if you need help to remove menu from HTML, we apologize for the small amendments required.

Regards, GL

I did that as well. The last item always moves to the row below. For example, if I remove all but two, one will be on top of the other as opposed to side-by-side. I think it has something to do with the overflow being set to auto. The CSS has it set to hide, I believe. But there must be some JavaScript somewhere setting it to auto because when I inspect the element, that’s what shows up. Just having trouble finding this in the JS.

Hi yooneek,

Okay, can we do one thing if it is on live send me url on admin@geekslabs.com and if not you can send a zip file I will check and tell you the exact problem …

Also mention browser, os name and version.

Regards, GeeksLabs

Seems like on your demo, the sweet alert is not working. It’s not finding the sweetalert.css and sweetalert.min.js on your server (404).

Hi frankthetank,

Thanks, you are right something mess with that. Will resolve it soon. Thanks a lot for informing us.

After the new update we are planning to release retrospective update for 3.0 to resolve minor bugs.

Regards GL

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

I’ve purchased this theme and it came with 3 different layouts (dashboards) now the current update only has one… am I missing something?

Hi javalonso,

We have that too, check the http://demo.geekslabs.com/materialize/v3.0/default/layout-fullscreen.html http://demo.geekslabs.com/materialize/v3.0/default/layout-horizontal-menu.html

This time we did not separated in new folder instead of that we have provided single html file as the other pages inner content will be the same.

Regards, GeeksLabs

Is there a way to remove Chartist is not defined from console error? This plugin is been initialized through plugins.js but in some pages I don’t need him to load e.g login page. In some cases I do not want the plugin to be auto initialized and I don’t want to edit the file plugin.js, how do I handle that?

Hi maaxxicarvalho,

Its depended whether you use add it or remove based on pages requirements, we understand on login, register etc.. page do not need that so you can eliminate that error by adding if check…

 
  //LINE CHART WITH AREA IN SIDEBAR
  if (typeof Chartist != "undefined") {
    new Chartist.Line('#ct2-chart', {
        labels: [1, 2, 3, 4, 5, 6, 7, 8],
        series: [
            [5, 9, 7, 8, 5, 3, 5, 4]
        ]
    }, {
        low: 0,
        showArea: true
    });
}

Regards,

GeeksLabs

This is fine but, the Chartist is being called from within the plugin.js file


new Chartist.Line('#ct2-chart', {
        labels: [1, 2, 3, 4, 5, 6, 7, 8],
        series: [
            [5, 9, 7, 8, 5, 3, 5, 4]
        ]
    }, {
        low: 0,
        showArea: true
    });

I believe that this is only for demo purposes but I don’t want to edit this file since is a core file for the Materialize Theme

You are maaxxicarvalho, but as of not till the new release you can fix it by adding the change in plugin.js in future release you can overwrite that file with new updates.

getting_started contents are still on version 2.x which is not connected to the documentation, this makes a real mess with the setup.

Please assure that you update all the files when releasing a new version or an update for the package.

We, developers who are using your package, want to update things correctly.

I’m using sass and every time a new version is released the sass version of the file are not updated for example.

Hi maaxxicarvalho,

Can’y you see the menus are changed, its a blank sample page to start a new project. Just a Sample

Yes I saw that but, my concern is only about the other files. The fact that the blank page sample is not updated makes me think if there is any other thing that is not updated too, just that.

Sorry.

Please do not sorry, maaxxicarvalho.

And thanks a lot for pointing that chartist bug. Will release new after update in this week with all new bug fix.

GeeksLabs

How To Set Datatable In See All Record…??

how to set mindate and maxdate in datepicker In Adminpanel Template

HI geekslabs, I M Already Purchase this theme By Another Email…. So can Provide Me Service…

Bhuro, Please raise you concern with your purchase code at support.geekslabs.com

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

where is the promised update ? thanks

in 2- days almost ready with angular version

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

Pre sale question. Im teasting the demo in a mobil divice, and the side menu breaks. I tested in a motorola g 3ge using chrome v 47.0.2526.76. this problem can be solve?

sorry muy english not my native language

jdlopez ,

Thanks for get in touch, we have tested samsung and sony for android device. We are releasing new version in 2 days you can check again it may resolve all the issues.

Great theme. But i think the checkboxes are a little buggy? Seems they also act a little strange on your demo page (using firefox/windows)

HI maushofman ,

We are releasing the new update for the all, that will be fixed in that. Just wait for 2 days.

Thanks

on the data tables, when u select show 25 rows, or 50 rows, it works, but the selection box doesnt disapear, it stays, i tried to fix it and couldnt, can u please let me know how to fix that? thanks

Hi alidevrobots,

We have made fix for this issue. You can use the below solution. Add the js code on page of datatables.


<script type="text/javascript">
        /*Show entries on click hide*/
        $(document).ready(function(){
            $(".dropdown-content.select-dropdown li").on( "click", function() {
                console.log('click');
                var that = this;
                setTimeout(function(){
                if($(that).parent().hasClass('active')){
                        $(that).parent().removeClass('active');
                        $(that).parent().hide();
                }
                },100);
            });
        });
    </script>

We will release new version in next week with this fix.

Regards, GeeksLabs

thanks. I tried to add that in the head and the bottom and neither worked, i am using asp.net so the one main difference in asp.net is that we have the form tag wrapped around the whole html due to asp.net not allowing dynamic content if form tags are not placed, so assuming right after the body tag we have form tags , maybe this is why this code is not working? Thanks for the help.

Ohh that is the trick work for us.

You need to place it on the datatables page footer.

Please raise a support ticket on our support forum support.geekslabs.com.

Add new topic, mark it restricted to you only and provide use if your platform is live we will check and provide you quick solution.

Thanks, GeeksLabs

Great theme guys but having some rendering issues with my DevExpress controls. My GridView controls look stretched at the headers. Also ListBoxes look stretched vertically. I have played around with the style sheet to correct this but no luck. Can you help me resolve this please. very urgent!!!

Hi a99level82,

Thanks, its hard to imagine the issue you are facing from your side. Can you send private message with link on our support forum support.geekslabs.com for quick solution

Thanks

Great theme. How do you change the colours for all the text boxes? The default is a pink colour. I need to change this to blue by default.

hello thanks for the prompt response. I am getting tons of errors during the compile of the files in the package. the _variable.scss does not compile. What is causing this?

Error: $color: ‘color(“pink”, “accent-2”)’ is not a color for `lighten’ on line 60 of /tmp/shellTmp1924338781476492728.scss Use—trace for backtrace.

Hello geek labs, any update on my question? The scss files do not compile. See the some of the errors received above.

Hi hackwiz ,

Could you please raise ticked with your scss file there is some syntax issue in your sass as we can see the error.

you can create topic here.

http://support.geekslabs.com/forums/forum/html-themes/materialize-admin-theme/

Hi Your page “media-gallary-page.html” with masonry is not working fine !! Any chance to fix it ? Thanks

Hi iviewclear,

We will check that and let you know.

on your forum i have posted images to illustrate what i say Thanks

Please check on forum and we are back now from vacation, please use support forums for any issues.

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