Quantcast
Channel: AjaxControlToolkit Work Item Rss Feed
Viewing all 3806 articles
Browse latest View live

Closed Issue: JS exception thrown by ModalPopupExtender when OnHiding animation is defined [27100]

$
0
0
Please refer to the following
http://forums.asp.net/t/1764862.aspx/1?ModalPopupExtender+throws+JS+error+this+_onHiding+get_animation+is+null+or+not+an+object+
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.

Closed Unassigned: Autocomplete extender and Bootstrap animation effects [27928]

$
0
0
Using autocomplete extender on a webforms app that uses bootstrap CSS and JavaScript files. When using autocomplete on a textbox when inside a popup panel in Microsoft Edge and Google Chrome, autocomplete does not display the matches. It works fine on IE 11. I have no idea how to even start debugging this issue. Anyone seen something like this?


```
<asp:Panel ID="pnlCategorias" runat="server" Visible="false">
<div class="row">
<div class="col-sm-6">
<div class="well">
<h4>Categorías de Actuación</h4>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#ActuacionModal" style="width: 100%">
Agregar Actuación
</button>
<div style="height: 15px"></div>
<asp:GridView ID="gvActuacion" runat="server" CssClass="table table-hover table-striped" AutoGenerateColumns="False">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton ID="lnkButton1" runat="server" CommandArgument='<%# Eval("IDObraCategoria")%>'
CommandName="Borrar" OnClientClick="return confirm('Seguro que Desea Eliminar este Registro?');"
Text="<div class='btn btn-default btn-sm'><span class='glyphicon glyphicon-trash'></span></div>" />
</ItemTemplate>
<ItemStyle HorizontalAlign="Center" VerticalAlign="Top" Width="50px" />
</asp:TemplateField>
<asp:BoundField DataField="Nombre_SubCategoriaEvaluacion" HeaderText="Sub-Categoría" />
<asp:TemplateField HeaderText="Candidato">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("Nombre_Persona") %>'></asp:Label>&nbsp;
<asp:Label ID="Label2" runat="server" Text='<%# Bind("Apellido_Persona") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</div>
<div style="height: 10px;"></div>

</div>
<div class="col-sm-6">
<div class="well">
<h4>Categorías Técnicas</h4>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#TecnicasModal" style="width: 100%">
Agregar Técnicas
</button>
<div style="height: 15px"></div>
<asp:GridView ID="gvTecnicas" runat="server" CssClass="table table-hover table-striped" AutoGenerateColumns="False">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton ID="lnkButton1" runat="server" CommandArgument='<%# Eval("IDObraCategoria")%>' CommandName="Borrar" OnClientClick="return confirm('Seguro que Desea Eliminar este Registro?');" Text="<div class='btn btn-default btn-sm'><span class='glyphicon glyphicon-trash'></span></div>" />
</ItemTemplate>
<ItemStyle HorizontalAlign="Center" VerticalAlign="Top" Width="50px" />
</asp:TemplateField>
<asp:BoundField DataField="Nombre_SubCategoriaEvaluacion" HeaderText="Sub-Categoría" />
<asp:BoundField DataField="NombreAdicional" HeaderText="Candidato" />
</Columns>
</asp:GridView>
</div>
</div>
</div>
</asp:Panel>
<br />
<div class="modal fade" id="ActuacionModal" tabindex="-1" role="dialog" aria-labelledby="ActuacionModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="ActuacionModalLabel">Agregar Evaluaciónes de Categorías de Actuación</h4>
</div>
<div class="modal-body">
<label for="ddlCategoriaEvalAct">Categoría:</label>
<asp:DropDownList ID="ddlCategoriaEvalAct" runat="server" CssClass="form-control">
</asp:DropDownList>
<div style="height: 10px"></div>
<label for="txtPersonaAct">Persona:</label>
<asp:TextBox ID="txtPersonaAct" runat="server" CssClass="form-control">
</asp:TextBox>
<cc1:AutoCompleteExtender ID="autoCompletePersona"
runat="server" ServicePath="../app/autocomplete.asmx"
TargetControlID="txtPersonaAct" ServiceMethod="fListarPersonas">
</cc1:AutoCompleteExtender>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<asp:Button ID="btnGuardarActuacion" runat="server"
CssClass="btn btn-primary" Text="Guardar" />
</div>
</div>
</div>
</div>
```


Commented Issue: Enabling a disabled tab in script does not enable its child controls correctly [12648]

$
0
0
http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=295903

