Type in your CSS where you have that div or css style just type this:
clear: both;
and refresh your page. It should fix your overlap and in consistency in your css look.
Type in your CSS where you have that div or css style just type this:
clear: both;
and refresh your page. It should fix your overlap and in consistency in your css look.
Here is your jQuery code:
// first lets un-select any items that have been selected
$("select.ddlMyDropDown option:selected").removeAttr("selected");
var addvalue = ‘MyNewValue’;
$("select.ddlMyDropDown").prepend('<option selected="selected" value="' + addvalue + '">' + addvalue + '</option>');
Here is your html code:
<asp:DropDownList runat="server" ID="ddlMyDropDown" CssClass="ddlMyDropDown" ></asp:DropDownList>
<br />
<input type="text" id="addToDropDown" class="addToDropDown" visible ="false" size="1" />
Nice!
I had to change my team foundation server and the new one had different name and url.
All of my old project was not able to load back into my new TFS. So I come across this setting in :
C:\Users\loggedinusername\AppData\Local\Microsoft\Team Foundation\2.0\Cache .. make sure that loggedinusername is your user name..
look for VersionControl.config file
open in Visual Studio and make your change here under : <VersionControlServer>
-Adnan