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

Closed Issue: ToggleButtonExtender not rendering images [27359]

$
0
0
I am using AjaxControlToolkit 4.5.7.123 with a Target framework of .NET Framework 4.5. The page contains the ToolkitScriptManager control. There are user controls on the page, each of which contains controls similar to the following:

<asp:CheckBox ID="Compensation_Cbx" runat="server" Checked="false" AutoPostBack="true" />
<act:ToggleButtonExtender ID="Compensation_Toggle" runat="server" TargetControlID="Compensation_Cbx" ImageWidth="20" ImageHeight="20" CheckedImageUrl="/Images/Buttons/Minus.gif" CheckedImageAlternateText="Hide compensation." UncheckedImageUrl="/Images/Buttons/Plus.gif" UncheckedImageAlternateText="View compensation." />

The images do not render over the checkbox at all. I have verified that the images are on the server in the correct locations. I have also tried using the full URLs of the images, but that made no difference.

Closed Issue: Invalid HTML5 property in Calendar control [27331]

$
0
0
Was using 3.5, downloaded 4.0, and the problem appears in both: there is an invalid property in the Calendar control that kills my HTML5 W3C validation. It appears in the genrated code when using the "StyleFolder" property of the Calendar control:

<link rel="stylesheet" itemprop="url" type="text/css" href="/styles/Default/Calendar/styles/default/style.css" />

The problem is the "itemprop" property. Can this property be fixed/removed somehow while still retaining the StyleFolder functionality?

Thanks.

Closed Issue: backspace with maskededitbehavior [27580]

$
0
0
Hi,
We are using maskededitbehavior control for required field validation for Textbox and text area.

It works perfectly for atextbox. However, in case of a text area, the backspace button does not delete any blank line. Even a delete does not delete a line.



Please help me.

Thanks
-Sonia

Closed Issue: Exception in ajaxcontroltoolkit.. type._registerScript [27626]

$
0
0
Hi,

I am having following exception in my asp .net projects. It was working fine with .net framework 2.0/3.5 and ajaxcontroltoolkit..

Recently I upgraded my project to .net framework 4.5. Now I am getting the following exception. I am having this exception with old ajaxtcontroltoolkit and also with ajaxcontroltoolkit 2013 with .net framework 4.5.

This exception is in ajaxtcontroltoolkit project..
0x800a01b6 - JavaScript runtime error: Object doesn't support property or method '_registerScript'

I will appreciate any help.

Thanks..

Commented Unassigned: Issues installing Ajax Control Toolkit 15.1.2 [27894]

$
0
0
Hi,

I'm just upgrading the Ajax Control Toolkit to the latest version by DevExpress and to do so I uninstalled the previous version and installed the 15.1.2.
Everything went well with the exception of not getting installed the localization subfolders within the Bin folder as in the past hence I have not other local (ex. ar folder that used to contain the AjaxControlToolkit.resources.dll file).

I'm not sure if there is a parameter excluding these files or there is something wrong with the install. I assumed it's the first one as otherwise there should have been more people looking for.

Tks

Comments: I've managed to reproduce the issue and found that we already fixed it. The fix is included into the next release. Please check [item 27481](http://ajaxcontroltoolkit.codeplex.com/workitem/27481) for more information.

Reopened Unassigned: Issues installing Ajax Control Toolkit 15.1.2 [27894]

$
0
0
Hi,

I'm just upgrading the Ajax Control Toolkit to the latest version by DevExpress and to do so I uninstalled the previous version and installed the 15.1.2.
Everything went well with the exception of not getting installed the localization subfolders within the Bin folder as in the past hence I have not other local (ex. ar folder that used to contain the AjaxControlToolkit.resources.dll file).

I'm not sure if there is a parameter excluding these files or there is something wrong with the install. I assumed it's the first one as otherwise there should have been more people looking for.

Tks

Closed Unassigned: Issues installing Ajax Control Toolkit 15.1.2 [27894]

$
0
0
Hi,