Repro Steps:
1. Create a new Web Application Project
2. Modify your web.config as needed for SQL Server Authentication.
3. Add a Control Toolkit TabContainer with three TabPanels.
4. Add a CreateUserWizard control to the second TabPanel.
5. Add the following javascript functions to enable the tabs:
function EnableTab(tabNumber)
{
$find('<%=TabContainer1.ClientID%>').set_activeTabIndex(tabNumber);
}
function ToggleTab(enable, tabNumber)
{
$find('<%=TabContainer1.ClientID%>').get_tabs()[tabNumber].set_enabled(enable);
}
6. Add the following line to the script pageLoad function:
ToggleTab(false, 1);
7. Add an a href="#' tag to your page that has onclick="EnableTab(1)
Note that pageLoad disables tab 1 and clicking the button enables it
8. Run the app
9. Click the link button created in step 7.
10. Enter a new user's info in the fields. For password and confirm password fields, enter "dd" or another invalid value that will only be caught by the server side validators.
11. Press Create User button.

Actual Results:
you will observe that the page is redrawn with all the input fields disabled.

Expected Results:
the input fields should not be disabled.
Comments: Unfortunately, we cannot reproduce this error using the markup you provided. Would you provide a sample project?

Closed Issue: AJAX control Html Editor's "SuppressTabInDesignMode" property does not work in chrome. [27106]

$
0
0
AJAX control Html Editor's "SuppressTabInDesignMode" property works fine in IE and FF but it is not workin in chrome. How we use to shift focus to next control using tab key in chrome? If we "SuppressTabInDesignMode = true" then we can use tab key to shift focus to the next control in IE and FF but in chrome it goes 7 charechers ahead in the editor(7 spaces).

Atiq.
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.

Closed Issue: SliderExtender causing crash on postback or navigating away from the page [25222]

$
0
0
Hi all, this is my first post - I have searched all over for information on this but if I have missed a solution then apologies.

I have been designing rather a large asp application which uses an accordion and various other extenders. One of my accordion pages needs to use sliders to change colours in boxes above them. I have added one slider, in the same way I have used them previously, but it has caused an error when I close the page as follows:

Microsoft JScript runtime error: Sys.InvalidOperationException: Handler was not added through the Sys.UI.DomEvent.addHandler method.

The line it stops on with the debugger is:

if ((typeof(element._events) !== 'object') || (element._events == null)) throw Error.invalidOperation(Sys.Res.eventHandlerInvalid);

Specifically, the highlighted section is:

throw Error.invalidOperation(Sys.Res.eventHandlerInvalid)

I am not manually adding any handlers and have not done so on any of the other extenders I have used. If I remove the SliderExtender (but leave all the related textboxes) the system performs as expected.

I have been stuck on this for a few days now and would really appreciate any help offerred. If more information is required please let me know and I'll provide it.

Regards,

Simon
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.

Closed Issue: ModalPopupExtender shows full stops instead of commas and throws Exception for German Dates [27109]

$
0
0
Using November 2011 release,

In German, (culture, uiCulture, enableScriptGlobalization, enableScriptLocalization, enableClientBasedCulture, etc)

have a textbox with associated calenderextender, maskededitextender, maskededitvalidator, etc.

in calendar, click on 16/02/2012
Shows '__,__,____' (comma separated) when you'd expect '__.__.____' (full stop seperated).
Throws an exception at line 2888 of MaskedEdit.MaskedEditBehavior.debug.js

In German, in calendar, click on 16/02/2012
Throws an exception at line 2888 of MaskedEdit.MaskedEditBehavior.debug.js
Shows '__,__,____' when you'd expect '__.__.____'
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.

Commented Issue: UpdatePanel in ModalPopup has incorrect postback behavior [13112]

$
0
0
Problem:
when an update panel within a modal popup does an async postback is passes the following if statement located in the Page_Load:

if (!IsPostBack && !IsCallback && !ScriptManager1.IsInAsyncPostBack)
{
}

IsPostBack = false
IsCallBack = false
ScriptManager1.IsInAsyncPostBack = false

Expected Results:
The code within the 'if' statement should only execute on initial page load

Misc:

The modal popup is triggered server side using 'ModalPopupExtender.Show();'

Source:

<asp:Panel ID="Panel" runat="server" CssClass="ModalPopup">
<asp:Panel ID="DragHandlePanel" runat="server" CssClass="modalPopupDragHandle">
Panel Header Text
</asp:Panel>
<br />
<div>
<asp:UpdatePanel ID="UpdatePanel" runat="server">
<ContentTemplate>
<asp:Panel ID="SelectionPanel" runat="server">
<asp:GridView ID="SelectionGridView" runat="server" AutoGenerateColumns="False"
ShowHeader="true" OnRowCommand="SelectionGridView_RowCommand" OnRowDataBound="SelectionGridView_RowDataBound"
DataKeyNames="Id">
<Columns>
<asp:CommandField ButtonType="Image" SelectImageUrl="~/images/smoothicons/icons/arrow_turn_right_2.png"
ShowCancelButton="False" ShowSelectButton="True" />
<asp:BoundField HeaderText="Name" ShowHeader="true" />
<asp:BoundField HeaderText="Title" ShowHeader="true" />
<asp:BoundField HeaderText="Level" ShowHeader="true" />
<asp:BoundField HeaderText="Scope" ShowHeader="true" />
</Columns>
<RowStyle CssClass="gridRowStyle" />
<SelectedRowStyle BackColor="#F2CE00" />
<AlternatingRowStyle CssClass="gridAlternatingRowStyle" />
<HeaderStyle CssClass="gridHeaderStyle" />
</asp:GridView>
<br />
<asp:Button ID="addButton" runat="server" OnClick="addButton_Click"
Text="Add" /></asp:Panel>
<asp:Panel ID="addPanel" runat="server" Visible="False">
<table>
<tr>
<td>
<asp:Label ID="firstNameTextLabel" runat="server" Text="First Name"></asp:Label></td>
<td>
<asp:TextBox ID="firstNameTextBox" runat="server" ValidationGroup="addValidationGroup"></asp:TextBox></td>
<td>
<asp:RequiredFieldValidator ID="firstNameRequiredFieldValidator" runat="server" ControlToValidate="firstNameTextBox"
ErrorMessage="* Required" ValidationGroup="addValidationGroup" EnableClientScript="False"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td>
<asp:Label ID="lastNameTextLabel" runat="server" Text="Last Name"></asp:Label></td>
<td>
<asp:TextBox ID="lastNameTextBox" runat="server" ValidationGroup="addValidationGroup"></asp:TextBox></td>
<td>
<asp:RequiredFieldValidator ID="lastNameRequiredFieldValidator" runat="server" ControlToValidate="lastNameTextBox"
ErrorMessage="* Required" ValidationGroup="addValidationGroup" EnableClientScript="False"></asp:RequiredFieldValidator></td>
</tr>
</table>
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
<br />
<asp:Button ID="OkButton" runat="server" Text="Ok" ValidationGroup="addValidationGroup"
OnCommand="OkButton_Command" />
<asp:Button ID="CancelButton" runat="server" Text="Cancel" CausesValidation="False"
OnClick="CancelButton_Click" />
</div>
</asp:Panel>
<aspajax:ModalPopupExtender ID="ModalPopupExtender" runat="server" TargetControlID="PopupHiddenButton"
PopupControlID="Panel" DropShadow="true" BackgroundCssClass="modalBackground"
PopupDragHandleControlID="DragHandlePanel" />
<asp:Button ID="PopupHiddenButton" runat="server" CssClass="hiddenButton" />
Comments: Would you provide a complete sample project?

Commented Issue: Ajax Control Toolkit version - 3.5.51116.0 - ListSearchExtender causes a postback when loss of focus even no option was changed. [27114]

$
0
0
Hi,

I have two dropdown controls on my user contorl and two ListSearchExtenders are being used for the dropdowns. The user control is in an update panel. And the user control is being used in myPage.aspx page. By the time the myPage.aspx loads one of the dropdown list controls gets focus. When clicked on any where on the page to make its focus loss it is doing a postback. I.e the postabck happens even when no option was selected.

We do not want this unnecessary postback back to happen. Below is the code I have on my user control. When I commented the ListSearchExtenders it doesn't do a postback when dropdowns lost the focus. But we still want to keep the ListSearchExtender functionality.

<%-- <cc1:ListSearchExtender ID="LSE" runat="server" TargetControlID="ClientName" PromptText="Type to search"
PromptCssClass="ListSearchExtenderPrompt" PromptPosition="Top"/>--%>

<%--
<cc1:ListSearchExtender ID="ListSearchExtender3" runat="server" TargetControlID="LabName"
PromptText="Type to search" PromptCssClass="ListSearchExtenderPrompt" PromptPosition="Top" />--%>


<asp:DropDownList ID="LabName" TabIndex="1" runat="server" Width="400px" AutoPostBack="true" />

<asp:DropDownList ID="ClientName" TabIndex="2" AutoPostBack="True" runat="server" Width="400px"
Enabled="false"/>

The .NET version we are using is 3.5 and we are using the latest November release Ajax Control Toolkit version , 3.5.51116.0. I am not sure if there is a fix for this issue in the latest Ajax Control Toolkit (may be 4.1) but I can't use this version because we are still using .NET 3.5. So upgrading is ruled out.

