AJAX :: Rounded Control Css Not Working?
Dec 6, 2010
I was trying to use Ajax rounded corner control. When I set properties for panel from theme folder css file it was not working. If i provide from server control it is ok. Why it is like that?
View 1 Replies
Similar Messages:
Jun 17, 2013
My Asp site does not support some version of IE and chrome. however its working fine on all version of firefox.
What could be the solution that my site function on all version of IE.
I have used round corner extender on textbox and dropdownlist so some version of IE does not show data in dropdown where i applied round corner extender.
View 1 Replies
Jan 16, 2011
I have created the user control and i am showing it dynamically on the page load event. There will be about 10-15 instance of that user control.
How can i use the ajax rounded control with all the instances of the user control?
In the user control, there is one Div and inside the div there is one place holder which has got few text boxes and label controls.
View 1 Replies
Jul 13, 2010
I ran across a bug with the asp:RoundedCornersExtender when viewing in Firefox. Sometimes there will be a gap between the top of and the body of the panel. There are a few posts out there about using the solution
[URL] here, but the problem is my hosting account (GoDaddy) won't allow the PrettyUI.dll file to run. Is there any other solution to using the dll file? The source code is available - but I'm not familiar with how I'd go about using the source files in place of the DLL...
[Code]....
View 1 Replies
Jul 26, 2010
Yet another post regarding rounded upper corners on an ASP.NET 3.5 horizontal menu control. I've done a day and a half of Googling.Found this link http://forums.asp.net/p/1582204/3989473.aspx. It looked promising but didn't pan out.I got pretty close with some experimenting but it isn't quite there. Could really use some insight or a general agreement that it just can't be done within our constraints.The project is an ASP.NET 3.5 web app. For reasons that are too lengthy to go into here, theoption of using the AJAX tab container has already been examined and rejected. Due to the customer's requirements, we will need to proceed with a menu control set to horizontal display with 2 levels showing. The customer would like to see rounded edges on the top of the menu elements so they have the appearance of tabs. In our corporate-controlled environment, we have as our options the AJAX Control Toolkit, css,
[code]...
View 4 Replies
May 3, 2010
When using the rounded corners app in Ajax the corners are bad shaped. I have found this article from Matt Berseth using antialiasing. But I need code I can use for commercial use, do you have any good ideas for solving my problem? I need code for vb.net applications [URL]
View 3 Replies
Feb 12, 2010
I have a datalist which contains only the image button.I want to add rouned corner to this image.So i have used rounded corner extender for image button.But still no rounded corner,but there was no bug.
View 5 Replies
Feb 3, 2010
I have master page with a rounded corners extender that is not working.
Not sure why. should it work on a master page? Is there anything I need to do to the page that is using the master page?
Here is my master page .aspx
[Code]...
View 1 Replies
Feb 15, 2011
I have an ajax call on a page which POSTS data: longitude and latitude. In the Javascript the two variables I pass in "posLong" and "posLat" are both decimals, something like: 50.81472239. When I do request.form in my .aspx.vb page which I've called, the value has now been rounded to 51.
View 4 Replies
Dec 20, 2010
I have created rounded template user control. The need is what ever we add in the user control should appear appear.
[Code]....
View 2 Replies
Dec 30, 2010
Ajax calendar control not working properly with content place holder of Master Page.Most of time Calender Control hides when mouseover with out changing date in content place holder of Master Page.same code works in normal aspx pages.
View 2 Replies
Jan 12, 2011
I am new to Ajax Control Toolkit, with the help of online tutorials I had created a cascading dropdown list in asp.net and tested it on my local machine. For this dropdown list data source would be an xml file (which is saved on my local machine c drive). I haven't encountered any issues until I deploy the precompiled web site on to IIS 7. When I open the web site from IIS I would see the two dropdown boxes on the web page with an error "Method error 500". I believe this error occured due to incorrect xml file
path provided on IIS. I had copied xml and xsd files into IIS server C drive but it did not help out and then I created a network map and placed the xml and xsd files in that shared folder tried to access that path from web service, it's working on local machine but not on IIS. It would be great, if any one could explain me the solution.
Following is the .aspx and .asmx code:
.aspx code:
<form id="form1" runat="server"> <div> <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"> </asp:ToolkitScriptManager> <br /> <table> <tr> <td> <asp:DropDownList ID="DropDownList1" runat="server"
Height="20px" Width="257px"> </asp:DropDownList> <asp:CascadingDropDown ID="CascadingDropDown1" runat="server" Category="Category" TargetControlID="DropDownList1" PromptText="[select category]" ServicePath="~/WebService.asmx" ServiceMethod="GetCategory"> </asp:CascadingDropDown>
<br /> </td> </tr> <tr> <td> <asp:DropDownList ID="DropDownList2" runat="server" Height="20px" Width="257px"> </asp:DropDownList> <asp:CascadingDropDown ID="CascadingDropDown2" runat="server" Category="Type" TargetControlID="DropDownList2" PromptText="Select
Type]" LoadingText="Loading Type.." ParentControlID="DropDownList1" ServicePath="~/WebService.asmx" ServiceMethod="GetType"> </asp:CascadingDropDown> <br /> </td> </tr> </table> </div> </form>
.asmx code(.cs code):
[WebMethod]
public AjaxControlToolkit.CascadingDropDownNameValue[] GetCategory(string knownCategoryValues, string category)
{
XmlDocument _doc = new XmlDocument();
_doc.Load(HttpContext.Current.Server.MapPath("~/C:/ItSupportCategory.xml"));
XmlNodeList list = _doc.SelectNodes("/CategoryList/Category");
List<CascadingDropDownNameValue> categorylist = new List<CascadingDropDownNameValue>();
foreach (XmlNode node in list)
{
string catid = node.Attributes["value"].Value.ToString();
string catname = node.Attributes["name"].Value.ToString();
categorylist.Add( new CascadingDropDownNameValue(catname,catid));
}
return categorylist.ToArray();
}
[WebMethod]
public AjaxControlToolkit.CascadingDropDownNameValue[] GetType(string knownCategoryValues, string category)
{
int catID;
StringDictionary selectedvalue = AjaxControlToolkit.CascadingDropDown.ParseKnownCategoryValuesString(knownCategoryValues);
catID = Convert.ToInt32(selectedvalue["category"]);
List<AjaxControlToolkit.CascadingDropDownNameValue> cascadingValues = new List<AjaxControlToolkit.CascadingDropDownNameValue>();
XmlDocument _doc = new XmlDocument();
_doc.Load(HttpContext.Current.Server.MapPath("~/C:/ItSupportCategory.xml"));
XmlElement root = (XmlElement)_doc.SelectSingleNode("/CategoryList/Category[@value='" + catID + "']");
for (int i = 0; i < root.ChildNodes.Count; i++)
{
string typeid = root.ChildNodes[i].Attributes["value"].Value.ToString();
string typename = root.ChildNodes[i].Attributes["name"].Value.ToString();
cascadingValues.Add(new CascadingDropDownNameValue(typename, typeid));
}
return cascadingValues.ToArray();
}
Xml File:
<?xml version="1.0"?>
<CategoryList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="test.xsd">
<Category value ="1" name="SYSTEM WIDE">
<Type value ="1" name="Email"/>
<Type value="2" name="SAP Locked"/>
<Type value="3" name="Job Archive Full" />
</Category>
<Category value="2" name="SAP">
<Type value="3" name="Pricing Incorrect"/>
<Type value="5" name="New Item #"/>
<Type value="6" name="Reports"/>
<Type value="7" name="New User Setup"/>
</Category>
<Category value="3" name="OTHER">
<Type value="8" name="Production"/>
<Type value="9" name="Office"/>
<Type value="10" name="Toner for Printer"/>
<Type value="11" name="Security Camre Lookup"/>
</Category>
</CategoryList>
View 2 Replies
Jan 6, 2011
I am trying to use Rounded Corner buttons in my ASP.NET website using AjaxControlToolkit's RoundedCornerExtender. When I use this on a Buton control, I get an error saying "htmlfile: Unexpected call to method or property access" to which I can Break/continue.
When I run the sites, it gives me an error "Unexpected call to mathod or property access".Here's the screenshot:
http://img29.imageshack.us/img29/7051/roundedcornersp.png
View 1 Replies
Nov 22, 2010
I am new using AJAX Controls. I have downloaded the tool kit, added it to my tool box in .NET, created a web application with a simple standar button and added a confirmation extender but the page only shows the button when I click on the button it doesnt show the confirmation box.I dont have any error, I have added the script manager to my page so not error at all.
View 7 Replies
Apr 12, 2010
I have used Ajax control Toolkit(1.0.11119.20010) with ASP.Net 2.0.My website working fine at local network and ajax control functioning well but at server end ajax control not functioning, my website running and not throwing any error but whatever ajax control i have used is not functioning at server end..Following dlls are included in project: AjaxControlToolkit, AjaxExtensionbox, System.Design, System.Drawing.Design, System.Web.Extensions, System.Web.Extensions.Design
View 5 Replies
Jul 8, 2010
My AJAX autocomplete control is not working. I have tried everything I can think of.
[Code]....
View 11 Replies
May 1, 2010
I am using Ajax Control Toolkit version 40412 in my asp.net 4.0 website. When I run the page in Firefox it is working good but I run the page in IE8 it is not rendering toolkit controls and putting "//" characters on the bottom of page.This is happening with every control of toolkit.
View 1 Replies
Oct 27, 2010
I'm using the new version of ajax control toolit v3.0.
I Installed the new version and found it worked fine as soon as i change my scripmanager to ToolkitScriptManager, However, I recentlly realised that now my sites hovermenus do not work in IIS6 (maybe 7 too) Ive tried in firefox and IE and the same.
I changed from <asp:ToolkitScriptManager> to the old <asp:ScriptManager> and they work but i need the toolkitScriptManager cause of some new controls I have used will use need it.
I am using VS 2008 , .net framework v3.5
View 2 Replies
Jun 8, 2010
i have written some code to for a project im working on but the Ajax tool doesnt want to function.... I know the web method works course it gives me my results when i run it but when i run the appliaction the AJAX doesnt fire this is my web service code
[WebMethod]
public string[] GetCompletionList(string text)
{
List<string> al = new List<string>(10);
[code]...
View 10 Replies
Sep 24, 2010
AsyncFileUpload not working with IE9. only on capability mode
View 9 Replies
Feb 15, 2010
I tested the web service.it is working fine.The problem that i want to solve is to make call to webservice. Here is the .aspx code
<asp:TextBox ID="txtFullName" runat="server"></asp:TextBox>
<ajaxToolkit:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server"
TargetControlID="txtFullName" ServiceMethod="FindFullName"
ServicePath="../WebService.asmx" EnableCaching="true"></ajaxToolkit:AutoCompleteExtender>
Webservice code :
using System;
using System.Web;
using System.Collections;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Configuration;
using System.Data.SqlClient;
using System.Data;
using System.Collections;
using System.Collections.Generic;
/// <summary>
/// Summary description for WebService
/// </summary>
[WebService(Namespace = "[URL]/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.Web.Script.Services.ScriptService]
public class WebService : System.Web.Services.WebService {
public WebService () {
//Uncomment the following line if using designed components
//InitializeComponent();
}
[WebMethod]
public string HelloWorld() {
return "Hello World";
}
[WebMethod]
public string[] FindFullName(string prefixText)
{
string sql = "Select FName from Investigators Where FName like @prefixText";
SqlDataAdapter da = new SqlDataAdapter(sql,"Data Source=vvvvv;Initial Catalog=vyyyd;Persist Security Info=True;User ID=PowetttrUsyyer;Password=888888);
da.SelectCommand.Parameters.Add("@prefixText", SqlDbType.VarChar, 50).Value = prefixText+ "%";
DataTable dt = new DataTable();
da.Fill(dt);
List<string> liste = new List<string>();
foreach (DataRow dr in dt.Rows)
{
liste.Add(dr.ItemArray[0].ToString());
}
return liste.ToArray();
}
}
View 10 Replies
Dec 2, 2010
I originally got the 'Extender controls may not be registered after PreRender' message and my app uses a lot of User Controls.I put the base.OnPreRender(e); and it took care of that problem (put in the default.aspx.cs).The control does come up but when I click on the calendar image it does nothing.Here is my source:
[Code]....
[Code]....
View 16 Replies
Jun 11, 2010
I'm using MaskEditExtender control for a numeric field. My code is,
<asp:TextBox ID="Options_simpleTextBox" runat="server" Width="30px"></asp:TextBox>
<ajaxToolKit:MaskedEditExtender ID="Options_simpleMaskedEditExtender" runat="server"
TargetControlID="Options_simpleTextBox" Mask="9.99" MessageValidatorTip="true"
InputDirection="RightToLeft" OnFocusCssClass="MaskedEditFocus" OnInvalidCssClass="MaskedEditError"
MaskType="Number" AcceptNegative="None" ErrorTooltipEnabled="True" />
It works fine but If I enter '2.' I can't able to type further automatically.
View 1 Replies
Nov 10, 2010
i try to use ajax tab container control in my project, but it throws error. its not working properly
View 3 Replies
Apr 13, 2010
I have created an application in Microsoft Visual studio 2005. And I have used Ajax control tool kit version
3.031106.0. It works fine in my local system. When I hosted this on the server,I am getting this following error.
"Could not load file or assembly 'AjaxControlToolkit, Version=1.0.10606.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies"
The server is Windows server 2008.
View 1 Replies