How to configure Grafana (Free version) with oAuth Okta, with SSL on Kubernetes
Introduction In our previous post How to configure Grafana on docker, we saw how…
February 01, 2018
Code that I have is:
handleSubmit() {
this.ui.form.validate({
debug: false,
highlight: function (element) {
$(element).closest('.form-group').addClass('has-error');
},
unhighlight: function (element) {
$(element).closest('.form-group').removeClass('has-error');
},
errorElement: 'span',
errorClass: 'help-block',
errorPlacement: function (error, element) {
if (element.parent('.assertion-group').length) {
error.insertAfter(element.parent());
} else {
error.insertAfter(element);
}
},
submitHandler: function () {
//my code to submit
}.bind(this)
});
},
It was:
<button class="btn btn-success" id="buttonAction" type="button">Submit</button>
I changed it to:
<button class="btn btn-success" id="buttonAction" type="submit">Submit</button>
So, I needed to change button type from the button to submit. And, the problem resolved. Huh
Introduction In our previous post How to configure Grafana on docker, we saw how…
Introduction Npm has a tool called: npm audit which reports if your packages or…
Introduction In this post, we will see: use Grafana Community Edition (Free…
Introduction In this post, we will learn about some of Best practices while…
Introduction Drupal is an awesome CMS. Drupal content type form, allows you to…
Introduction In this guide, We will learn on how to create some handy command…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…