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

Closed Issue: ajaxToolkit:Rating Uncaught SyntaxError: Illegal return statement [27970]

$
0
0
Hi,

I am getting the following error when try to change the rating:

> Uncaught SyntaxError: Illegal return statement

Any idea what could be the cause?

-A

Closed Issue: Cannot change Mask in MaskedEditExtender [16872]

$
0
0
I want to change the Mask for a MakedEditExtender dynamically in clientside javascript.

If I use set_Mask() the value of _Mask changes, but the textbox does not change its mask.

The function supposedly raises an event..shouldn't that be enough?

Please advise!

Closed Unassigned: v15.1.2 TabContainer not working on IE [27883]

$
0
0
I just tried updating to the latest AJAX Control Toolkit from a really old version. So far, all the components seem to work except the TabContainer.

I am using VS2010, and ASP.net 4.0 with C#.

The tab does not show, and the page throws a script error upon load:
```
Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Win64; x64; Trident/4.0; .NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3; .NET4.0E)
Timestamp: Fri, 26 Jun 2015 22:52:08 UTC


Message: Expected identifier, string or number
Line: 365
Char: 5
Code: 0
URI: http://localhost:53243/ScriptResource.axd?d=gGy0IYFiFei-bvFLbddGL7lWwVwa6rB96uDiGYwaYBlSXiuqkjwttTmaqs22BD9ZV0eePPVG5MEMrMdKRm3ZPWkB5208jR4DQXqXgXa-K8vbpN0J4J2GPZAfCFGt6Clo0&t=4c030be6


Message: Sys.ArgumentUndefinedException: Value cannot be undefined.
Parameter name: type
Line: 3803
Char: 12
Code: 0
URI: http://localhost:53243/ScriptResource.axd?d=fljd3nXzqvqnwxuNyoHzJXKdgwQAVTCCWbkv8wKW_SpVa765kyr5aHk6Z8XAJ_aSbGTGcorFXPz9m7FcY5CFwUf7O5rj7TZsuTM2R0VYzs72Nhc4wCtt6s1eXjVQVUVqyAP86837dynzdGTeqKrLjsx1tWidUfp6mxbbeiNYD9emxfIpGnPn6ggb6FP6FmLx0&t=7b689585


```

I even verified this by creating a brand new empty Web Application, and dropping a single TabContainer onto the default page. Same deal. Oddly though, the page does view fine in Chrome and Firefox.
```
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeBehind="Default.aspx.cs" Inherits="WebApplication2._Default" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<h2>
Welcome to ASP.NET!
</h2>
<p>
To learn more about ASP.NET visit <a href="http://www.asp.net" title="ASP.NET Website">
www.asp.net</a>.
</p>
<p>
You can also find <a href="http://go.microsoft.com/fwlink/?LinkID=152368&clcid=0x409"
title="MSDN ASP.NET Docs">documentation on ASP.NET at MSDN</a>.
</p>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<cc1:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="1">
<cc1:TabPanel runat="server" HeaderText="TabPanel1" ID="TabPanel1">
<ContentTemplate>
test 1
</ContentTemplate>
</cc1:TabPanel>
<cc1:TabPanel ID="TabPanel2" runat="server" HeaderText="TabPanel2">
<ContentTemplate>
test 2
</ContentTemplate>
</cc1:TabPanel>
</cc1:TabContainer>
</asp:Content>

```

I am using the latest Chrome and Firefox versions, but I am using IE8 (because of some stupid legacy tools my company uses break under the newer IE versions).

Closed Issue: ajax tool kit not installing [27974]

$
0
0
ajax tool kit is not installing in my pc.........i am using visual studio2015 community
it showing the following errrors which i attached in this post....



Closed Unassigned: Calendar Extender [27967]

$
0
0
Hi,
Why "CalendarExtender" and "ValidatorCalloutExtender" not works correctly with boostrap?
I'm tryed like this ".ajax__calendar_container { position: absolute; z-index: 10000; }".
Thanks...

Closed Unassigned: Copy Paste file to upload using Ajax Control toolkit AjaxFileUpload [27965]

