2227 comments found.
hello , how i can make pdf file support arabic language thanks
Hi, First, great work, love it.
Is there a way to make all panels in a row to be the same height ?
Thank you.
Hi
With CSS no and there is no any solution included, but it can be done with JS or flexbox, which isn’t available by default in Bootstrap 3.* version.
I know 2 plugins for this functionality – MatchHeight and Conformity, you can try to play with both, but i’m not sure if this solution will work out for you.
Thanks!
Hey will the next update contain all the new pages ? You said me two weeks and here we are. Thanks
Hey
I mentioned that second part with new pages will be available within 2 weeks after first part, which will be out this week 
Thanks
Is the release this week or next week?
Also, is there a way to get larger flag icons?
Jesus Christ, the support here is amazing. I like coming back every now and then just to learn more from the author’s replies.
Can’t wait for the next version – desperately need blog 
Hi
Thank you very much, i’m doing my best
New version will be out very soon.
Hi
I would like to ask you if there is a way the alerts disappear after a few seconts displayed in a similar way to PNotify notifications.
Thank you
Hi
You can easily add a simple jQuery code with setTimeout function, that will hide or remove alert after some time, for example:
window.setTimeout(function () {
$('.alert').fadeOut(150);
}, 2000);
If you want to specify an exact match, you can add some additional class to your alert, for example .alert-growl, and use it as a selector.
Thanks
thank you
Hi there!
I’m trying to get ‘typeahead’ tags working with the steps wizard. However I believe there is a plugin conflict between the two.
I know this because I’ve commented out the code block below ’// Initialize Wizard’ in ‘wizard_steps.js’ and it works perfectly.
Here’s what it looks like before/after commenting out that code block: http://imgur.com/a/U1SOg
I’m using the standard code taken from the typeahead example file.
I’ve ensured that the plugins relating to these two plugins are up to date.
Help would be greatly appreciated! Thanks! Toby.
Nevermind managed to fix it but unsure how. Thanks anyway!
Hey Toby!
Yes, you just need to use only those initialization configs from wizard_steps.js, that you are actually using. So either remove unused ones, or move that config to another file.
Let me know if you have any questions.
Thanks
Thanks for the help. Just one more thing, the tag typeahead dropdowns show underneath the bottom of the wizards pagination buttons.
Example: http://imgur.com/yZF0u2j The code: http://pastebin.com/SX1z5GzH
I’ve tried playing around with the html but it’s difficult since the wizards html is generated afterwards. Any ideas?
As a quick thought – try to initialize typeahead after wizard or inside onInit event.
Let me know please if that worked out for you.
Thanks
I’ve moved the contents from http://pastebin.com/4VaAQdPu (excluding $(function){}) into the onInit event of the steps initialization.
The wizard initialization looks like: http://pastebin.com/vfaeYQrp
However in the console I’m getting the error: ‘TypeError: $(...).tagsinput(...).typeahead is not a function
$(’.subject-typeahead’).tagsinput(‘input’).typeahead(‘
Please don’t use a full content from JS files located in /assets/js/pages/ in development – they are for demo purposes only and contain multiple examples of multiple plugins. In your case, you are trying to initialize multiple examples of 2 plugins – tokenfield and tagsinput. So basically you are initializing plugins on selectors that don’t exist.
All you need to do is to copy/paste only 2 examples that you are using, for subject-typeahead and room-typeahead selectors.
Thanks
Thanks for the reply!
I’ve gone ahead and got rid of the initializers for both of those plugins, I don’t think that was the issue though (it wasn’t correct to have it anyway). If the code is placed in the demo file, everything works fine. However taking the contents, excluding the ’$(function) {}’, and putting it above, inside the onInit event, and after results in the same error.
If I include the ’$(function) {}’, this gets rid of the error and everything works as before. Not sure why that’s required? However, placed in all of these positions I still get the typeahead dropdowns appearing underneath.
Here’s an update of the file as it stands http://pastebin.com/9QEP0iwx
Just tried both ways – inside onInit event and after wizard config, both worked as expected. The only thing you need to fix is to set overflow: visible; for .wizard class.
My suggestions:
1. Remove path to form_tags_input.js file (<script type=”text/javascript” src=”{{ asset(‘assets/js/pages/form_tags_input.js’) }}”></script>)
2. Wrap all your js in
$(function() {
// your JS
});
This is a shortcut for jQuery’s ready() method
3. Double check your JS for extra code, related to jQuery plugins.
As an example here is my code – http://pastebin.com/ZqiJ9NDq
Thanks
Thanks for the suggestions. I had no idea that $(function) was a shorthand for ready()!
Setting overflow visible for the wizard didn’t work for me, but setting overflow visible for .content worked like a charm. I’ll also just return a max of 3 typeahead suggestions.
Again, thanks for the help. Everything’s working now.
Yes, basically both classes have overflow: hidden; this is needed if you want to add transitions between steps. Otherwise feel free to remove both.
Always welcome! 
Hi,
I would like to ask if it is possible, within the same form to have two different selects with different functionality. The one select options to have the search and the other to be simple, without search in it.
Thank you
Hi
Of course, you just need to initialize Select2 plugin twice with different settings and use different class names depending on which select you need:
// Select with search
$('.select-search').select2();
// Select without search
$('.select-no-search').select2({
minimumResultsForSearch: Infinity
});
Thanks
thank you
Hi Kopyvoy,
I have few questions:
glyphicons are different then icons shown on following url http://glyphicons.com/, any plan to upgrade them to latest glyphicons?
and I need to buy glyphicons separately?
Hi, the template fonts suddenly becomed ugly (bad render, pixels and not smooth), i’m not sure if its due to some misconfiguration on chrome but the same issue happens on firefox and i think i changed nothing on the S.O nor the template itself, any idea?
Nevermind, the issue was that i installed “Roboto” fonts on windows and all the browsers started to use that local files to render the fonts, solved by removing that fonts from the system.
Hi
Yeah, Roboto is a default font, the template imports it from google fonts. You can also use a local version with @font-face if you want.
Thanks
Hi
I would like to use the responsive datatables, but in some cases without the sorting, filter, pagination and show 10-100 select options. In some cases I fetch the three latest records, so there is no point for me to display these options. Is it possible?
Thank you
Please ignore above question, just show that basic responsive tables will do.
Regards
Hi Eugene. Do you have any idea why fixed header for datatables does not work when you have a column span more than 1? If I use
My code got cut off. It should say when I use th colspan=”3” it does not work.
Hey there
Unfortunately there’s a confirmed bug with colspans and fixed header extension. There’s a new version of Fixed Header and DT available, i am going to upload a first part of update next week, which will include latest versions of all datatable extensions. As far as i know they have fixed some bugs related to resize, i’ll dig deeper into this issue and let you know if that was fixed as well.
Thanks
Hi Eugene and team,
I happened to notice that you have examples in your framework for editable online tables – http://demo.interface.club/limitless/layout_1/LTR/default/handsontable_context.html
We really like this, but we need a programmatic export feature (like table export, or json or array export).
But this is based on this library – https://handsontable.com – which is not free (and costly). Export feature http://screencast.com/t/uUiKeZaErPZ4 is pro only.
Probably you have an editable template with datatables.js (http://legacy.datatables.net/release-datatables/examples/api/editable.html) in development? Probably with copy-paste functions?
Can you advise which is the best way to solve such an issue?
Hey
Yes, Handsontable PRO version is pretty pricey, but it supports a lot of additional features, including Export. Basic Handsontable version is free.
Datatables library has this feature, but it is paid as well – Editor, that example you showed was available in outdated DT version.
So if you want to avoid purchasing paid extensions, you would probably need to create this functionality yourself using existing API’s since both libraries don’t have this features in free versions.
I’d suggest to purchase DT Editable extension. Yes, it’s quite expensive, but you’ll get a lot more options for tables.
By the way, have you looked at datatables Buttons extension? It already has exporting functionality.
Thanks
Hi,
We found a nice and elegant solution, which i believe may be useful to you in your development of your framework
We use these templates http://demo.interface.club/limitless/layout_1/LTR/default/handsontable_context.html + this api method https://docs.handsontable.com/pro/1.5.1/Core.html#getData
In the end we can get data programmatically + add an abstraction layer to export data (which can be… data tables export feaeture) =)
> By the way, have you looked at datatables Buttons extension?
yes, we use it, it is very helpful =)
Best, Alex
Hi Alex
Thanks for the useful tip! 
Also next update, which will come out next week, will include updated Handsontable to the latest version, so don’t miss that.
Thanks
Very nice
Shall I receive email about the next release (do all subscribers receive)?
Yes sure, all users who bought the template will receive an email with update notification.
Thanks
Hello,
I’ve a about the models you use in the theme. I want to have a remote model that I can pass an ID with to the url that is received. This way I can develop more easily. Is there a way to achive that?
Regards,
SecretView
Hi
Sorry, i don’t clearly understand what you mean by models. Could you please provide more detailed information?
Thanks
As shown on http://demo.interface.club/limitless/layout_1/LTR/default/components_modals.html there is a model that loads a remote piece of HTML provided by the server. The way this code is written now:
// Load remote content
$('#modal_remote').on('show.bs.modal', function() {
$(this).find('.modal-body').load('assets/demo_data/wizard/education.html', function() {
});
// Init Select2 when loaded
$('.select').select2({
minimumResultsForSearch: Infinity
});
});
But I want this URL to be dynamic. So that I can display a model to give a reaction or to place a comment somewhere, but specified to the post type I want. The best case scenario is that I the url could take an id of sorts so : “assets/comments/writecomment/<ID>/”
Aha, understood. I can’t give you a specific example, because i don’t know project details.
I’ll give you a few links instead, so you can follow the logic – first and second solutions, those are for PHP.
If that won’t work for you, please let me know and i’ll try to find more detailed example.
Thanks
Hi are you still planning to implement a website tour feature/layout? I saw one comment from you last year that this was on your todo list.
Thanks, narc.
Hi
Yes, i am. Sorry, totally forgot about this feature – will try to add it in the next update.
Thanks
Awesome – thanks for the response.
Hi, I wanted to check if the virtual tour functionality is still on your roadmap for the next release?
Cheers, narc.
Hi
Not really, second part of version 1.4 doesn’t have any new components, only page kits. But it is planned for 1.5, including a lot of other improvements and new components.
Thanks
Hello! What about dark theme? Thank you!
Hello
Already planned for future updates, i think in the next one 
Thanks
Sound good! When will the next update?
I think in mid October, should be a quick update with a new layout, SASS and dark theme.
Thanks
Hi there! First of all my compliments on the theme! Your eye for detail is refreshing! Can you recommend a chat client that integrates with the theme? Thanks!
Hey!
Thank you so much!
What kind of chat do you want to integrate – simple conversation or live support chat?
Simple conversation – honestly i don’t know any good libraries that are ready for integration. Usually devs are using their own code base for conversation.
Live support – the most popular is Zendesk. Also i know Tawk, Clickdesk, LiveChat, Olark and Sendbird. But only Tawk is free.
Thanks!
Ideally functionality where the users can chat with each other. So it is not live chatting with a helpdesk setup. Thanks!
Aha, understood. Unfortunately i don’t know any good libraries that allows you to integrate code base on your server. As i mentioned in my previous comment, in most cases devs are using their own apps that are built according to specific needs.
Thanks
Hello, I just purchased your theme and i have a comment about LTR/RTL support. Your method imply that the user will use one OR the other, not both. Can you add the difference between both in a separate css(s) so in case of RTL we just add them and all is good ?! I know that this is what i’ll do.
Hello.
Both LTR and RTL versions are using same less files, except a few files where flipping are ignored.
This can be done in theory, but managing updates for this structure is very difficult – imagine, that you need to override all core bootstrap files, all plugins and all pages. The most common solution is to switch CSS files with JS, when user click on some link (for example, Change direction). In this case you can easily use 2 different versions of layouts and both will be always up-to-date.
Thanks
Hi
First part of update will be released next week, which will include bug fixes and all plugin updates. The second part will be out within a few weeks after first part.
Yes, i’ve added multiple views for gallery, so second part will include them.
Thanks
Hi Kopyov, thanks for letting us know.
I was asking about the Top navigation bar , this is really what a web app needs. http://bit.ly/2bakSSu
I saw a small menu, but nothing like this on the top for navigation. Our app has many pages which needs to be organized.
Do you also have slide-out login/ Feedback Tabs on the main page
thanks
Hey
Oops, sorry, misunderstood your question.
Basically you can use top icon tabs nav layout for tabs or a simple navigation which uses same classes as tabs nav. I haven’t tested it in navbar, so some tweaks may be required.
In the next update which will be out in October i want to include this type of navigation in navbar components.
Slide out tabs – nope, not at the moment. This is a custom functionality and i think if you use default markup for forms, this slide in form can be created within a few hours using very basic CSS and transitions 
Thanks
Hi, I have two more pre-sale questions.
1) In your demo, http://demo.interface.club/limitless/layout_1/LTR/default/datatable_extension_buttons_init.html the print button opens a new tab in the browser with the table to be printed. Is possible to be avoided (the new tab) and only the print dialog to appear?
2) Is possible left menu to scroll separately from the right pane (content)?
Thank you
Hey
1. Unfortunately this option doesn’t exist in Datatables, the only thing you can do with Buttons extension is to enable or disable auto print, which launches print dialog. But either way table will be opened in a new tab.
2. Of course, there are 2 options – with native scroll and with custom scrollbar.
Thanks!
Thank you