I'm just upgrading the Ajax Control Toolkit to the latest version by DevExpress and to do so I uninstalled the previous version and installed the 15.1.2.
Everything went well with the exception of not getting installed the localization subfolders within the Bin folder as in the past hence I have not other local (ex. ar folder that used to contain the AjaxControlToolkit.resources.dll file).

I'm not sure if there is a parameter excluding these files or there is something wrong with the install. I assumed it's the first one as otherwise there should have been more people looking for.

Tks

Comments: Merged with item [27481](http://ajaxcontroltoolkit.codeplex.com/workitem/27481)

Commented Unassigned: Setting Focus in a Tab Panel [27891]

$
0
0
I'm trying to set focus on a text box that's on a tab panel.

I can find the control by using
Dim t As System.Web.UI.WebControls.TextBox = CType(tc1.Tabs(0).FindControl("t1"), TextBox)

but I cannot set focus to the textbox... I get no errors when using t.focus it just won't place the cursor inside the text box

anyone know how to set focus inside a tab panel ?

thanks for your help
Comments: You can execute code above inside OnClientActiveTabChanged event handler. An example can be found here: http://ajaxcontroltoolkit.codeplex.com/SourceControl/latest#AjaxControlToolkit.SampleSite/Tabs/Tabs.aspx

Commented Issue: UpdatePanelAnimationExtender OnUpdating runs on every postback [15788]

$
0
0
When you have multiple update panels on a page and you are using an UpdatePanelAnimationExtender for one of them, the OnUpdating animation runs for every postback regardless of which mode the UpdatePanel is in (UpdateMode=Always|Conditional).

This is problematic because:

1. The content inside the update panel isn't always changing when the animation runs, however the whole point of the animation is to draw attention to the update panel, showing that the content is changing/updating.
2. The OnUpdated animation only runs when the content in the update panel actually changes... so if a panel fades out OnUpdating and fades in OnUpdated, then your panel will fade out but never fade back in.
3. It seems to me that the current behavior destroys the intended functionality of the UpdatePanelAnimationExtender control all together once you have multiple panels on the page. If OnUpdating would execute only when the associated UpdatePanel actually updates, then people would actually use this control.
Comments: The issue is fixed and the fix is included in the future release. Related changeset: [11f8a4a](https://ajaxcontroltoolkit.codeplex.com/SourceControl/changeset/11f8a4a66effb8051d57ff87e41ffd6c5a41abf8)

Edited Issue: UpdatePanelAnimationExtender OnUpdating runs on every postback [15788]

$
0
0
When you have multiple update panels on a page and you are using an UpdatePanelAnimationExtender for one of them, the OnUpdating animation runs for every postback regardless of which mode the UpdatePanel is in (UpdateMode=Always|Conditional).

This is problematic because:

1. The content inside the update panel isn't always changing when the animation runs, however the whole point of the animation is to draw attention to the update panel, showing that the content is changing/updating.
2. The OnUpdated animation only runs when the content in the update panel actually changes... so if a panel fades out OnUpdating and fades in OnUpdated, then your panel will fade out but never fade back in.
3. It seems to me that the current behavior destroys the intended functionality of the UpdatePanelAnimationExtender control all together once you have multiple panels on the page. If OnUpdating would execute only when the associated UpdatePanel actually updates, then people would actually use this control.

Reopened Unassigned: Multiple Modal Dialog Boxes on one Page [27895]

$
0
0
I have a requirement for a web page where I need to open one dialog box to capture information from the page, and depending on the user data requirements, I need to open a second dialog box from the first dialog box on the page to capture more detailed information.

I have create two sample projects, one with a single modal dialog box, and one project with two modal dialog boxes, the first one to be opened from the page, and the second one to be opened from the first dialog box.

The single dialog box project works as expected, almost. The text box has a calendar extender on it, and the calendar will only work if it is defined in the aspx file before the button with the modal dialog box on it. If the modal dialog box is first, then the calendar extender does not function.

The two dialog box project does not work as expected. First, when you click on the button to open the first dialog box, the screen flashes and does not open the dialog box. When you click on the button a second time, the first dialog box opens as expected. You can click on the OK button or the Close button and it works as expected. When you click on the button to open the detail dialog box, the panel is opened not as a dialog box but as part of the underlying page. All controls on the primary page are accessible. When you close the second dialog box, the first dialog box is not displayed. The page goes back to the underlying page only.

All binaries (including the AjaxToolkit package) have been stripped out of the attached zip to to allow the size of the file to be under the 4MB maximum.

Commented Unassigned: Issues installing Ajax Control Toolkit 15.1.2 [27894]

$
0
0
Hi,

I'm just upgrading the Ajax Control Toolkit to the latest version by DevExpress and to do so I uninstalled the previous version and installed the 15.1.2.
Everything went well with the exception of not getting installed the localization subfolders within the Bin folder as in the past hence I have not other local (ex. ar folder that used to contain the AjaxControlToolkit.resources.dll file).

I'm not sure if there is a parameter excluding these files or there is something wrong with the install. I assumed it's the first one as otherwise there should have been more people looking for.

Tks

Comments: Hi, yes it works with the turn around of setting the UserDateFormat property. Tks

Edited Unassigned: Multiple Modal Dialog Boxes on one Page [27895]

$
0
0
I have a requirement for a web page where I need to open one dialog box to capture information from the page, and depending on the user data requirements, I need to open a second dialog box from the first dialog box on the page to capture more detailed information.

I have create two sample projects, one with a single modal dialog box, and one project with two modal dialog boxes, the first one to be opened from the page, and the second one to be opened from the first dialog box.

The single dialog box project works as expected, almost. The text box has a calendar extender on it, and the calendar will only work if it is defined in the aspx file before the button with the modal dialog box on it. If the modal dialog box is first, then the calendar extender does not function.

The two dialog box project does not work as expected. First, when you click on the button to open the first dialog box, the screen flashes and does not open the dialog box. When you click on the button a second time, the first dialog box opens as expected. You can click on the OK button or the Close button and it works as expected. When you click on the button to open the detail dialog box, the panel is opened not as a dialog box but as part of the underlying page. All controls on the primary page are accessible. When you close the second dialog box, the first dialog box is not displayed. The page goes back to the underlying page only.

All binaries (including the AjaxToolkit package) have been stripped out of the attached zip to to allow the size of the file to be under the 4MB maximum.

Commented Unassigned: Multiple Modal Dialog Boxes on one Page [27895]

$
0
0
I have a requirement for a web page where I need to open one dialog box to capture information from the page, and depending on the user data requirements, I need to open a second dialog box from the first dialog box on the page to capture more detailed information.

I have create two sample projects, one with a single modal dialog box, and one project with two modal dialog boxes, the first one to be opened from the page, and the second one to be opened from the first dialog box.

The single dialog box project works as expected, almost. The text box has a calendar extender on it, and the calendar will only work if it is defined in the aspx file before the button with the modal dialog box on it. If the modal dialog box is first, then the calendar extender does not function.

The two dialog box project does not work as expected. First, when you click on the button to open the first dialog box, the screen flashes and does not open the dialog box. When you click on the button a second time, the first dialog box opens as expected. You can click on the OK button or the Close button and it works as expected. When you click on the button to open the detail dialog box, the panel is opened not as a dialog box but as part of the underlying page. All controls on the primary page are accessible. When you close the second dialog box, the first dialog box is not displayed. The page goes back to the underlying page only.

All binaries (including the AjaxToolkit package) have been stripped out of the attached zip to to allow the size of the file to be under the 4MB maximum.
Comments: I have reviewed the sample project and I understand the resolution. Removing values from the CancelControlID and the OKControlID of the ModalPopupExtender allows the code behind to operate and process the data on each modal dialog box as the user clicks on each button. I have a couple of further issues that I need to resolve. The buttons to display the modal dialog boxes are assigned to the TargetControlID of the ModalPopupExtender control. That property is required to be assigned a value. On clicking the button, these buttons do display the modal dialog box properly. The issue is that I need to run some code on the server on clicking the button to display a modal dialog box so that the modal dialog box can be initialized. There is information within the modal dialog box that must be initialized based on information that the user has entered in the underlining page. The second issue is being able to display a modal dialog box on clicking a button within row on a GridView control. In this case, the code behind must run to determine which row was selected, and populate the modal dialog box with information based on the selected row. Last, if I want to leave the first modal dialog box visible as a reference display under the second modal dialog box, the controls on the first modal dialog box are still enabled. I need to be able to disable all the controls on the first modal dialog box. This would be useful where the modal dialog boxes are allowed to be moved so that the user can view the data on the first modal dialog box while using the second modal dialog box to enter detail data.

Commented Unassigned: Multiple Modal Dialog Boxes on one Page [27895]

$
0
0
I have a requirement for a web page where I need to open one dialog box to capture information from the page, and depending on the user data requirements, I need to open a second dialog box from the first dialog box on the page to capture more detailed information.

I have create two sample projects, one with a single modal dialog box, and one project with two modal dialog boxes, the first one to be opened from the page, and the second one to be opened from the first dialog box.

The single dialog box project works as expected, almost. The text box has a calendar extender on it, and the calendar will only work if it is defined in the aspx file before the button with the modal dialog box on it. If the modal dialog box is first, then the calendar extender does not function.

The two dialog box project does not work as expected. First, when you click on the button to open the first dialog box, the screen flashes and does not open the dialog box. When you click on the button a second time, the first dialog box opens as expected. You can click on the OK button or the Close button and it works as expected. When you click on the button to open the detail dialog box, the panel is opened not as a dialog box but as part of the underlying page. All controls on the primary page are accessible. When you close the second dialog box, the first dialog box is not displayed. The page goes back to the underlying page only.

All binaries (including the AjaxToolkit package) have been stripped out of the attached zip to to allow the size of the file to be under the 4MB maximum.
Comments: As I was continuing to test my dual modal dialog box test application, I found that if the first modal dialog box is not hidden, then tabbing on the second modal dialog box does not work: it tabs between the address bar and the first text box, it will not tab to any button controls.

Closed Issue: Ajax Tabcontainer (.net 3.5) disappears in ie9 after postback [27497]

$
0
0
The Ajax tabcontainer from the AjaxControlToolKit - July 2013 release for .net 3.5 disappears after postback only in IE9 while it works fine in Chrome.

Closed Issue: AjaxFileUpload: the upload-button always visible in a tabContainer [27469]

$
0
0
When you use the AjaxFileUpload within a tabContainer, the upload-button is alway visible.

Closed Issue: RounderCornersExtender no longer works [27479]

$
0
0
I downloaded and installed the new AJAX control toolkit (version 4.1.7.725) released in July 2013.

None of the rounder corner extenders (RCE) I have in my ASP.NET application work anymore.

When I load the page with a rounded corner extender on it, I get this error:

"Unhandled exception at line 5906, column 5 in http://localhost:58660/Private/English/LandingPages/Owner_e.aspx?BPID=143&RK=0

0x800a138f - JavaScript runtime error: Unable to get property 'UI' of undefined or null reference"

Here is the line that is highlighted that causes the error:

"$create(Sys.Extended.UI.RoundedCornersBehavior, {"BorderColor":"#CCCCCC","Radius":20,"id":"ctl00_PageBody_ucProperties_e_rcePropertiesCalendar"}, null, null, $get("ctl00_PageBody_ucProperties_e_pnlPropertiesCalendar"));"

I can't possibly be the only person with this problem ... does anyone have a solution?

Erik

Closed Issue: ComboBox Javascript Error OnMouseWheel Event [25946]

$
0
0
When there are no items in the combobox and the user moves the mouse wheel, a javascript error is thrown, which in IE causes no other controls on the form to be used and has no affect in Firefox.

The error is this:
this.ajax__combobox_prototypes[i]._popupBehavior is null

And it happens in this code (at line 908):

898 if (typeof (_this) === 'undefined') {
899 _this = this;
900 }
901
902 // hide the option list when user mousewheel scrolls outside of it
903 if (typeof (this.ajax__combobox_prototypes) === 'undefined') {
904 this._popupBehavior.hide();
905 }
906 else {
907 for (var i = 0; i < this.ajax__combobox_prototypes.length; i++) {
908 this.ajax__combobox_prototypes[i]._popupBehavior.hide();
909 }
910 }
911
912 return true;

Code affected:
# $addHandlers(document,
# {
# 'click': this._documentClickHandler,
# 'mousewheel': this._documentMouseWheelHandler
# }, this);
#
# // FF doesn't have an onmousewheel event
# if (typeof (this.get_optionListControl().onmousewheel) === 'undefined') {
#
# this.get_optionListControl()._thisPrototype = this;
# if (typeof (document.ajax__combobox_prototypes) === 'undefined') {
# document.ajax__combobox_prototypes = new Array();
# }
# Array.add(document.ajax__combobox_prototypes, this);
#
# this.get_optionListControl().addEventListener('DOMMouseScroll', this._onListMouseWheel, false);
# document.addEventListener('DOMMouseScroll', this._onDocumentMouseWheel, false);
# }
# .....
#
# _onDocumentMouseWheel: function(e) {
#
# // event is invoked by either 'this' prototype or the DOM document object
# var _this = this.ajax__combobox_prototypes;
# if (typeof (_this) === 'undefined') {
# _this = this;
# }
#
# // hide the option list when user mousewheel scrolls outside of it
# if (typeof (this.ajax__combobox_prototypes) === 'undefined') {
# this._popupBehavior.hide();
# }
# else {
# for (var i = 0; i < this.ajax__combobox_prototypes.length; i++) {
# this.ajax__combobox_prototypes[i]._popupBehavior.hide();
# }
# }
#
# return true;
#
# }

Closed Issue: Assembly "AjaxControlToolkit, Version=4.5.7.607, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" does not contain a script with hash code "e148b24b.com". [27462]

$
0
0
I am using ACT 4.5.7.607 (June 2013 Release).
In my personal site, I made a contact form and I used ToolkitScriptManager, ValidatorCalloutExtender & FilterdTextBox.
I also made some standard extender (not toolkit extender).
Locally, when I ran my solution, every things were OK.
I ran my solution on a Desktop with Win 8 Enterprise x64 (fully up to dated).
After publishing on remote host, in my contact page, extenders did not work.
Remote host operate based on Win Server 2008 R2 + .NET 4.5.
I used IE Developer Tools (Network Capturing) and I found that some requests to script resources got HTTP Error 500.

Requested resource was:
> http://www.mysite.com/Pages/Contact.aspx?_TSM_HiddenField_=RightPanel_ToolkitScriptManager1_HiddenField&_TSM_CombinedScripts_=%3b%3bAjaxControlToolkit%2c+Version%3d4.5.7.607%2c+Culture%3dneutral%2c+PublicKeyToken%3d28f01b0e84b6d53e%3aen-US%3a7c8623f1-14eb-488e-91cc-0436fe374fb8%3af2c8e708%3ade1feab2%3a720a52bf%3af9cec9bc%3a589eaa30%3a698129cf%3ae148b24b



I used that to getting full error description and result was:
> [NotSupportedException: Assembly "AjaxControlToolkit, Version=4.5.7.607, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" does not contain a script with hash code "e148b24b.com".]
AjaxControlToolkit.ToolkitScriptManager.DeserializeScriptEntries(String serializedScriptEntries, Boolean loaded) +876
AjaxControlToolkit.ToolkitScriptManager.OutputCombinedScriptFile(HttpContext context) +881
AjaxControlToolkit.ToolkitScriptManager.OnInit(EventArgs e) +51
System.Web.UI.Control.InitRecursive(Control namingContainer) +134
System.Web.UI.Control.InitRecursive(Control namingContainer) +290
System.Web.UI.Control.InitRecursive(Control namingContainer) +290
System.Web.UI.Control.InitRecursive(Control namingContainer) +290
System.Web.UI.Control.InitRecursive(Control namingContainer) +290
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +489

When I used standard ScriptManager, my form worked properly on both local and remote host .
Please guide me to solve the problem(s).
Thanks in advance.
Viewing all 4356 articles
Browse latest View live


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