I am writing this to see if there is a workaround or a fix have already been provided. Can you please point me to right direction.

Hope my explanation is understandable. If you have any questions or need further info please email me.

Email: movvap@yahoo.com

Thanks in advance,

Dev Movva
Comments: Would you provide a complete sample project?

Closed Issue: The requested script resource 'Common.Common.js' requires version 'AjaxControlToolkit, Version=4.1.51116.0 [27083]

$
0
0
Hi
I am vijaya krishna , I implemented ajax toolkit 4.1.511160 in my project . It's working fine in Visual studio but its not working in IIS .

Error :

Server Error in '/OPTest' Application.
--------------------------------------------------------------------------------

The requested script resource 'Common.Common.js' requires version 'AjaxControlToolkit, Version=4.1.51116.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' of the ASP.NET AJAX Framework. To use this resource, make sure that the application references version 'AjaxControlToolkit, Version=4.1.51116.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidOperationException: The requested script resource 'Common.Common.js' requires version 'AjaxControlToolkit, Version=4.1.51116.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' of the ASP.NET AJAX Framework. To use this resource, make sure that the application references version 'AjaxControlToolkit, Version=4.1.51116.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e'.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:


[InvalidOperationException: The requested script resource 'Common.Common.js' requires version 'AjaxControlToolkit, Version=4.1.51116.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' of the ASP.NET AJAX Framework. To use this resource, make sure that the application references version 'AjaxControlToolkit, Version=4.1.51116.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e'.]
System.Web.UI.CompositeScriptReference.GetUrl(ScriptManager scriptManager, Boolean zip) +1678
System.Web.UI.ScriptManager.RegisterUniqueScripts(List`1 uniqueScripts) +202
System.Web.UI.ScriptManager.RegisterScripts() +444
System.Web.UI.ScriptManager.OnPagePreRenderComplete(Object sender, EventArgs e) +122
System.EventHandler.Invoke(Object sender, EventArgs e) +0
System.Web.UI.Page.OnPreRenderComplete(EventArgs e) +8876298
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2716




--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1

Please Some one help me in this issue . I am breacking my head .

I tried change of script manager to ToolkitScript manger and also tried scriptreference paramer also .

But i dont have any luck till today .

Please help me .

Thanks in advance
Vijaya Krishna

Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.

Closed Issue: Editor control giving JS Error [27118]

$
0
0
Hi

I am developing an asp.net 4.0 website with AjaxControlToolkit version 4.1.51116.0.
The Editor control giving the following JS error while rendering for the first time.

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)
Timestamp: Fri, 2 Mar 2012 05:00:12 UTC

Message: Access is denied.

Line: 1
Char: 14243
Code: 0
URI: http://localhost/miswebapps/ScriptResource.axd?d=8awPOMibYg7MhCQIa4mPwyQ9wKpIQYZVwZqz6TtJsP4uZywbJG--JJ_B_ZYcp6JQIdnNOI2xuC9E0mgAN9pFawMfY3cDtMfbsholQ8QQZHYS9Hx9pr7g4xzkuk93uGmK5NNv9ucMEDGCeQZc5l6EeA2&t=ffffffffc13acc3f


Message: Access is denied.

Line: 1
Char: 14243
Code: 0
URI: http://localhost/miswebapps/ScriptResource.axd?d=8awPOMibYg7MhCQIa4mPwyQ9wKpIQYZVwZqz6TtJsP4uZywbJG--JJ_B_ZYcp6JQIdnNOI2xuC9E0mgAN9pFawMfY3cDtMfbsholQ8QQZHYS9Hx9pr7g4xzkuk93uGmK5NNv9ucMEDGCeQZc5l6EeA2&t=ffffffffc13acc3f

Will appreciate any early response.

Regards
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.

Closed Issue: AJAX 3.5.51116.0 is missing ListSearchExtender [27117]

$
0
0
When I try to add an extender to a drop down the ListSearchExtender option is not there
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.

Closed Issue: Popup offset when main page is scrolled in Chrome or Safari using HoverMenuExtender on Gridview [25447]

$
0
0
Using: Visual Studio 2008, .NET Framework 3.0, AJAXControlToolkit 3.0.30930.0

I have created a popup menu per gridview row on a gridview using the HoverMenuExtender that shows the appropriate menu panel. This works appropriately under Firefox (current version) and IE (7&8) but under Safari and Chrome the menu will appear appropriately on the row in question until the main page is scrolled. If the vert. scrollbar is at a non-zero position, the popup menu for a particular gridview row will be offset in position by the main page scrolled amount. I.e. if the main page has been scrolled down by 20px, the popup menu generated by the hovermenuextender will be 20px higher in position than it should be.

This is a critical issue for me which may mean I'll have to stop using this approach completely
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.

Closed Issue: Default css style not working for headertext with nov 2011 release [27074]

$
0
0
The following CSS works with the september release but not the november release. With the tab enhancements, should we style differently? I am using IE8.

.ajax__tab_header {
color: Gray;
}
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.

Commented Issue: UpdatePanel not known element [27122]

$
0
0
Hi Guys
Today I installed the AjaxToolKit to a website (not web application) and immediately VS2010 is giving an error: Element 'UpdatePanel' is not a known element. Haven't noticed any other controls not working as yet

Hours laters running through forums I have done several things:
I have emptied the ReflectedSchemas folder
Unistalled and reinstalled AjaxToolKit
Added Register code to UserControl
Re-Added reference to System.Web.Extensions plus a multitude of other things

I am using DotNetNuke so cannot build application.
Framework 4.0

It was working before I installed and those UpdatePanels in place before are fine.

Any clues cause im stumped
Comments: Would you provide a complete sample project?

Closed Issue: HTMLEditor paste error in IE9 [27082]

$
0
0
The three paste buttons in the HTMLEditor aren't working in Internet Explorer 9. They do nothing at all (and no script error either).
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.

Commented Issue: Popup menu doesn't close while using HoverMenuExtender [14742]

$
0
0
I have used HoverMenuExtender to display the shopping cart in the popup menu. The popup menu has an iframe the src to which is a page which uses gridview to display the cart. Attached is the screenshot which shows the popup menu which opens with onMouseOver for shopping cart link. The menu closes Onmouseout for shopping cart link or the popup menu and it works just fine in FF but with IE , when I click on the next button to bring next set of records in the gridview the popup menu stays open and doesn't close at all. Is there a way to close it.

Here is the set of code

Shopping cart link
<asp:Panel ID="pnlOpenInfo" runat="server" style="display:inline;">
<cc1:GHyperlink ID="hlCart" runat="server" ToolTip="Shopping Cart" CssClass="Orange2White10Links" IsBuildURL="true" NavigateUrl="Store/Cart.aspx">Shopping Cart</cc1:GHyperlink>
</asp:Panel>

HoverMenuExtender:
<cc1:HoverMenuExtender ID="hme2" runat="Server"
TargetControlID="pnlOpeninfo"
PopupControlID="PopupMenu"
PopupPosition="bottom"
OffsetX="-120"
OffsetY="0"
PopDelay="50" />

PopupControl:

<asp:Panel ID="PopupMenu" runat="server" Width="252px" Height="500px" style="-moz-opacity:1.0;filter:alpha(opacity=100); display: none;">
<iframe runat="server" id="frmCart" frameBorder="0" scrolling="no" ondrop="return false;" width="260" height="250" style="margin:0px 0px 0px 0px;" allowtransparency=""></iframe>
</asp:Panel>

iframe's src is CartSummary.aspx which have the gridview for cart summary.

Any help is appreciated.

Thanks,

Reemal
Comments: Would you provide a complete sample project?

Commented Unassigned: SliderExtender not working since upgrade [27936]

$
0
0
The following markup previously worked without issue before I upgraded to the devexpress managed version of the toolkit (v15.1.2 and recently v15.1.3)

<asp:TextBox runat="server" ID="txtSlider"></asp:TextBox>
<asp:TextBox runat="server" ID="txtSliderValue"></asp:TextBox> %
<asp:SliderExtender runat="server" ID="sliderExtender"
TargetControlID="txtSlider" BoundControlID="txtSliderValue"
Minimum="0" Maximum="100" Steps="100"/>

Since the upgrade, I now get the following java script error thrown and the slider doesn't render

__Error: Unable to get property 'Slider.Handle-Horizontal.gif' of undefined or null reference__

The error is thrown in ScriptResource.axd line 117

var defaultHandleImageUrl = (this._isHorizontal)
? Sys.Extended.UI.Images["Slider.Handle-Horizontal.gif"]
: Sys.Extended.UI.Images["Slider.Handle-Vertical.gif"];

Sys.Extended.UI exists but Sys.Extended.UI.Images is undefined

What has changed that has broken this int he new versions?
Comments: Since v15.1, SliderExtender renders slider images inside the OnPreRender method. This behavior caused the error you described. Now, the issue is fixed and will be available in one of our future releases.

Edited Issue: AsyncFileUpload Control Reference Documentation Missing [27912]

$
0
0
https://ajaxcontroltoolkit.codeplex.com/wikipage?title=Tutorials&referringTitle=Documentation

displays a placeholder for an AsyncFileUpload "Reference" page but no link.

The tutorial page at:
https://ajaxcontroltoolkit.codeplex.com/wikipage?title=AsyncFileUpload%20Control&referringTitle=Tutorials

displays a link to a reference page but following that gives a warning page stating "The wiki page AsyncFileUpload Control Reference does not exist."

Has this control been abandoned?

Edited Issue: Error MaskedEdit [27913]

$
0
0
Good job,
but I found this problem:

code:
<div class="groupFormButtonSearch">
<asp:TextBox ID="txtDtaLimite" runat="server" Width="100%" TabIndex="12" MaxLength="10" placeHolder=" " CssClass="txtCustomWaterMark resetCursor customControlSearch"></asp:TextBox>
<span class="spanBtnSearch">
<asp:ImageButton ID="btnCalendarDataLimite" runat="server" CssClass="btnSearch" ImageUrl="~/btnImgCalendario.png" TabIndex="13" />
</span>
</div>
<asp:RequiredFieldValidator ID="RFVDataLimite" runat="server" ControlToValidate="txtDtaLimite" Display="None" ErrorMessage="Preencha a data limite." Font-Names="Tahoma" Font-Size="X-Small" SetFocusOnError="True" ValidationGroup="ValidadorCadastroAtendimentos" CssClass="hideValidator">*</asp:RequiredFieldValidator>
<ajaxToolkit:CalendarExtender ID="CalendarExtender1" TargetControlID="txtDtaLimite" runat="server" Format="dd/MM/yyyy" PopupButtonID="btnCalendarDataLimite" />
<ajaxToolkit:ValidatorCalloutExtender ID="RFVDataLimite_VCE" runat="server" Enabled="True" TargetControlID="RFVDataLimite"></ajaxToolkit:ValidatorCalloutExtender>
<ajaxToolkit:MaskedEditExtender ID="MEEDtaLimite" runat="server" TargetControlID="txtDtaLimite" Mask="99/99/9999" AutoComplete="true" ClearTextOnInvalid="true" MaskType="Date" AcceptAMPM="false" AcceptNegative="None" InputDirection="LeftToRight" UserDateFormat="DayMonthYear"></ajaxToolkit:MaskedEditExtender>

error:
Type.registerNamespace("Sys.Extended.UI");Sys.Extended.UI.MaskedEditBehavior=function(n){Sys.Extended.UI.MaskedEditBehavior.initializeBase(this,[n]);this._Mask="";this._MaskType=Sys.Extended.UI.MaskedEditType.None;this._Filtered="";this._PromptChar="_";this._InputDirection=Sys.Extended.UI.MaskedEditInputDirections.LeftToRight;this._MessageValidatorTip=!0;this._ShowMessageErrorFloat=!1;this._CssMessageErrorFloat="";this._AutoComplete=!0;this._AutoCompleteValue="";this._ClearTextOnInvalid=!1;this._ClearMaskOnLostfocus=!0;this._AcceptAmPm=Sys.Extended.UI.MaskedEditShowSymbol.None;this._AcceptNegative=Sys.Extended.UI.MaskedEditShowSymbol.None;this._DisplayMoney=Sys.Extended.UI.MaskedEditShowSymbol.None;this._OnFocusCssClass="MaskedEditFocus";this._OnInvalidCssClass="MaskedEditError";this._OnFocusCssNegative="MaskedEditFocusNegative";this._OnBlurCssNegative="MaskedEditBlurNegative";this._CultureName=Sys.CultureInfo.CurrentCulture.name;this._UserDateFormat=Sys.Extended.UI.MaskedEditUserDateFormat.None;this._UserTimeFormat=Sys.Extended.UI.MaskedEditUserTimeFormat.None;this._CultureDatePlaceholder=Sys.CultureInfo.CurrentCulture.dateTimeFormat.DateSeparator;this._CultureTimePlaceholder=Sys.CultureInfo.CurrentCulture.dateTimeFormat.TimeSeparator;this._CultureDecimalPlaceholder=Sys.CultureInfo.CurrentCulture.numberFormat.NumberDecimalSeparator;this._CultureThousandsPlaceholder=Sys.CultureInfo.CurrentCulture.numberFormat.NumberGroupSeparator;this._CultureDateFormat="MDY";var t=Sys.CultureInfo.CurrentCulture.dateTimeFormat.ShortDatePattern.split(this._CultureDatePlaceholder);t.length>=3&&(this._CultureDateFormat=t[0].substr(0,1).toUpperCase()+t[1].substr(0,1).toUpperCase()+t[2].substr(0,1).toUpperCase());this._CultureCurrencySymbolPlaceholder=Sys.CultureInfo.CurrentCulture.numberFormat.CurrencySymbol;this._CultureAMPMPlaceholder=Sys.CultureInfo.CurrentCulture.dateTimeFormat.PMDesignator+";"+Sys.CultureInfo.CurrentCulture.dateTimeFormat.PMDesignator;this._AMPMPlaceholderSeparator=";";this._Century=1900;this._AllowCopyPaste=!0;this._ClipboardText=Sys.Extended.UI.Resources&&Sys.Extended.UI.Resources.Shared_BrowserSecurityPreventsPaste||"Your browser security settings don't permit the automatic execution of paste operations. Please use the keyboard shortcut Ctrl+V instead.";this._CharsEditMask="9L$CAN?";this._CharsSpecialMask="/:.,";this._MaskConv="";this._EmptyMask="";this._maskvalid="";this._DirectSelText="";this._initialvalue="";this._LogicSymbol="";this._LogicTextMask="";this._LogicMask="";this._LogicMaskConv="";this._LogicPrompt=String.fromCharCode(1);this._LogicEscape=String.fromCharCode(2);this._LogicFirstPos=-1;this._LogicLastPos=-1;this._LogicLastInt=-1;this._LogicDateTimeSepPos=-1;this._QtdValidInput=0;this._InLostfocus=!1;this._ExternalMessageError="";this._CurrentMessageError="";this._FiringOnChange=!1;this._ErroOnEnter=!1;this._charLetters="ABCDEFGHIJKLMNOPQRSTUVWXYZ";this._charNumbers="0123456789";this._charEscape="\\";this._DelimitStartDup="{";this._DelimitEndDup="}";this._focusHandler=null;this._keypressdown=null;this._keypressHandler=null;this._blurHandler=null;this._mouseOutHandler=null;this._mouseOutHandler=null;this._mouseMoveHandler=null;this._mouseEnterHandler=null;this._changeHandler=null;this._timer=null;this._timerHandler=null;this._SaveSymb="";this._SaveText="";this._SavePosi=-1;this._SaveMask="";this._SaveKeyDown=0};Sys.Extended.UI.MaskedEditBehavior.prototype={initialize:function(){var n=this.get_element(),t,i,r,u;this._InLostfocus=!0;Sys.Extended.UI.MaskedEditBehavior.callBaseMethod(this,"initialize");this._createMask();t=!1;i=this.get_ClientState();i!=null&&i!=""&&(t=i=="Focused",this.set_ClientState(null));try{n===document.activeElement&&(t=!0)}catch(f){}this._ShowMessageErrorFloat&&(this._mouseOutHandler=Function.createDelegate(this,this._onMouseOut),$addHandler(n,"mouseout",this._mouseOutHandler),this._mouseMoveHandler=Function.createDelegate(this,this._onMouseMove),$addHandler(n,"mousemove",this._mouseMoveHandler),this._mouseEnterHandler=Function.createDelegate(this,this._onMouseover),$addHandler(n,"mouseover",this._mouseEnterHandler));n.readOnly||(this._keypressdown=Function.createDelegate(this,this._onKeyPressdown),$addHandler(n,"keydown",this._keypressdown),this._keypressHandler=Function.createDelegate(this,this._onKeyPress),$addHandler(n,"keypress",this._keypressHandler));this._focusHandler=Function.createDelegate(this,this._onFocus);$addHandler(n,"focus",this._focusHandler);this._blurHandler=Function.createDelegate(this,this._onBlur);$addHandler(n,"blur",this._blurHandler);this._changeHandler=Function.createDelegate(this,this._onChange);$addHandler(n,"change",this._changeHandler);Sys.Browser.agent==Sys.Browser.Opera&&(this._timerHandler=Function.createDelegate(this,this._OnTimerTicket),this._timer=new Sys.Timer,this._timer.set_enabled(!1),this._timer.set_interval(100),this._timer.add_tick(this._timerHandler),this._SaveText="",this._SavePosi=-1,this._timer.set_enabled(!0));r=Sys.Extended.UI.TextBoxWrapper.get_Wrapper(n);this._InitValue(r.get_Value(),!0);t?this._onFocus():(this._ClearMaskOnLostfocus&&r.set_Value(this._getClearMask(r.get_Value())),u=this._CaptureServerValidators(),u||this._OnInvalidCssClass!=""&&this.AddCssClassMaskedEdit(this._OnInvalidCssClass))},dispose:function(){var n=this.get_element();this._mouseOutHandler&&($removeHandler(n,"mouseout",this._mouseOutHandler),this._mouseOutHandler=null);this._mouseMoveHandler&&($removeHandler(n,"mousemove",this._mouseMoveHandler),this._mouseMoveHandler=null);this._mouseEnterHandler&&($removeHandler(n,"mouseover",this._mouseEnterHandler),this._mouseEnterHandler=null);this._focusHandler&&($removeHandler(n,"focus",this._focusHandler),this._focusHandler=null);this._focusHandler&&($removeHandler(n,"focus",this._focusHandler),this._focusHandler=null);this._blurHandler&&($removeHandler(n,"blur",this._blurHandler),this._blurHandler=null);this._changeHandler&&($removeHandler(n,"change",this._changeHandler),this._changeHandler=null);this._keypressdown&&($removeHandler(n,"keydown",this._keypressdown),this._keypressdown=null);this._keypressHandler&&($removeHandler(n,"keypress",this._keypressHandler),this._keypressHandler=null);this._timerHandler&&(this._timer.set_enabled(!1),this._timerHandler=null,this._timer.dispose(),this._timer=null);Sys.Extended.UI.MaskedEditBehavior.callBaseMethod(this,"dispose")},_OnTimerTicket:function(){if(this._SaveSymb="",!this._InLostfocus){this._timer.set_enabled(!1);var n=Sys.Extended.UI.TextBoxWrapper.get_Wrapper(this.get_element());this._SaveText!=""?(n.set_Value(this._SaveText),this.setSelectionRange(this._SavePosi,this._SavePosi),this._SaveText="",this._SavePosi=-1,this._SaveMask=n.get_Value()):(n.get_Value().length!=this._EmptyMask.length&&n.set_Value(this._SaveMask),this._timer.get_interval()!=100&&this._timer.set_interval(100));this._timer.set_enabled(!0)}},_onChange:function(){this._FiringOnChange||this._onFocus()},_onFocus:function(){var n=this.get_element(),i,t,r,u;n.readOnly||n.disabled||(this._keypressdown||(this._keypressdown=Function.createDelegate(this,this._onKeyPressdown),$addHandler(n,"keydown",this._keypressdown)),this._keypressHandler||(this._keypressHandler=Function.createDelegate(this,this._onKeyPress),$addHandler(n,"keypress",this._keypressHandler)),this._InLostfocus=!1,this._RemoveDivToolTip(),this._OnFocusCssClass!=""&&this.AddCssClassMaskedEdit(this._OnFocusCssClass),i=Sys.Extended.UI.TextBoxWrapper.get_Wrapper(n),this._initialvalue=i.get_Value(),this._InitValue(i.get_Value(),!1),t=this._getClearMask(),r=!1,this._MessageValidatorTip&&t==""&&(r=!0),(this._MaskType==Sys.Extended.UI.MaskedEditType.Time||this._MaskType==Sys.Extended.UI.MaskedEditType.DateTime)&&this.get_CultureAMPMPlaceholder()!=""&&t==""?this._AcceptAmPm&&this.InsertAMPM(this.get_CultureAMPMPlaceholder().substring(0,1)):this._MaskType==

Closed Issue: Ajax tool kit Nov 11 release - unable to read text on a web page [27105]

$
0
0
I downloaded Ajax tool kit nov 2011 release. But adding reference and updating the web.config file with the right version, my web site does not work. It shows unreadable text on the web site. - View source does show the same text. Any help would be appreciated. Thanks!

��`I�%&/m�{J�J��t��`$ؐ@�������iG#)�*��eVe]f@�흼��{����{����;�N'���?\fdl��J�ɞ!���?~|?"��Ey�')=��y6�����h����Z��tY�iYe���(���Ӭi�Ť�N?>����I�l��|SU�ۢ�?��MQ-?����w�w�F�ɺl�u��2_�uV�җ�IYL���M�6_~�wp��;���'�����?F/Ւ:;O��Ig�*_����țq�f�>Ӭ�g���t�-���i��y�,Z�!�Uy��/�v:O[z�"_��yM0�q�u�n������Z��~u����o�;�vv������y|Wh��i���I5�N�9d�<[������l�}tȟ^��ż}���EV�GM���Q:~�/�UYՏ&e6}{�KR��=��@Y}Q,��j�(ݾ�z�K|\osR��[C��n��ӛa��{�j����4��5A�[��qE��C]�yg����b����MU� \g�a��_��y��� �J�����ߵ۳|Z�8���2? @]����X_�����E^�$ �X�>�ڶZ
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.
Viewing all 3806 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>