2227 comments found.
Hi, gotta question about using a modal when clicking an event on the event calendar. I found code on how to add a click event to the calendar events. But want to know how to switch it from an alert to opening a modal. Thanks so much for your help. This is my starting code:
$('.fullcalendar-external').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true,
defaultDate: '2016-06-12',
events: eventColors,
lang: 'en',
droppable: true, // this allows things to be dropped onto the calendar
drop: function() {
if ($('#drop-remove').is(':checked')) { // is the "remove after drop" checkbox checked?
$(this).remove(); // if so, remove the element from the "Draggable Events" list
}
},
eventClick: function(calEvent, uid) {
alert('Event: ' + calEvent.title);
alert('UID: ' + calEvent.uid);
}
});
I found a good example and it works perfectly: http://www.mikesmithdev.com/blog/fullcalendar-event-details-with-bootstrap-modal/
Hi,
Yep, right. You just need to initialize modal with JS:
eventClick: function(calEvent, uid) {
$('#myModal').modal();
}
or you can use “toggle” method to manually show/hide it:
eventClick: function(calEvent, uid) {
$('#myModal').modal('toggle');
}
Thanks
Thanks, I have that working. But now I am trying to put and edit button in the modal for each calendar event, so that when I click the edit button, it opens a new modal with edit form. I got that to work, but it just opens the modal over top of the other modal so that there are two modals on the screen. How can i do it so that when I open the second modal, the other modal closes? Thanks.
Once again, I found the solution right after posting my question. I am sorry for that. Solution is data-dismiss=”modal” to close the open modal.
Yep, that’s a correct one – multiple open modals aren’t supported, you can also programmatically close any modal by using ‘hide’ method:
$('#myModal').modal('hide')
Thanks
Thanks. I am having a lot of trouble with passing data from the calendar to the second modal. The first modal I open from the calendar when I click an event works fine because I pass the following info:
$('#modalTitle').html(event.title);
$('#modalDesc').html(event.description);
$('#modalDate').html(event.edate);
$('#modalID').html(event.uid);
however, when I click the edit link in the first modal to open the send modal, I need to pass a lot more info. So I was thinking about opening the second modal with ajax to a page which has a query to pull my data. But I need to pass the uid. I have found no way to do that since the uid will be undefined if I try to pass it. This is very tricky for me since I am not very experienced in javascript and ajax. Do you have any suggestions? Thanks!
Hi,
Perhaps this example will give you a hint on how to achieve a desired functionality.
Basically as far as i understand how it works, you just need to attach a click event to event inside eventRender function and programmatically show/hide modal with dynamic data.
Hope this helps.
Thanks
Hi !
Thanks one more time for this very beautiful theme.
I have a problem : When I want to detect a change event on a bootstrap switch (input type checkbox), the event is not triggered.. For example a simple $(’#myid’).change(function() { doesn’t work…
Have you an idea to help me, please ?
Thx, Eric.
Hi,
You need to trigger a custom switchChange event:
$('selector').on('switchChange.bootstrapSwitch', function(event, state) {
console.log(this); // DOM element
console.log(event); // jQuery event
console.log(state); // true | false
});
Let me know please if that worked out for you.
Thanks!
Ouahhh thanks for your very quick answer and solution ! It works perfectly.
Thanks a lot
Eric.
You are always welcome 
Hi
Again thanks for a fantastic bootstrap theme 
This time i have a problem with one of the editors. I really like the WYSIHTML5 editor, but it wont change font color. Not even in your own live preview site.
For example this site: http://demo.interface.club/limitless/layout_1/LTR/default/editor_wysihtml5.html
Tried in both Google Chrome and Internet Explorer + Microsoft Edge.
Do you by any chance know why this doesn’t work?
Kind regards Johnny
Hey Johnny,
Thanks for reporting. There is a minor issue in wysihtml5.less file, please download updated one. And you need to specify a css file to style editor content. To do that, you need to add the following option with a path to your CSS file with editor styles:
// Simple toolbar
$('.wysihtml5-min').wysihtml5({
parserRules: wysihtml5ParserRules,
stylesheets: ["assets/css/components.css"], // add this line
"font-styles": true,
"emphasis": true,
"lists": true,
"html": false,
"link": true,
"image": false,
"action": false,
"color": true
});
Will include this fix in the upcoming update.
Thanks
In 3D BAR chart we are using to display active client list and when chart display can we click result so it can show values of that active users?
How to change the charts colors
Hi,
1. Although ECharts supports click event, you’ll need additional JS code to grab values from the chart and display it in some popup. There is a built in component, which displays values in popup, but it is available only as a part of toolset. Previously i’ve sent you a link to example – Stacked columns, click on green list icon in toolset.
2. As explained in previous comment:
Easily. If you want to change global defaults, you need to edit limitless.js file (assets/js/plugins/visualization/echarts/theme/), this file contains default colors. Or you can change colors separately for each chart using itemStyle option.
Thanks
Hello, that’s an amazing template. Thanks for it. Just a small issue with menu on mobile view, when I touch sub menu to open it, the menu close. Have you a workaround to make the menu with sub menus works on mobile ?
Thanks for your help Luc
Hey,
This issue is in my todo list for the upcoming update. It’s related to the lack of :hover support on mobiles, will change it to click or touch events.
Thanks
Excellent ! Thank you very much !
Could you publish your code samples for how you create your Dimple charts on the template demo here? The dimple div’s are empty in the page that comes with the download.
http://demo.interface.club/limitless/layout_1/LTR/default/dimple_bubble.htmlIgnore me, found them here 
Hi Kopyov,
I’m expecting new widgets (charts, stats, social, users, cards, etc), pricing tables, off canvas menu on next update, please :))
Thanks
Hey,
Working hard on those additions. Will keep everyone posted on progress when i got everything wrapped up.
Thanks
Thank you so much!
Hi there—great work on this template! I was wondering how we could display all data in a DataTable instead of separating data into pages?
Hey,
You just need to set paging option to false, this will remove pagination:
$('#example').dataTable({
paging: false
});
Thanks
Hi Kopyov,
Thank you for your quick reply. When I try this, the formatting on the table gets a little messed up. Do you have an idea on what might be the cause for this? Here are two screenshots showing what I mean:
Before change: http://imgur.com/rZ8MRYf After: http://imgur.com/preeAnu
Before change: http://imgur.com/smISG02 After: http://imgur.com/8wbXcVM
It’s particularly interesting that in the first set of pictures, the “Filter:”label changes to “Search:”
Hey,
Aha, looks like all other options are missing. Can you please share your full configuration of datatable? Here or email me to e.kopyov[at]gmail.com
Thanks
Thanks, I’ll send you it via email 
For others who may be wondering, here is the code that Kopyov sent me that works:
// Initialize datatable with options
$('#example').dataTable({
autoWidth: false,
dom: '<"datatable-header"fl><"datatable-scroll"t><"datatable-footer"ip>',
paging: false,
language: {
search: '<span>Filter:</span> _INPUT_',
lengthMenu: '<span>Show:</span> _MENU_',
paginate: { 'first': 'First', 'last': 'Last', 'next': '?', 'previous': '?' }
}
});
Thanks for sharing! 
Hellow how install ckeditor uploadimage
Hi,
1. Please download Upload Image plugin for CKEditor.
2. Extract the downloaded plugin .zip into the plugins folder of your CKEditor installation
3. Enable the plugin by using the ‘extraPlugins’ configuration setting, for example:
config.extraPlugins = 'uploadimage';
4. Configure plugin.
That’s all. Thanks
config.extraPlugins = ‘uploadimage’;
config file ?
config.extraPlugins = ‘uploadimage’;
i put code in folder ckeditor /config.js
but why can’t upload images
You need to add it to already existing code. In config.js find config.extraPlugins = ‘pbckcode’; and change it to:
config.extraPlugins = 'pbckcode,uploadimage';
So your code will look like:
// Extra plugins
// ------------------------------
// CKEDITOR plugins loading
config.extraPlugins = 'pbckcode,uploadimage'; // add other plugins here (comma separated)
// PBCKCode customization
config.pbckcode = {...}
// Upload image customization
config.uploadimage = {...}
Please refer to documentation of CKEditor.
Thanks
Hi
We are using 3D library charts
1) When we dont have data in charts we are getting chines words can we change that ? 2) When we display data in charts can we get the values in popup screen, like i am displaying 5 transaction values then that values i want to display in popup screen 3) I want to change the colors for charts can i do that?
Hi,
1. Since ECharts is a chinese library, all default texts are on chinese. Fortunately you can customize it using available options. For empty data list you need to use NoDataLoadingOption and change ‘text’ property.
2. Yes, there is an option in toolbox where you can see chart data in popup, check Line and point options example with toolbox.
You can also configure toolbox according to your needs.
3. Easily. If you want to change global defaults, you need to edit limitless.js file (assets/js/plugins/visualization/echarts/theme/), this file contains default colors. Or you can change colors separately for each chart using itemStyle option.
Thanks
I am trying to get one panel on screen to close by default. I’m not a coding guru, so I can use a little spoon feeding here.
I’ve tried this:
<div class="panel panel-primary panel-bordered .panel-collapsed">
<div class="panel-heading" style="height: 60px;">
<div style="float: left;">
<h4 class="panel-title">Jump To</h4>
</div>
and I've tried this:
<code>
<div class="panel panel-primary panel-bordered .collapsed">
<div class="panel-heading" style="height: 60px;">
<div style="float: left;">
<h4 class="panel-title">Jump To</h4>
</div>
but neither will close that panel by default.
Any suggestions? Please be specific.
Thank you!</div></div></code></div></div>
Hi,
You are doing everything correctly, the first example is the correct one. You just need to use ”.panel-collapsed” without a dot:
<div class="panel panel-primary panel-bordered panel-collapsed">
...
</div>
Dot and hash are CSS selectors: dot signifies class name, hash signifies a single unique element. They are required in CSS/JS, but not in HTML, in HTML you need to use:
1. class=”foo” (in CSS .foo {})
2. id=”foo” (in CSS #foo {})
Hope that helps.
Thanks
Is there anyway this can work with my wordpress? Also, I am not experienced in anything advanced in computers, would you be able to install this for me? And once installed, how easily will I be able to configure everything inside ? Im not sure exactly how it would keep track where the leads would come from? example from twitter. How? Is there a easy way to set it up in a menu?
Hi,
Limitless is a static html template, not a ready-to-use application. It doesn’t have any server side integrations. However you can create a Wordpress admin theme using Limitless as a base, but this requires additional development and integration.
Thanks
What is the best framework / stack to use with limitless?
Mean or Wamp stack ?
Hi,
I am not sure if i can suggest you any of those, because i’m not a full stack developer. I think it depends on the project, server load, # of visitors etc. Sorry about that.
Thanks
Hi I’ve purchased and downloaded Limitlesss And can’t seem to unpack the ZIP file…Any thoughts on this Best Craig
Hey Craig,
Hmm, that’s weird. Do you get any error or package is incomplete after unpacking?
Thanks
No errors…I will move the ZIP file to a bigger PC and try again… Best Craig
Please try 3rd party apps such as 7-Zip or Winzip as well if default tool won’t work.
Let me know please if any of those options worked out for you.
Thanks
OK we got it you might to consider Sub Zips so that the overall size is more managed
Best
Craig
Sure, in upcoming update i’ll change the files structure of layouts, so it will help to reduce the size 
Thanks
Thanks – Have great day… Best Craig
hello, great job with the template first of all and 2nd can you tell us (maybe i am not the only one) how to update summernote to latest version, i tried downloading the newst version of template and replace the the old (0.6.0) one and i have no icons on the editor where are the dependecies so i can update all thats needed.
also the new summernote seems to have a problem when insertng images, the resizing outline is not aligned corectly with the border of the image inserted.
Hi,
In latest update i’ve updated Summernote to the latest 0.8.1 version, you just need to re-download template from your Downloads and replace summernote.min.js and summernote.less files, also add specific icons set in css/icons/ folder.
Let me know please if you have that issue with borders as i can’t reproduce it.
Thanks
i uploaded 2 screenshots of the problem 1st is using a .png and second a .jpg as you see the size control border is rendered behind the image and has an offset: 1: http://2.1m.yt/CfGL7m.png 2: http://2.1m.yt/aqFHve1.png
this result is using both ff 46.0.1 and chrome 50.0.2661.102 and using the preview of layout1 ltr default, presented by theme forest hosted here: http://demo.interface.club/limitless/layout_1/LTR/default/editor_summernote.htmlAhaa, understood. I think it can be fixed with:
.note-editing-area {
position: relative;
}
As now it’s related to a parent container. Please try this one and let me know if that worked out for you.
Thanks
i also had to add to .note-control-selection : { z-index:9999; } ... but not sure if this is the best solution
let me know if you have other ideas. i hope i can update the onImageUpload function that i had written for the 0.6.0 version to upload files and add them to mysql, thanks for your fast support!
Yeah, all good, quick note – add z-index: 99; instead to avoid conflicts with fixed components.
You can try, hopefully it won’t have any major issues 
Thanks
Please check Anytime pickers, The Day is showing wrong. June 1st is Wednesday, but it shows Monday.
Please tell me how to fix this asap, please. This is a bug we have in production.
Thanks
Hi,
As a quick fix open anytime.less file located in assets/less/components/pickers/ and remove this bit of code:
.AnyTime-dom-btn-empty {
display: none;
}
and recompile your less files.
Downside is that all empty cells will be always visible, this picker doesn’t allow you to show dates from other months.
Thanks
Hi
how show sidebar in mobile version By default
Hi
Just replied to your ticket.
Hi,
I need some support on your template.
How i can monitoring the random data of template charts. For example, i can’t using the Path transitions chart (D3 library) and Gauge charts. When I copy the chart sample code for other html file doesn’t work.
Note: The JavaScript scripts are exported
Kind Regards,
Hi,
Could you please send me the code you are trying to implement to e.kopyov[at]gmail.com? D3.js is a very powerful library, however it’s not reusable and requires specific setup for every chart. I just need to check how you initialize charts.
Thanks
Done
Just replied back
Hi,
I’ve done a search through the comments you posted, and noticed that you have mentioned that you are working on the AngularJs version of the theme; Just wanted to know if you have any plan to provide the angularjs version in near feature? or if you know someone else has done such an approach which can share some guidelines to make the theme work with AngularJs?
FYI, your theme can match perfectly with our project requirements, but the only issue is the AngularJS.
Thanks in Advance.
Hi,
Angular version will be released in one of the upcoming updates this summer. Some time ago i was providing support for users who integrated Limitless into Angular and Meteor based applications themselves, they didn’t experience any major issues, except Meteor guys who had minor issues with less compilation. But overall everyone was satisfied.
Currently i’m working on a new update which will be out in June and include a lot of new stuff. After that will be BS4 and SASS versions and then Angular and probably Meteor.
Thanks
Hi I’ve the same problem with http://themeforest.net/comments/13250512 but when I apply the fix you suggest, the table overflows the container when the screen size is smaller.
Hi,
Unfortunately yes, this is one of the main issues with responsive tables. Default Bootstrap solution for responsive tables is horizontal scrollbar, but it hides all components that appear outside table edge.
There is an option to add scrollbar only on mobiles using .datatable-scroll-sm, .datatable-scroll-lg and .datatable-scroll classes that add horizontal scrollbar on small screens only (.datatable-scroll-sm). But that doesn’t solve the problem with dropdowns inside table.
The most common fix is to use Responsive extension for Datatables, which hides columns on small screens.
Thanks