Discussion on Gebo Admin Responsive Template

Discussion on Gebo Admin Responsive Template

By
Cart 3,191 sales
Well Documented

tzd supports this item

Supported

This author's response time can be up to 2 business days.

719 comments found.

it’s possible to keep old mobile menu?

Hi, yes, it’s possible, just keep your old html structure for menu and remove
//* mobile navigation
  selectnav('mobile-nav', {
    indent: '-'
  });
from gebo_common.js. You can also remove
<!-- mobile nav -->
<script src="js/selectNav.js"></script>
from your page.

I don’t suppose you use LESS to develop this? If you do is it possible to get the LESS files?

Hi, I’m sorry but I don’t use LESS in Gebo Admin template.

Hi, there. First of all, congratulations on your excelent work!

I’m using your form template, with that special <select> element, that has a simple search tool. The fact is I have an ajax tool that once you type the zip address it gives you the full address. One of the info is the state name and code. Usually, I use: $(‘select[name=”id_uf_residencial”]’).val(obj.cep0.id_estado_ibge);

and on all my previous code it worked all right. But with that special <select> not. If I change it back to the regular one, the JS function works.

Any clue? How can I select an option on that special <select> using a JS function?

Best regards.

Hi, I don’t think that this is possible with chosen plugin http://harvesthq.github.com/chosen/ If you want to use ajax please take a look at http://ivaynberg.github.com/select2/ (this plugin is based on chosen but has more functionality)

Great theme, and I am starting to understand it after playing with it for a couple of days. Where did you get the functionality for the table that is on the home page: Latest Orders

That table is great because it has the selector to remove/add various columns. It also drops off columns from the table if the device it is being displayed on is too small.

I want to understand that functionality more, as I will need that for the application I am working on.

Thanks in advance!

Great info. So is it possible to take the dynamic table and put that into a widget box?

I am playing with the code from the dashboard.html file and trying to get that table working in the widgets.html page. Where is the table menu located in the code, and which .js script controls that. I was hoping I could cut and paste that div that holds the dynamic table and drop that into a widget, but when I do, I am missing the table menu.

Any tips?

thanks!

Hi, to put that table into widget box you need slightly modified mediaTable script and html code ( please check your email ). I added new option
menuAppend: false //default value
In this option you can define where menu should be placed (by default menu is placed before table). Copy widget_mediaTable.html to Gebo Admin folder and check second widget. Init for this mediaTable is placed at the bottom.
$('.mediaTable').mediaTable({
  menuAppend: '.menuAppend'
});

Where are the functions (.js) for the Default Accordion and others?

Hi, default javascript functions comes from bootstrap framework http://twitter.github.com/bootstrap/javascript.html

Hi Tzd,

I just purchased this template and was not able to find any .PHP files in there, all i can see is HTML files.

How do I get the .PHP files for this template?

Kind regards, Nawaz

Hi, please send me message from my profile page if you need php files.

I feel like this is a stupid question but…. how do I find/download the Gebo updates?

Hi, just download this file ( this is updated version – 1.6)

??? I feel like you’re messing with my head. What file?

I downloaded a new version where it said:

“You have already purchased this file. You can download it here.”

is that what you meant?

Hi, it work this way: when you buy template you can download this template right away (current version), when author release new version you can download new updated template the same way that you downloaded it before (go to download tab, and download it). All updates are free, you don’t need to buy this template again, just download it and enjoy new features :)

if i resize the browser than New Task and New Message button goes missing that are present on upper right corner.Why so ? is there any problem. Correct me if I am wrong.

Hi, yes, You are right. I decided to hide this buttons on tablets and mobile devices due to a lack of space in top bar (you can easily enable visibility for this buttons, just remove hidden-phone hidden-tablet classes from parent container and adjust top margin for devices < 979px)

tzd.

which files I need to change and that I’ve to look to update the 2 col multi-select?

Regards.

Hi, there is a new version in lib/multi-select (you need to copy this folder to your project), there are also changes in forms_extended.html and gebo_forms.js ( gebo_multiselect = { ... } )

I like the various ways to move items from one list into another on

http://tzd-themes.com/gebo_admin/index.php?uid=1&page=form_extended

What’s the best way to change the behavior so that (1) when an item is selected, it opens a preview window somewhere (e.g. selecting a document or image) and (2) the move from one list to the other doesn’t happen until you either drag the item or click on the control button between the two lists (which should obviously change direction, depending on which item is selected).

Thanks!

Hi, 1) please check callback example http://loudev.com/#demos 2) I don’t thing that is possible with this plugin.

Hi Tzd,

Thank you very much for confirming.

Hi there, I want to remove the Another Chart in dashboard. I commented the 2 related and my page went into endless loop. !

What else I need to remove ? Thanks

Hi, please open js/gebo_dashboard.js and remove
gebo_charts.fl_1();
from
$(document).ready(function() { ... })
If you remove some elements and page doesn’t load please open js console and check for js errors.

Hi,

Can you please confirm the HTML files that is included in this theme are HTML5 files and can be used independent of PHP ?

Hi, yes, html5 files are included with Gebo Admin template.

Do you have a type of “spinner” or “wainting div” to put on top of a page when submitting a form?

I would like the orignal page to be visible, but unresponsive, while it’s clear for the user that their request is beeing processed even if it takes a while to deliver the response.

Hi, you can use something like this
// after submit
$('body').css('overflow','hidden').append('<div id="ajax_loader" style="position:absolute;left:0;top:0;width:100%;height:100%;z-index:2000;background: rgba(255,255,255,0.5) url(img/loader.gif) no-repeat center center"/>')

//after success
$('body').css('overflow','').find('#ajax_loader').remove();

Is it possible to add the blog page?

Hi, yes, it’s possible. I’ll add this to my todo list, thanks.

Hi! I try to download your update v1.6.. but,,,..the version in download file is v1.5 …do you know when we can dowload the update version?

Hi, I just downloaded Gebo Admin from Themeforest (v1.6). Please try to refresh your browser cache (ctrl+f5) and try again.

Thanks!... now i have the new version… let´s check it out… excellent work!!! congrats!

Gebo Admin Template support mobile devices?

Hi, yes, Gebo Admin template is fully responsive. It works on desktops, tablets and mobile devices.

Thanks! Will you be updating http://tzd-themes.com/gebo_admin/index.php?uid=1&page=dashboard , or somewhere else?

I just updated demo site, you can check it now.

Amazing theme! The only thing holding back my purchase so far is that the drop down menus don’t work on iPad/iPhone at all. I think this is a Bootstrap thing, tho.

Hi, Thank you. This issue with dropdown is well known https://github.com/twitter/bootstrap/issues/2975 I added fix for this dropdown in v1.6 update (awaiting review).

Your post from 9 days ago says 1.6 will be available “today”—what’s the status of the update? If you have a URL for the beta and are looking for feedback, I’m sure a bunch of us will check it out and provide comments. Thanks! -Tac

Hi, I’m very sorry about that, I just uploaded v1.6 update (awaiting review). Should be ready for download shortly.

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