Error with datalist in edge, not show more than 10 options - datalist

enter image description here I have a Datalist with more than 10 options, in chrome and Mozilla browsers it shows the options but in edge it does not show after 10 options

Related

Can find xpath of elements on Chrome but can't find it on Firefox

I've a xpath for input an email, it's:
//input[#id='email_input']
I can find it on Chrome, but the problem is I can't find it on Firefox, and this's error I get when I try to run it "The server did not provide any stacktrace information".
enter image description here
enter image description here
enter image description here
I tried with Css selector, but the result is the same! So what problems am I getting with it?
From your Chrome screenshot, the pink drop down value on the toolbar, "fancybox-frame150...", shows the current iframe. You'll need to do the same in Firefox - there is a button on the right of the toolbar (refer to this MDN doc on iframes), select the same iframe and you should be able to find the element with the same selectors.
To work with the element in code, be sure to first switch to the frame before performing any action on it, e.g:
driver.switchTo().frame("fancybox-frame150"); //be sure to use the full name of the frame
WebElement email = driver.findElement(By.id("email_input"));
//to switch back to the main frame
driver.switchTo().defaultContent();
Instead of inspecting elements in chrome ,inspect those elements in firefox first using firebug and firepath which is an add ons in FF. If you aren't aware regarding how to capture elements in FF then refer this link. Let me know in case of any issues.

Safari 8 Network Requests Empty

I have a feeling that I may have toggled some settings, but I can't find it anymore.
Basically I am trying to monitor requests sent from my webapp. The usual method is Inspect Element → Timelines → Network Requests, where Safari gives me a graph of all the requests made.
Now I can see the graph, but I can't see the list of the requests made. Here's a screenshot
You need to select the area that you are interested in for it to be shown. At present, you have a blank area of the timeline selected, so no events are shown. Resize/move the timeline handles to show the relevant information in the timeline.

New popup windows on Google Chrome for Windows are always the full screen width

I have a site http://bizfriend.ly/lesson.html?1 which requires several popups of specific widths. I cannot get the predefined widths to work for Windows versions of Chrome. It works fine in IE, Safari, and Chrome on Mac.
After step two in the instructions, your screen should have two popup windows next to each other.
The following function is called by a jQuery click function. Again it works fine all browsers except Chrome on Windows.
function _instructionsLinkClicked(evt){
var url = 'instructions.html?'+lessonId;
var width = 340;
var height = window.screen.height;
var left = window.screen.width - 340;
instructionOptions = "height="+height+",width="+width+",left="+left;
window.open(url,"instructions",instructionOptions);
}
An interesting clue, when the 'Restore Down' button is clicked, the window reduces to the correct size I want, yet at the wrong location.

How to build dropdown menu in wp7, I have tried ListPicker but its not working for long list?

I need a drop down menu in my windows phone silverlight app, from which user can select a choice, for example user can select his/her district from drop down menu of districts.
I have tried ListPicker but its not working for a long items list, i.e if I am giving more then five items to list, there is a weird output.
Please help me.
Go for
LongListSelector
in Microsoft phone controls toolkit...
It is not "weird output", it that how ListPicker control works. ListPicker behaves differently depending on the amount of items. If it has upt ot 5 items, it shows as in-place selection list. However, if it has more items, it shows as a fullscreen popup. You can set the FullModeItemTemplate property to change how it looks when fullscreen.
Find more info here:
ListPicker for WP7 in depth

Is it no longer possible to resize a Firefox window below a certain threshold width?

I'm using the latest Firefox testing a fluid layout.
Somehow after the last update of FireFox, I seem to no longer be able to shrink the page width below a certain threshold level (in my case 348px). Even if I delete all elements on the page, I'm still at 348px.
I have tried to hide all toolbars and Firefox buttons, but still no change.
If check a page in Chrome, the HTML width gets reported correctly = whatever my browser window is resized to.
*Question:
Is this a new "feature"/setting? If so, can I turn this off... It's annoying for sure.
Firefox 14 (if I remember correctly) should have a responsive layout tool - you might want to check that out.

Resources