$
0
0


I have a __query__. I have implemented ASP.Net AjaxControlToolkit AjaxFileupload control to upload files in my ASP.Net web application.It works fine,it uploads file by browsing and by drag and drop. How can I let users to upload file by 'Copy and Paste' using this control.Can this be done?

Please suggest if there is a workaround.

Closed Unassigned: AjaxFileUpload Ignores both maxRequestLength and maxAllowedContentLength [27964]

$
0
0

I'm not sure how this is possible, but when using AjaxFileUpload you are still able to somehow upload extremely large files even when you have set both maxRequestLength and maxAllowedContentLength properties in the web.config.

In my case I would like to set a limit on uploaded file size to 30 MB. So I have set both the maxRequestLength and maxAllowedContentLength properties to their 30MB equivalents (as seen below). I'm running IIS 7.5 on Server 2008 R2. Somehow, when using the AjaxFileUpload control I can still upload files over 400 MB.

When using the normal out of the box asp FileUpload control, the maxRequestLength and maxAllowedContentLength settings are limiting the file size appropriately. So the properties in the web.config are correct.

Help...What am I missing?

```
<configuration>
<system.web>
..........
<httpRuntime maxRequestLength="30720"/> <!--30 MB in kilobytes-->
..........
</system.web>
<system.webServer>

<validation validateIntegratedModeConfiguration="false"/>
<handlers>
<add name="AjaxFileUploadHandler" verb="*" path="AjaxFileUploadHandler.axd" type="AjaxControlToolkit.AjaxFileUploadHandler, AjaxControlToolkit"/>
</handlers>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="31457280" /> <!-- 30 MB in bytes-->
</requestFiltering>
</security>
</system.webServer>
..........
</configuration>

```

Closed Unassigned: Value is clear when focus to MaskedEditExtender [27966]

$
0
0
Hi,

I have just updated to using ajax 15.1.3 and found that behavior on MaskedEditExtender is changed compared with previous version.
Steps:
1. Typing value to mask input
2. Focus out mask input
3. Focus again on mask input >> value is cleared

At step 3, the value is not cleared on previous version.
I'm not sure this is new issue or it's as intend.
Could you please explain for me.

Thanks

Closed Unassigned: ScriptUserControl class missing! [27946]

$
0
0
Hello,
I just thought I would give it a try and port my web project to the all new ACT.
The very first problem I noticed my solution containing my own controls based on ACT did not compile.
ScriptUserControl class is missing! I checked the ACT source code and still did not find it.
What happened?

Closed Issue: Extending Multiple Textboxes with a Single Calendar Control [9730]

$
0
0
If I have a multiple textboxes as part of a DataList or Repeater I have to create an extender for each. This produces a very slow page if I have 30 rows. We really need the ability to extend all of these textboxes with a single extender assuming it does this in an efficient way

Commented Unassigned: Modal Popup incorrect z-index in tab container and update panel [27971]

