Kendo UI Stock Charts does not display on Safari - safari

I'm attempting to create a stock chart using Kendo UI. I created the chart and it displays fine on every browser (IE, FireFox, Chrome) EXCEPT for Safari, where it will only display a default placeholder chart area but no data, numbers, chart info, range slider, etc.
Here also is my code in jsbin: http://jsbin.com/ucoliq/4/
This only occurs when using Stock Charts, otherwise I have no issues creating other charts and displaying it with Safari. If anyone has any suggestions or ideas that could help fix this, it would be greatly appreciated.

Looks like Safari barks at the date format. You can confirm this by executing:
new Date("2011-06");
> Invalid Date
Switching to a more conventional format (2011/06/01) seems to solve this.
See http://jsbin.com/ucoliq/6/edit

Related

DOJO drop down selection is not working

After migrating to DOJO 1.8.14 in the dropdown even though I am selecting different one it is selecting by default different option than that is present before.
You can see the dropdown after close button that should select different one and also one more issue is few functionalities are working in IE browser and not working in the mozila firefox browser
Someone help me out.
In code it had return to sort by label and the particular element is disabled so it is not selecting once after I had added sortbylabel id as false and then it is working fine.
The problem is DOJO migration that I had done will sort the label by default we need to apply the label to false then it will work fine.

Selenium ClickAndHold doesn't work on new Kendo Chart

I've been upgrading my Kendo version recently, and upon the change, one of my tests broke. It tries to select an area over a kendo chart. Previously, it worked just fine. However, with the new Kendo version, the test fails. It lines up the mouse over the beginning and end of where it should be selecting, but it is not selecting anything. Here is the snippet of code that should be selecting the chart area:
new OpenQA.Selenium.Interactions.Actions(WebDriverContext.Current)
.ClickAndHold(zoomToElement).MoveToElement(zoomFromElement)
.Release(zoomFromElement).Perform();
Has anyone else encountered this issue?

Drop Down Form for Date is Deformed

I use sharepoint 2010 and I get a deformed pop up menu for Date selection. Nothing fancy here. Just a simple form to enter some data with date.
Have you seen this before? I get the same effect in Chrome/Firefox latest versions.
Thank you in advance
This is a problem with your SharePoint site's CSS (or possibly with JavaScript that affects the CSS).
That big image is a spritesheet; CSS is supposed to crop the visible region so that you only see the specific sprites that are relevant to the current control.
You can pull up the developer tools with F12 and inspect the image element and its containers to see what CSS is currently applied, as well as check for any errors in the JavaScript console.
Clear your browsers cache and reload page. Delete the datetime column and create a new.

IE (10) Does not render Box shadow well on inputs

I created the following jsbin to show the problem. http://jsbin.com/fewuli/2/ If you run this in any browser but IE10 and focus the input then the box shadow outline looks great like this:
But if you run this in IE10 (or IE9+) it doesnt render the top portion of the box shadow on focus like this:
Is there any way to fix this without increasing the box shadow size (last option?)
I tested the link you provided and checked it out in different versions of IE (11, 10 and 9) and they all showed the input box being highlighted when it held the focus. (I used the IE toolbar Emulation to view the differences)
If you are still having problems with this you could try adding a script that helps older IE browsers support HTML5. Modernizr is one of these scripts that will help in this way. There is also HTML5 Shiv but that only supports IE browsers 9 and older.
Another suggestion would be to try MS Visual Filters and Transitions and apply it to your INPUT class:
filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30);
-ms-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30)";

How to enter text into user name when user name text field is on different frame using Webdirver

I have to login to application. But username and password text boxes available on different frame on the UI.
When i record using the IDE and exported into JAVA then same code is not working.
I am getting an error saying element is not present. This because the text box is on additional frame on the UI.
Kindly let me how to get the control of this frame and then enter the text.
Thanks,
Md Ashfaq
are you recording via ide on firefox and then running your tests on some other browser?coz sometimes diff browsers interpret it differently[I have faced issues where same webpage had iframes in firefox but not in IE].kindly check on that front.
Use The API capability to SwitchToFrame() then Look for element and interact with.
Note: You'll have to switch to any frame needed i find it efficient doing a selectDefaultFrame, try Iterating within Available frames and get handle/frame names