Dropkick and organinctabs - jquery-ui-tabs

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.

Related

Is there a way to hide the in between dates in the xKeys in 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

How can I access a button to click it with following code in selenium webdriver?

There are many buttons sharing the same class.
May have to go with clicking the link /account/logout'.
This is the code I'm trying to use:
input class="btnRed text-uppercase fo_white" value="Logout" onclick="window.location.href='/account/logout';" type="button"
Hard to say because you didn't provide enough info, but you could probably make it work by using value attribute. Something like this if you are using java.
driver.findElement(By.cssSelector("[value='Logout']")).click();
Not pretty solution, but give it a try:
driver.findElement(By.cssSelector(".btnRed.text-uppercase.fo_white")).click();
Looking at your HTML DOM this command will work for you:
driver.findElement(By.xpath("//input[#value='Logout']")).click();
Let me know if it works for you.
Looking at your HTML, this should work
driver.findElement(By.xpath("//input[#value='Logout'][#type='button']")).click();
Let me know if it works.
Is your element visible/enabled? In order to select an element, it must be present in your DOM. If the element is activated through an event, it cannot be selected until the event occurs.
Take a look at this post. This other post also have good ideas.

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 :)

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... –

How to add SEARCH BOX using XAML

I have to add a search box, which has dropdown button kind (say it wil have TeamBook and PersonalBook) then when i select TeamBook, the searchbox should get the default data as "SearchTeambook" if not,"SearchpersonalBook".
I have to do this using XAML.
Please help me in doing this.
Thanks
Ramm
I have figured out the better way of solvingthis .
Now i am able to use the feature
Thanks
Ramm