Is there a way to hide the in between dates in the xKeys in morris js? - morris.js

im working with morris js and i was thinkin in a way to hide these dates that come in between the dates that was given to the data option, but I couldn't come up with a answer, please someone help me.
there is my chart:
my chart
and this is my code:
code
thanks in advance!
I tried to use the option given in the plugin page but none of then have worked, maybe im missing something

Related

Vuetify date picker: multiple event indicators

I'm learning Vue and Vuetify right now. And I want to develop a Calendar tool combining Vuetify with Laravel.
With v-calendar it is possible to render multiple 'event-indicators'
See example
With Vuetify 'one' event indicator is possible (example), but I don't know how to manage to make it two or even three. Is there any solution for this?
Yes we can, just pass an array for all the colors you want to assign on a particular date, using the allowed-dates prop. It has been included in the vuetify examples as well.
Refer: https://vuetifyjs.com/en/components/date-pickers/#date-pickers-events
Yeah had a play around with it but doesn't seem you can get it to display multiple events as it is :( You can submit it as a feature though here and they're usually quite quick to respond if it's possible or not. Sorry I can't help any other way.

Xpath is not working for the following button

Following is the xpath which is not working:
driver.findElement(By.xpath("html/body/div[10]/div[2]/div/div[5]/div[3]/button")).click();
The image shows the button which is not working
Why not Try CSS Selectors.
driver.findElement(By.CssSelector(".btn"));
Try this:-
//div[#class='text-right btns imme_result_btns']/button[#type='button']
If it didn't work then please share your HTML code in question so we can help you better
Hope it will help you :)
get back to me if still facing any issue :)

Dropkick and organinctabs

Im using dropkick on a site and it works really well and looks great. However when I try to use it within a tab (organinc tabs) the dropkick data is on sent.
Any ideas why this may be happening and solutions would be greatly appreciated.
thanks in advance.
The problem is that dropkick is not intiated on a hidden div. You can use Jquery to activate dropkick once the tab in question is selected.

Dojo grid grouping head like Excel

I want to display the following grid header style like Excel. Is there some perfect solutions available? And I've found some solutions, but the cells borders cannot display normally.
Thanks in advance.
That's easy to do with Dgrid and it's CompoundColumns mixin.
See the docs here : https://github.com/SitePen/dgrid/wiki/CompoundColumns
See the tests here : http://dojofoundation.org/packages/dgrid/js/dgrid/test/complex_column.html

In Dojo, how to programmatically click root of a Tree?

I am creating a web application using Dojo, composed of a treeView in the left side and a Data Grid on its right. After being loaded,I want the root of the treeView to be focused and clicked, so that the content of the datagrid can be changed accordingly.
I haven't success in doing this..
Thanks for your help
Thanks #Philippe for the clue about logic problem. Because of this clue, I am able to focus my mind by searching the error code. I found it in the defintion of query of the grid. <table id="jurnalGrid" dojoType="dojox.grid.DataGrid" jsId="jurnalGrid" columnReordering="true" sortFields="['tanggal','kode_jurnal']" store="jurnalStore" query="{id: '*'}" I think you can guess that my query string is not correct :) I still left the code from that link without changing it to suit my need. Thanks... –