$
0
0
Just noticed this with the latest release, 15.1.4. I have a tabcontainer inside an updatepanel with updatemode = conditional. Some of the tabs trigger a modalpopupextender via code-behind also via child updatepanel. Initially, the modal popup and background display on top like they should, but after doing an update on the outer updatepanel, the modal popups and background css appear behind the tab container. z-index is -6000 for backgroundelement and -5999 for the modal popup when this happens. Used to work fine prior to release 15.1.4.
Comments: The issue does look like the one described in the [27101](https://ajaxcontroltoolkit.codeplex.com/workitem/27101) thread. It will be fixed in the next version. There is no solution for the current 15.1.4 version. Therefore, I recommend you downgrade AJAX Control Toolkit used in your project to the previous 15.1.3 version. This is the only way to overcome this issue until the next AJAX Control Tookit release. Would you please clarify if downgrading helps?

Commented Unassigned: Attempting to use V15.1.4 with an Empty ASP.Net Web Application [27977]

$
0
0
Attempting to use V15.1.4 of AJAX Control Toolkit with Visual Studio 2015 and an Empty ASP.Net Web Application. The Toolbox shows the Toolkit tab but all of the controls are greyed out and the tab only shows up if I tell it to show me all tabs. The documentation shows using it with a regular ASP.NET Web Application but I do not want all of the overhead of that kind of a project. Any ideas what I need to do to make it work with my Empty Web Application?

Thanks

Mike
Comments: Hi! The behavior you described is very strange and we can't reproduce it. Would you please provide more information for us on the problem you faced, including screenshots or, even better, a short screencast? Also, try to reinstall the AJAX Control Toolkit library using our installer. Best regards, Fadil

Edited Issue: Attempting to use V15.1.4 with an Empty ASP.Net Web Application [27977]

$
0
0
Attempting to use V15.1.4 of AJAX Control Toolkit with Visual Studio 2015 and an Empty ASP.Net Web Application. The Toolbox shows the Toolkit tab but all of the controls are greyed out and the tab only shows up if I tell it to show me all tabs. The documentation shows using it with a regular ASP.NET Web Application but I do not want all of the overhead of that kind of a project. Any ideas what I need to do to make it work with my Empty Web Application?

Thanks

Mike

Commented Issue: HTMLEditorExtender - Disappearing Width Attribute [27281]

$
0
0
The width attribute keeps disappearing from images, iframes etc.

Can happen when switching between HTML & rich editor view, and on submit.
Comments: Hi! Thank you for sharing your experience! This issue fixed and this fix will be available with the next release of the AJAX Control Toolkit. Best regards, Fadil

Edited Issue: HTMLEditorExtender - Disappearing Width Attribute [27281]

$
0
0
The width attribute keeps disappearing from images, iframes etc.

Can happen when switching between HTML & rich editor view, and on submit.

Commented Issue: TabPanel CSS needs updating for Mozilla FireFox [27972]

$
0
0
The default css display element for .ajax_tab_inner and .ajax_tab_outer is display: -moz-inline-box. This used to display my custom css correctly in FireFox, up until FireFox v41.0,2, and now the tab headers are not displaying correctly. Changing this value to display: inline-block corrects the behavior. Can we get the default css for .ajax_tab_inner and .ajax_tab_outer to use display: inline-block instead of display: -moz-inline-box?
Comments: Hi! Thank you for your report! The issue you described fixed and this fix will be available in the next version of the AJAX Control Toolkit. Best regards, Fadil

Edited Issue: TabPanel CSS needs updating for Mozilla FireFox [27972]

$
0
0
The default css display element for .ajax_tab_inner and .ajax_tab_outer is display: -moz-inline-box. This used to display my custom css correctly in FireFox, up until FireFox v41.0,2, and now the tab headers are not displaying correctly. Changing this value to display: inline-block corrects the behavior. Can we get the default css for .ajax_tab_inner and .ajax_tab_outer to use display: inline-block instead of display: -moz-inline-box?

Commented Unassigned: Modal Popup incorrect z-index in tab container and update panel [27971]

$
0
0
Just noticed this with the latest release, 15.1.4. I have a tabcontainer inside an updatepanel with updatemode = conditional. Some of the tabs trigger a modalpopupextender via code-behind also via child updatepanel. Initially, the modal popup and background display on top like they should, but after doing an update on the outer updatepanel, the modal popups and background css appear behind the tab container. z-index is -6000 for backgroundelement and -5999 for the modal popup when this happens. Used to work fine prior to release 15.1.4.
Comments: I had the same problem here, downgrading to 15.1.3 solved the problem.

Edited Feature: Paste from MS Word (with cleanup) in HTMLEditorExtender [26985]

$
0
0
We need the two paste operation:
Paste Plain Text
Paste from MS Word (with cleanup)
in the new HTMLEditorExtender. Like we had in the old HTMLEditor.

Commented Feature: Paste from MS Word (with cleanup) in HTMLEditorExtender [26985]

$
0
0
We need the two paste operation:
Paste Plain Text
Paste from MS Word (with cleanup)
in the new HTMLEditorExtender. Like we had in the old HTMLEditor.
Comments: The feature is implemented and will be included in one of our future releases.
Viewing all 4356 articles
Browse latest View live


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