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.

Hi tzd, Please consider adding a toggle switch as well. You can use this https://github.com/nostalgiaz/bootstrap-switch

Hi, toggle switches will be added in next release. Thanks.

Hi,

I can’t understand how hidden row above the datatable is working. Is there exists some integration from datatables? When I look on live preview of template there is no alert, but when I try to integrate datatables into my page I always see this alert. Is this alert somehow linked with datatables?

Best regards, Arthur.

Paging in user-list (dashboard) is broken: try to have more then 2 pages, then you’ll see that the ”...” part is broken. Some div- or span-problems. Can you fix that?

Hi, please find in your code this options for pagination
['paging', {
  pagingClass: "bottomPaging",
  innerWindow: 1,
  left: 1,
  right: 1
}]
and replace it with
['paging', {
  pagingClass: "bottomPaging",
  innerWindow: 1,
  outerWindow: 2
}]
That should help.

are there any scripts/plugins you can recommend to use the calendar dynamically and have users input data?

Hi, could you please provide an additional very useful sample of datatables usage. I would like a sample, where you can hide columns – and – export data to excel and pdf etc, what the datatable plugin supports. When you hide columns in UI (like your sample with dropdownlist (choose which fields are displayed), hidden fields should not be exported. It can be done by doing something like this:

"oTableTools":{ 'aButtons':[ {'sExtends':'xls', 'mColumns':[1,2,7,23] //set which columns here }, {'sExtends':'pdf', 'mColumns':[1,2,7,23] //set which columns here }, ] }

This would help me a lot, or could you provide me the code as soon as possible, by email or instructions?-) Sure I could do it myself, but I think that when U made this wonderful code, U could do it like in minutes…:) Great work I must admit!!!

Hi, thanks, please copy code from http://pastebin.com/TADNMwSD and check if it’s what you need

exactly what I need! Thank you =)

js error in IE8

Hi, yes, I know about this error (there are some issues with jquery 1.9 and respond.js). If you don’t need responsive layout in ie8 you can delete
<script src="js/ie/respond.min.js"></script>
from <header>

This is by far the best admin template i’ve used! Thanks a lot for the good work over the time and keep it up :-)

I’ve got one question: in 1.7 you intrudoced editable items with x-editable. Thats really cool.

I didn’t get it working within accordion-inner containers because of the style overflow: hidden in the accordion-body wrapper. Is there any way to use the editable items within an accordion? i rellay need that … :-) Thanks a lot for having a look on that …

Hi, Thank you, you can add option mode: 'inline' to xeditable to have inline editing instead of popup. If you want popup editing please check placement: 'top|right|bottom|left' option. That should help. Full documentation for xeditables http://vitalets.github.com/x-editable/docs.html

Maybe i was not clear enough:

The layout is broken as soon as you use popup editing blocks within a container with a “collapse” attribute, because “collapse” means overflow: hidden and that makes the popup not visible completely but only parts of it. You can try it out. Positioning maybe helps in a few situations for certain screen resolutions, but not within small areas like sidebars or widgets. If these elements are collapsable the popup is not displayed currectly. Thats nothing you can fix, thats how css works :-) I know that. But maybe there is a good workaround for such a situation, like for example not use overflow: hidden in collapsable elements and instead work with display: none|block or something like this.

Hi, please open gebo_common.js add this js code
$('.collapse.in').css('overflow', 'visible');
$('.collapse').on('shown', function (evnt) {
  $(evnt.target).css('overflow', 'visible');
}).on('hide', function (evnt) {
  $(evnt.target).css('overflow', '');
});
to $(document).ready(function() {...} That should help.

Hi, When displaying a wide component, a 2500 pixels wide datatable, the component is clipped on the right side. Is it possible to display this item without using datatable built in scrolling?

Hi, new email sent..

Did you receive the email?

Hi, sorry for delay. Please check your email.

Scrollbar problem continues in Firefox as well. No developer version this time…

Hi, I see that ther is some issues with respond.js after updating jquery (1.9) I’ll investigate this more and I’ll include fix for this in next update.

Putting the IE-scripts in the footer as well?

Hi, yes, it doesn’t matter where you put this scripts. I’ll investigate this more and I’ll fix this in next update.

Hi TZD,

Do you intend create a table with subgrid? This has subgrid http://www.jeasyui.com/demo/main/index.php?plugin=DataGrid&theme=default&dir=ltr&pitem=

Cheers

Hi, there is already data grid included in Gebo Admin. Please check datatable examples http://tzd-themes.com/gebo_admin/index.php?uid=1&page=datatable ( http://datatables.net/index )

How can validate the component form chosen_a?... can validate select normaly but can´t do validate components multiselect chosen_a

Hi, please send me message from my profile page with more info about this request.

ok, already send please check still waiting solve this. Thanks

I’m having an issue with jquery_cookie.min.js. I’m assuming there’s a reason that doesn’t follow the convention; something was broken in jquery.min.js? I’m getting an error that it should be jquery.cookie.min.js.

Nm… I might have changed something in your code.

Hi, I changed jquery.cookie to jquery_cookie because of this error http://www.caiapps.com/406-error-to-retrieve-jquery-cookie-js-file/

Hi,

Datatable horizontal scroll example is not working correctly when page is resized:

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

(Google Chrome ver. 24.0.1312.57 m)

For example;

http://screencast.com/t/2R2HAqak

(Edit) Sorry, I saw the following message a few minutes ago:

http://themeforest.net/item/gebo-admin-responsive-template/discussion/2440015?filter=All+Discussion&page=24#comment_3257957

HI There! I have bought the template and i love it. Just missing one thing that would be absolutely perfect.

Any way to add some Invoices templates to it?

Hi, invoice template is included in Gebo Admin . Please check http://tzd-themes.com/gebo_admin/index.php?uid=1&page=invoice

Hi !

Same problem like HesaPesa, have an horrible scrollbar for the sidebar. I’m using Chrome Version 25.0.1364.84 beta-m and my screen is 1920×1080..

Any ideas ?

Thanks

Sébastien

I’m sorry guys but this is an automatic update from Chrome, i didn’t upload any special version, so most chrome user may have the same problems no ? With more than 1900 purchase i’m sure you could find time to resolv those kind of bugs for your nice customers ? ;)

Hi, I will fix this in next update.

Thanks so much ! Will be appreciate :)

I’m having difficulties implementing a datatable with both horizontal and vertical scroll, do you have any examples of this usage in your template?

http://datatables.net/release-datatables/examples/basic_init/scroll_xy.html

Hi, sorry, I don’t have this example in Gebo Admin.

Has anyone integrated some treeview with this theme? i’m in search of one which fits and works e.g. in the sidebar

thanks, i will have a look at that; currently i included arbo, which is part of the constellation admin skin (i had already an implementation of it in a asp.net servercontrol).

Hello;

This is really very nice, could you please provide hints o how to use the theme in RTL direction?

Thanks a lot.

Hi, Thank you. I’m sorry but Gebo Admin doesn’t support RTL at the moment.

Thanks for swift respond. Any plans to create RTL files for the theme?

Hi, I have this on my todo list, but this is not my priority, sorry.

Hello, can give me a PSD file? Thanks! 444621859@qq.com

Hi, sorry, I don’t have any psd files for Gebo Admin

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