426 comments found.
Is it possible to have multiple table sections in a table section? (At table tools page)
Hi, thank you very much for your purchase! 
Unfortunately, <tbody> elements can’t be included inside other <tbody> elements, so you can’t have multiple table sections in an existing one. If you like though, you could include collapsible panels inside a table section. If that works for you, please send me a message through my profile’s contact form and I will get back to you with an example asap! 
Hi, thanks a lot for your suggestions, I will do my best to include similar features in OneUI with future updates, so stay tuned! 
You can currently find various badges examples in Typography and Navigation pages under ‘UI Elements’ (also in user navigation lists – online status colors). Moreover, you can find simple alert messages examples in Activity page (also under ‘UI Elements’). Hope that helps, happy coding! 
When will there be an update on the theme? Still things missing
Thanks in advance!
I’m working hard on the next OneUI update (coming by the end of August), so please stay tuned for more great features! 
I’ve already implemented one of your suggestions (Tree Views), so if you need this feature sooner for your project, feel free to get in touch through my profile’s contact form and I will get back to you as soon as possible! 
Hi, i have mod that may improve your dashboard.
Often we need 100% height for main content area or some elements into it. Eg, for chat page, where table with 2 columns contains list of active chats and users list.
I try this patch for main#main-container
<main id=”main-container” class=”absolute_fixed”> ...
main.absolute_fixed {width: 100% !important; position: absolute; height: 100%; }
@media screen and (min-width: 992px) { main.absolute_fixed {width: calc(100% – 230px) !important;} }
After that I add class .height-100p {height: 100%} for my tables and divs.
It works fine for all resolutions, but this is very hardcore solutions ) May be you add more objective solution into next patch and then we’ll get ability for flexible 100% height main content area.
Thank you.
PS: also you can improve scrollable areas for 100% height blocks
Hi, thank you very much for your purchase! Thanks a lot for your suggestions and solutions, too. I very much appreciate the time you took to get back with the suggested code 
There are already plans for including such layouts (with 100% height) in the upcoming OneUI updates, so stay tuned and happy coding! 
From base_ui_blocks_draggable.html, draggable it seems doesn’t work on mobile device, (i did test on my iphone safari, doesn’t work)....
jQueryUI draggable feature is not available on mobile phones since the library only checks for mouse and not touch events. If you would like to make this feature compatible with mobile, though, you can just include jQueryUI Touch Punch http://touchpunch.furf.com/ to your page after jQueryUI library and it will make it work with touch events, too! 
Hope that helps! 
When I enable the sidebar for xs screen using ‘sidebar-o-xs’, the sidebar fills the whole screen of the mobile phone instead of just the 60px sidebar-mini. On the desktop it works fine.
Hi, thank you very much for your purchase! 
Please send me a message from my profile’s contact form from the account the purchase was made and I will get back to you as soon as possible! 
I want to know, how to programmatically make the checkbox status to be “checked”? but not let a user click it to change the status as “checked”.
Hi 
To programmatically change the state of a checkbox you can use the following (just like a normal checkbox):
$('#accept_tos').prop('checked', true); // Enable it
$('#accept_tos').prop('checked', false); // Disable it
Moreover, if you would like the user to not be able to change it by clicking, you can just change the ‘label’ element to ‘div’:
<div class="css-input css-checkbox css-checkbox-primary">
<input type="checkbox" id="accept_tos" name="accept_tos">
<span></span> I agree
</div>
Hope that helps! 
Thanks, i have done it by your reply, and i have other 2 questions, examples are from base_ui_widgets.html. (1)
<button type="button" data-toggle="block-option" data-action="refresh_toggle" data-action-mode="demo"><i class="si si-refresh" /></button>the “refresh_toggle” action, when user click the button, that will show an animation icon, how to change the default icon? (2)
<button type="button" data-toggle="block-option" data-action="fullscreen_toggle"><i class="si si-size-fullscreen" /></button>the “fullscreen_toggle” action, i want to toggle fullscreen for specific element, for example, to toggle fullscreen for id=’mydialog’ or class=’mydialog’, how to do?
I’m glad it works fine 
To change the loading icon, you will have to update the following ‘content’ value in less/modules/oneui.blocks.less (with a new icon code of your preference which you can find in the Simple Line Icons less file):
&.block-opt-refresh {
...
&:after {
...
content: "\e09a";
...
}
I have already added though, various classes in the upcoming 1.2 update, which you can use to enable alternative loading icons!
To manipulate a block’s fullscreen state (eg with id=”mydialog”) from a simple button, you could use the following code on button click:
App.blocks('#mydialog', 'fullscreen_on');
App.blocks('#mydialog', 'fullscreen_off');
App.blocks('#mydialog', 'fullscreen_toggle');
Moreover, the live examples at Blocks API page might come in handy.
Hope that helps! 
Hi, Nice template. I noticed that when the customized checkbox state is switched from on to off or vice versa, the underlying checkbox state is not changed. How can I work around this?
Regards
Hi, thank you very much for your purchase, I’m very happy you like OneUI! 
Please have a look at your inbox, I just replied to your email! 
Hi, I used “prop” and it now works fine. Thanks
That’s great, I’m glad I was able to assist! Happy coding! 
Great template, we like it a lot! Question: Any ideas on how to reduce some of the “wasted” vertical space between the page header (Title, Subtitle) and the content (where widgets or blocks start)? Thanks.
Hi, thank you very much for your purchase, I’m very glad you like OneUI! 
Please send me a message from my profile’s contact form with the section you would like to have condensed vertical space and I will get back to you as soon as possible with example code! 
Hi Pixel, I’m actually working with your template (for some time now) and after hours and hours of searching through themeforest, it seems that yours is the best (at least for me). I’m very happy to work with it. This theme is clean, beautiful and simple to get started with.
The only thing I hope is that you add other features like more Charts choices, more Form options (time picker, ...), Vector Maps, Ribbons, SweetAlert. It would become a best seller
Good work and keep it up!
Hi AngelSky, thank you so much for your purchase and for your inspiring and motivating comments! I’m very happy you like OneUI! 
I will do my best to further enrich the template and include more features like those in the future, so stay tuned! Thanks a lot for your suggestions and happy coding! 
Hey folks,
this template looks rly nice!
I would totally buy when it get’s the following features:
- Chat UI
- DataTables editable
- Tree View
- a better looking datepicker
Thanks in advance 
Hi! Thanks a lot for your interest in OneUI and for your suggestions! I’m very glad you like it! 
I kept notes and I will try to introduce more features like those with future updates, so stay tuned! 
pixelcave – Just installed the update. Thanks! I just wanted to call out a couple of issues:
- oneui.min.js is now app.js (this is not explicitly called out in the changes). Also, bootstrap.min.js and other CORE files are now unbundled and no longer included in oneui.min.js (obviously because this file no longer exists). I personally prefer the unbundled files, but some buyers might get confused when implementing the update.
- The CSS for the front end horizontal nav did not make it into the oneui.min.css file. I had to grab the one.ui.css file from the samples
Other than those two issues, its a nice update. Do you have any plans for additional themes? Thanks.
Hi, thank you very much, I’m happy you like the update! 
Let’s have a look:
- There wasn’t any changes to the structure or names of the core JS files. They were included unbundled in the source code (HTML and PHP versions) and bundled (oneui.min.js) in Get Started folder in both release (1.0) and first update (1.1).
- Regarding oneui.min.css, you might have to clear your browser’s cache when updating the file with the new one since the .nav-main-header classes are included in the file. There is also a new page in the Get Started folder which showcases the horizontal navigation and uses that file. Your browser must have been loading the previous styles from its cache!
- Yes, I might add new color themes in the future but if you like, you can also use the related mixin to generate your own by adding colors of your choice!
Hope that helps but feel free to let me know if you need any further assistance! Happy coding! 
thanks this update i so nice ! Any plan on ecommerce and elearning backend update? Thank you!
Thanks a lot for letting me know, I’m very glad you like the update! I will definitely add eCommerce and eLearning content with future updates, so stay tuned! Happy coding! 
Congrats on the very awesome admin ui, clean and elegant you have here!
Is it possible to use the DataTables sortable classes on a static table?
What i mean is, i’m not using DataTables nor i’m willing to use it as i’m using something different, but it would be nice to be able to use these classes without the DataTables boilerplate as i find it would be nice to be able to apply these css classes even on static tables.
The css classes i’m talking about are the sortable, sorting_asc and sorting_desc where we see the nice arrows on the table headers.
I know i can put these on my own project, but i find it would be nice to have this by default and this is something that most of the themes we see here lack support of, it’s only DataTables stuff.
Regards
Hi, thank you so much for your purchase and kind comments, I’m very happy you like OneUI! 
You can use these CSS classes (sorting, sorting_asc & sorting_desc) on <th> elements of your static table. They should work fine as long as you add the class ‘dataTable’ to your <table> element and also include the CSS stylesheet of DataTables in the page.
Feel free to let me know about any useful table plugin that might come in handy and I will try to integrate and include it in a future update! Moreover, I hope that you found the custom table tools useful! Of course, if you have any suggestions about any new tools, let me know!
Thanks a lot for your feedback! Happy coding! 
Hey, thanks for the reply!
Unfortunately that doesn’t work. I’ve added the dataTable class to the
Nevermind, it was typo on the data tables file include, i was doing jquery.datatables instead of jquery.dataTables, all good.
Thanks.
That’s great, I’m glad it works now! 
Happy coding! 
Thank you for your updates.
Hi Davis, thank you very much, I’m very happy you like the update! 
Stay tuned for more in the future and happy coding! 
I really love this Theme, you’ve done excellent work ! Thank you.
Thank you so much for your purchase and inspiring comments! I’m very glad you like OneUI! 
Happy coding! 
Hi there, this theme is well done, clear and clean. Really amazing: if someone is thinking about it, buy it without any doubt. I purchased this a month ago and I already implemented it in a project, so… it will be wonderful have a changelog where I can see what’s changed and where, in order to update my project without any issue. Please let me know… Thank you in advance.
Hi, thank you very much for your purchase and your motivating feedback! I’m very glad you like OneUI! 
Please have a look at the documentation in the 1.1 package where you can find a ‘Changelog’ and an ‘Updating’ section. If you still need any further assistance with the update, feel free to get in touch through my profile’s contact form and I will get back to you as soon as possible.
Thanks once again and happy coding! 
Hey all! I just wanted to let you know that OneUI 1.1 update just went live and comes packed with many new awesome features, fresh pages, improvements and optimizations! All existing customers can download it for free from their downloads page. Changelog and update information can be found in the updated documentation! 
-
NEW FEATURES
- Horizontal header navigation
- Scrollable areas
- Forum Categories
- Forum Topics
- Forum Discussion
- Forum New Topic
- Blog List
- Blog Grid
- Blog Story
- Blog Story Cover
- Cookies option for color theme
-
UPDATES
- Bootstrap (latest version)
-
IMPROVEMENTS
- Disabled states for CSS checkboxes and radios
- Various improvements and optimizations
-
FIXES
- IE9 rendering issues
- Various small fixes
If you have any questions feel free to get in touch through my profile’s contact form, I’ll be more than happy to assist you as soon as possible! Happy updating and coding! 
Is there a frontend option to have a horizontal top level menu?
Hi, thank you for your interest in OneUI! 
OneUI 1.1 update just went live and a horizontal top level menu option is now available in the frontend! 
That was good timing, I like what you’ve done.
The only thing I would like different, is the blog in the frontend doesn’t seem like a blog. It would be nice to have a more traditional option with two columns, with the sidebar having the blog categories and recent posts etc.
Thank you, I’m very glad you like it! 
Thanks for your suggestion, too! I’ve showcased modern and simpler blog layouts in this update but adding a classic one with a sidebar can only be a good idea!
I kept notes and I hope to include one in the future, so stay tuned (moreover, for now, a sidebar could easily be added to existing pages by using the Bootstrap grid) 