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

Closed Issue: Ajax ToolKit 4.0 [27085]

$
0
0
I have add ajax toolkit 4.0 in my web project.but ajax tools are not working.when i try to drag tools on webpage then tools not drag on webpage.please help me.How to use it.it's urgent.
Comments: Outdated.

Commented Issue: CalendarExtender with popupbuttonid open when press [14273]

$
0
0
When you use a calendarextender with a popupbuttonid, if you press <enter> in the page the calender will be open.

You can test this in the calendar sample page : http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Calendar/Calendar.aspx
Just click in the first textbox at the top of the page and then press <enter>, the last calendar will be opened....
Comments: We were unable to reproduce this issue with the latest version of the AJAX Control Toolkit. Would you provide a sample project that uses AJAX Control Toolkit v15.1?

Commented Issue: Not working Ajax toolkit AsyncFileUpload in Firefox [27086]

$
0
0
AsyncFileUpload not working when I put it inside the modal popup control. The problem is only in Firefox, but other browsers do. I am using toolkit Version 4.1 in .Net 4. Please help me to solve this problem.
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: Not working Ajax toolkit AsyncFileUpload in Firefox [27086]

$
0
0
AsyncFileUpload not working when I put it inside the modal popup control. The problem is only in Firefox, but other browsers do. I am using toolkit Version 4.1 in .Net 4. Please help me to solve this problem.

Closed Issue: Animation not working when ModalPopupExtender is programmatically hidden [27097]

$
0
0
I have tried everything I can think of and am beginning to suspect that this is a valid bug. The animation specified for the OnHiding or OnHidden events will not execute when the Hide method of the ModalPopupExtender is called in code behind. The Hide method definitely works in that the popup does close, it is just that the animation does not work.

Please see my thread in the Microsoft forums:
http://forums.asp.net/t/1760320.aspx/1?Animation+not+working+when+ModalPopupExtender+is+programmatically+hidden+


Comments: Outdated

Closed Issue: Problem with ReorderList control from AJAX Toolkit [25620]

$
0
0
We are using AJAX control toolkit on .NET Framework 3.5. The toolkit is downloaded a few months back, and shows the version of 3.0.30512.17815 in the properties window.

We are using ReorderList control in a scrollable DIV or scrollable Panel. The requirement is that the Drag/Drop should work on a large list, where no. of items in the list are very much larger than the DIV height can accommodate. This should work on IE7, IE8, Firefox 3.0 and Firefox 3.5.

We are getting following problems:
1. While Drag/Drop operation, the automatic scrolling doesn't happen in IE8, Firefox 3.0 and Firefox 3.5. (Works only in IE7).
2. If the DIV is already scrolled and then Drag/Drop operation is tried, the correct scroll position is not captured and the captured row is at an offset from the mouse position (sometimes the captured row is not visible at all).
3. If the DIV is already scrolled and any row is just clicked, that row is shifted to the corresponding position on the first page of the DIV.

Any solutions for these issues?
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: Date Mask Incorrectly Set On Server Side [27098]

$
0
0
I found this issue as I was working on a bug with globalization. I debugged into the the client side code and noticed the mask format was incorrect and was breaking what the client side code is expecting. This is the fix I implemented to ensure the server sets the correct pattern based on the enum type. The problem was that the enum type NAME was being assigned and this is incorrect because the name is NOT using the patter expected by the client side.

In the AjaxControlToolkit.MaskedEditValidator, the following fixes were applied in OnPreRender (the commented line is the original):
case MaskedEditType.DateTime:
...
//AttibFmt = (MaskExt.UserDateFormat == MaskedEditUserDateFormat.None ? AttibFmt : MaskExt.UserDateFormat.ToString());
AttibFmt = (MaskExt.UserDateFormat == MaskedEditUserDateFormat.None ? AttibFmt : ConvertUserDateFormat(MaskExt.UserDateFormat));
...
case MaskedEditType.Date:
...
//AttibFmt = (MaskExt.UserDateFormat == MaskedEditUserDateFormat.None ? AttibFmt : MaskExt.UserDateFormat.ToString());
AttibFmt = (MaskExt.UserDateFormat == MaskedEditUserDateFormat.None ? AttibFmt : ConvertUserDateFormat(MaskExt.UserDateFormat));

Added the following helper method to provide the correct pattern expected on the client side based on the enum type:

/// <summary>
/// Helper to fix bug that was returning the enumerated full name rather
/// than the 3-letter format causing the JavaScript functions relying on
/// the 3-letter format to fail
/// </summary>
/// <param name="enumFormat">The MaskedEditUserDateFormat type</param>
/// <returns>Returns the 3-letter representation of the enumerated type</returns>
protected string ConvertUserDateFormat(MaskedEditUserDateFormat enumFormat)
{
switch (enumFormat)
{
case MaskedEditUserDateFormat.DayMonthYear:
return "DMY";
case MaskedEditUserDateFormat.DayYearMonth:
return "DYM";
case MaskedEditUserDateFormat.MonthDayYear:
return "MDY";
case MaskedEditUserDateFormat.MonthYearDay:
return "MYD";
case MaskedEditUserDateFormat.YearDayMonth:
return "YDM";
case MaskedEditUserDateFormat.YearMonthDay:
return "YMD";
}

return "MDY";
}

I've attached the modified file. You can search on "AY PRISM fix" to find the modified code.
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: 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.

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?
Viewing all 4356 articles
Browse latest View live


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