Discussion on It's Brain - Responsive Bootstrap 3 Admin Template

Discussion on It's Brain - Responsive Bootstrap 3 Admin Template

By
Cart 2,822 sales
Well Documented

Kopyov does not currently provide support for this item.

653 comments found.

Sorry for asking as much… i just want to draw a bar graph… i´ve added div class=”bars” id=”vBar”

like in the example and included all js but nothing is drawed… if i execute the code from bars.js in my javascript console the bars are shown … thanks

Hi again,

is there a class for a disabled Button ?

thanks

Hey.

What do you mean? Just a class or a part of some plugin?

I just need a styled disabled input button..

oh, general disabled button doesn’t have stylings i guess, but you can style it yourself by using

input[disabled] {
    // styles
}

or use a class, .disabled for example

Hi,

is it possible to define a custom progressbar in the document with <script>-tag ?

if i add following code and delete it from custom.js nothing happens:

$( "#progressbar" ).progressbar({
        value: <?php echo $val; ?>
});

<script type=”text/javascript”> setTimeout(function(e) { $( ”#progressbar” ).progressbar({ value: 19 }); }, 100) </script>

works but is there a clean solution?

You want just to use a progress bar with custom parameters and only on 1 page, did i get you correctly?

If yes, you can set a unique id to the div and use the same parameters from my demo, but with this id, so your code is correct

Hi Kopyov, this is a really nice template!! I have a little problem, I want to create a buttons with other colours. It is possible to send me the PSD files of the buttons?? I try to create manually but this is not good. The shadows are not displaying like yours. I’m talking about the png files which are in /images/ui/*Btn.png.

Thank you!

Hey. Thanks for purchase!

I’d suggest you to wait a bit, i am working on a new update where i’ll replace images buttons with buttons with css3 gradients ;) So you’ll be able to edit button colors directly in css

Dear Kopov, usually use the following js in various forms of your template in order to avoid duplication of transmission: <input type = “submit” value = “Submit” class = “greyishBtn submitForm” onClick = “if (this.value == ‘send’) this.form.submit (); this.value = ‘Please wait …’ ; this.disabled = true; ”/> ... But do not get it to work specifically in the “Wizard with validation – First.” How could adapt the above code, or what you’ve indicated earlier, in the form submit button type “Wizard”, as follows: <input class=”basicBtn” id=”back” value=”Back” type=”reset” /> <input class=”blueBtn” id=”next” value=”Next” type=”submit” />

I guess you need to edit a plugin file – jquery.form.wizard.js, you can add any values there for Submit button

Hello,

first of all this is a very nice template! Is there a possibility to create a wizard in v2.0 ?

Regards Leo

Hey.

Thanks!

Wizard already implemented, on UI elements page

I am really dumb when it comes to CSS . I checked already the line 431 of ui_custom.css and it is like .datepicker { width: 58px!important; }

I guess it should have 58px right? And it is indeed growing to 100%. In the example page ui_elements.html you managed to have it the proper size, but it’s not inside the dialog. Any other hint?

in ui_custom.css remove
width: 96%!important;

in line 376, it should work

I am trying to put a form inside a JQuery Dialog and I can’t figure out how to make the Datepicker to not use the full width of the dialog. I am trying to make a dialog with a Label and two date picker (for start and end date) and using the same html as you have on ui_elements for date pickers, the input field is stretching to match the width of the dialog. I want that it will occupy only it’s size so I can put another one in the right. Thanks!

If you mean input field of datepicker has 100% width, edit styles for a specific datepicker class in ui_custom.css, because by default they have 100% width

Hi Kopyov,

I got problem with form to submit via ajax (serialize).

Example :

<script type=”text/javascript” > $(function() { $(”.submit”).click(function() { var name = $(”#name”).val(); var username = $(”#username”).val(); var password = $(”#password”).val(); var gender = $(”#gender”).val(); var dataString = ‘name=’+ name + ‘&username=’ + username + ‘&password=’ + password + ‘&gender=’ + gender;

if(name==’’ || username==’’ || password==’’ || gender==’‘) { $(’.success’).fadeOut(200).hide(); $(’.error’).fadeOut(200).show(); }else{ $.ajax({ type: “POST”, url: “dsp_cfindexcharting.cfm”, data:$(’#form’).serialize(), success: function(response){ $(’.msg’).html(response); $(’.success’).fadeIn(200).show(); $(’.error’).fadeOut(200).hide();} }); }

return false; }); }); </script>

<form id=”form” method=”post” name=”form”>
  • <input id=”name” name=”name” type=”text” />
  • <input id=”username” name=”username” type=”text” />
  • <input id=”password” name=”password” type=”password” />
  • <select id=”gender” name=”gender”> <option value=””>Gender</option> <option value=”1”>Male</option> <option value=”2”>Female</option> </select>
<input type=”submit” value=”Submit” id=”submit” class=”submit”/> Please Enter Valid Data Registration Successfully </form>

When i click submit… it suppose to serialize the submission without refreshing the whole page. Unfortunately, when i use this theme. Its refresh everything.

Is there any workaround for my problem.

Regards,

Bakri

1. Are you using Uniform plugin for forms styling? Or still JQtransform?

2. For now this is not possible without additional code. In the next update i will add jquery UI tabs, that is possible there. Current tabs are just a set of simple jquery functions and events. Or you can try to play with hashchange

Hi Kopyov,

How do i put 2 or more dynamic table in one page. I’ve try using your example some how only first table appear. 2nd n 3rd dynamic table failed.

Can u gimme hint how to implement this?

Thanks mate

Check for unique id’s for tables, or use classes which run datatables plugin instead of id’s ;)

Hello! Thanks for the answer above, I resolved the issue. I wonder also if there is some js in the design or method to prevent double click on form submissions, avoiding duplication of transmission?

You can try to add Disabled attr to the button after the first click:

// assuming you're talking submit buttons
$("form :input:submit").click(function() {
    this.disabled = 'disabled';
    // or $(this).attr("disabled", true);
});

Hi bought this about a week ago and its really easy to work with—Very Nice!. I’m not too familiar with javascript and the only thing I can’t figure out is how to limit Maximum Characters or limit the number of keywords on the tagsinput js. Is this something you could add? either would be great.

Hi.

Full set of plugin settings:

$(selector).tagsInput({
   'autocomplete_url': url_to_autocomplete_api,
   'autocomplete': { option: value, option: value},
   'height':'100px',
   'width':'300px',
   'interactive':true,
   'defaultText':'add a tag',
   'onAddTag':callback_function,
   'onRemoveTag':callback_function,
   'onChange' : callback_function,
   'removeWithBackspace' : true,
   'minChars' : 0,
   'maxChars' : 0 //if not provided there is no limit,
   'placeholderColor' : '#666666'
});

More info and complete documentation you can find here

This is not only a theme or template.. With all the included plugins and detailed documentation this is absolutely amazing and definitely worth the money! Outstanding, five stars! :inlove:

Thank you for kind words!

Hello there, There is a way to add an horizontal menu with submenus?

Example: http://cssmenumaker.com/menu/grey-impression-drop-down-menu-0

But stylized like your theme…

Hello.

Sorry, i don’t have any plans to add such menus. You can do it yourself, that should be pretty easy with existing styles

Hi dear, I catched an error in theme like this http://d.pr/i/hSeV According to pictue, styled drop down list is not fitting in the page. How can fixed that? Thanks.

Hello! In the form “Wizard with validation” – located on page ui_elements.html-how can implement validation for more than an imput, since the proposed model can only use the “req” to name just one?

Hey.

You can use .required for the input field, if you need to validate multiple input fields with the same message – simply add class=”required”. If you need different messages, set necessary settings for the validation in custom.js file for the validation

erro line 211 =(

give me your email, i will send a js file. Or simply remove commas if you’ll find those errors. IE shows an error if the latest element contains a comma

Remove comma from line 111, after

required: "Bazinga! This message is editable" 

the error remains only in IE =(

but this error only happens in IE =(

try to remove a comma from that line. And check again that code for the correct syntax

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