Discussion on Pages - Admin Dashboard Template

Discussion on Pages - Admin Dashboard Template

By
Cart 11,420 sales
Well Documented

ace supports this item

Supported

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

3890 comments found.

gordonlhw, I think in the meantime you can use this plugin for styling the file upload http://markusslima.github.io/bootstrap-filestyle/ You only have to include the javascript, and as it’s based on bootstrap, you would get a good looking button, you can even change default button/style (for example you can use btn-primary and fa fa-folder-open-o and will pick the pages ones). I think it will be a good idea to include it directly in pages.

Great! :) Thank you for this

Hi,

I like this framework, but would like to know how to pass parameters to the rails boilerplate.

Current documentation: grunt build:rails:my app name here

How to create a project like this rails new my app -0 (to disable active record in the case MongoDB is used instead of MySQL)

Thx

Hi there

grunt build:rails:app-name

This only creates a starting ground to kickstart your project with Pages installed on rails :) currently there are no advance parameters to enabled or disable MongoDB or mysql, good news is its a barebone where none of them are included so you can include it to your gem file and run it :) you could include any other stuff to and it will work fine.

Hope you got what I’m saying, let me know .

well, there is the -O option in rails that deactivate active record from the project. Deactivating active record once the project is created is not the best option as it is easy to let some parameters in the configuration files. It would be good to have something like grunt build:rails:app-name:rails parameters so the rails project is created with correct configuration from the beginning.

Hi there

Thank you for this valuable input I will look at this :)

Hi Ace. I’m pretty new using Grunt and I want to understand what you did in your project. In watch section (gruntfile.js), I want to include the less files in assets folder, so I can modify/add custom code there without touching your code (pages) for future updates (like said in your documentation). When I started the grunt watch, only compiles the pages less files, but nothing in assets less files. Could you help me to do this? If I’m doing something wrong and you know a better way to add custom styles/scripts without touching your code, I will always thank you.

Let me know please, thanks.

Ok, thank you for quick reply. Well, after reading your comments I decide to use only the “compiled” css because I don’t want to spend hours trying to figure it out how to implement this in my project, because I’m pretty delayed right now.

What I want to see is the final meteor version of “pages”. I’m developing right now the admin panel, but for the mobile version I want to use meteor, because is a minor version of my project.

Can’t wait to see meteor version. Take care.

Hi there

When it comes to metoer you will not be able to access pages.css files :) because it will get installed as a package. Then you have to stick to the method of over-writing css classes. Ill show an example

Pages.css has the following class

.my-class{
background : red;
} 

Say you hate the background red and want to make it black

you got to your custom.css included after the pages.css

.my-class{
background : black;
} 

Then you can update pages using, meteor add pages and to the latest version without having any conflicts :)

Hope you got what I’m talking about

Yes, I understand you. That will be awesome. Like I said before: I can’t wait to see it.

Iam waiting for the angularjs version, could you tell when you will release it ? Thanks

We maintain branch for every new release :)

https://github.com/revoxltd/pages/tree/v1.2.0

great :) thx

Hi – can you add me to the github repo? Username LasseNorby. Thanks! :-)

Hi there

Sent you the invite :)

Hey, just wanted to say thanks for the quick and useful replys. This theme is really worth to buy! Would buy each upcoming theme from Him.

Thank you! :) Glad you loved it. Feel free to ask any questions

Is there a example source code for the notifications alert?

Hi there

You it will look like this

$('body').pgNotification({
style:'circle',
message:'hello! are you there ?'
}).show();

You can refer the above link to add different settings

Hi, can you add me to your github repo? my username: canaydin. Thanks

Invitation sent!

Please, can you send me the invitation for GitHub, my username: beukcthulhu.

Invitation sent.

How could i use the “Notification Plugin” ?

Is there a example source code for the notifications alert?

Hi there

You it will look like this

$('body').pgNotification({
style:'circle',
message:'hello! are you there ?'
}).show();

You can refer the above link to add different settings

Thank you !!

Hi, Any special UI for file field? I need it. Thank you.

Regards,

Gordon

Hi, Are you referring to File upload field? We have integrated Dropzone plugin in form_elements.html

Hi, Yes, file upload field. input type=”file” Drop zone is not what i want. I want to similar “add file” button like this: https://blueimp.github.io/jQuery-File-Upload/

Regards,

Gordon

Thanks for your suggestions. We’ll consider integrating it in the future.

Hi. Could I have an invite please. Purchased Pages, Github: wroddy

Thanks.

Invitation sent.

Hi,Ace,

Please add me in your github, my link is: https://github.com/uniandy

Where is the v1.2, v1.3?

Thanks

Invitation is already been sent :)

Its in the branch

https://github.com/revoxltd/pages/tree/v1.2.0

Great template. I’m trying to use the “type anywhere to search” to populate a series of links on the over page. In my case it’s product numbers. I’m trying to append the to a url as “www.domain.com/[search]. Any help you can provide is greatly appreciated.

You can refer to assets/js/scripts.js to learn how to use our search. I will paste the code here:

$('[data-pages="search"]').search({
            searchField: '#overlay-search',
            closeButton: '.overlay-close',
            suggestions: '#overlay-suggestions',
            brand: '.brand',
            onSearchSubmit: function(searchString) {
                console.log("Search for: " + searchString);
            },
            onKeyEnter: function(searchString) {
                console.log("Live search for: " + searchString);
                var searchField = $('#overlay-search');
                var searchResults = $('.search-results');

                clearTimeout($.data(this, 'timer'));
                searchResults.fadeOut("fast");
                var wait = setTimeout(function() {

                    searchResults.find('.result-name').each(function() {
                        if (searchField.val().length != 0) {
                            $(this).html(searchField.val());
                            searchResults.fadeIn("fast");
                        }
                    });
                }, 500);
                $(this).data('timer', wait);

            }
        })
onSearchSubmit is the callback fired when you hit enter, and onKeyEnter is fired whenever a key is entered, you can use this to do a live search. (For the demo we have added a timeout to simulate network call). Hope this helps.

Hello Ace,

I was wondering if it was possible to show the number (percentage) inside the circle of a Circular Progress bar? In one of your GIFs, it shows the option, but I cannot figure out how to do it. Here is an image of your GIF:

Link to GIF

Is there a way to do this?

Thanks for the help!

Sorry showing the progress value is not possible with current version. While we improve it, you might have to use some other jquery plugin.

Hi Ace. Do you have an estimate on when the front end will be available in an update? We’re in a position where we either build our own front-end, including all the time and investment that entails, or wait for what will undoubtedly be an awesome front end from your team.

Thanks in advance for the ETA. Much appreciated.

Cheers, Greg

Hi there

Happy to say the designs are coming to an end and will be making them to HTML and CSS its not going be just a frontend template :)

Excellent! Thanks for the quick response Ace. Looking forward to this immensely (as the team is waiting:-).

Hi Ace, could you add me: thijsvdanker to the github repo? Thanks!

Invitation sent

It would be AWESOME if you can make a theme for jQuery elFinder which matches the awesome style of pages.

What do you think, would this be possible ?

Hi there

Thank you for suggesting :) I have not heard about it before, Will have a look.

Thanks.

elFinder is the most pupular file manager out there based on jQuery / javascript ;)

Great! sounds awesome :) we have already finalised what we are going to include in v1.2 I’l try my best to put it there but most probably in v1.3 :)

Excellent theme ! Please, send me the invitation for github, my username is fluppi. Thanks !

Thank you! :)

Sent you the invite

Hi Ace, can you add me to the github repository? username:bellinilo

Hi there :)

Sent you the invite

thnx :-)

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