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

Edited Issue: ModalPopupExtender gets hidden from any button [27902]

$
0
0
Any button inside a ModalPopupExtender hides the modal. It doesn't matter if the button is set as CancelControlID or OkControlID.

In the following example, both btnFoo and btnBar closes the modal.

```
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:Button ID="btnOpen" runat="server" Text="Open" />
<cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server"
CancelControlID="btnModalCancel" OkControlID="btnModalOkay" TargetControlID="btnOpen"
PopupControlID="Panel1">
</cc1:ModalPopupExtender>

<asp:Panel ID="Panel1" Style="display: none" runat="server">
<asp:Button ID="btnModalCancel" runat="server" Text="Cancel" />
<asp:Button ID="btnModalOkayl" runat="server" Text="OK" />
<asp:Button ID="btnFoo" runat="server" Text="Foo" />
<asp:Button ID="btnBar" runat="server" Text="Bar" />
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>



```

Commented Issue: ModalPopupExtender gets hidden from any button [27902]

$
0
0
Any button inside a ModalPopupExtender hides the modal. It doesn't matter if the button is set as CancelControlID or OkControlID.

In the following example, both btnFoo and btnBar closes the modal.

```
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:Button ID="btnOpen" runat="server" Text="Open" />
<cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server"
CancelControlID="btnModalCancel" OkControlID="btnModalOkay" TargetControlID="btnOpen"
PopupControlID="Panel1">
</cc1:ModalPopupExtender>

<asp:Panel ID="Panel1" Style="display: none" runat="server">
<asp:Button ID="btnModalCancel" runat="server" Text="Cancel" />
<asp:Button ID="btnModalOkayl" runat="server" Text="OK" />
<asp:Button ID="btnFoo" runat="server" Text="Foo" />
<asp:Button ID="btnBar" runat="server" Text="Bar" />
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>



```
Comments: Hi Glenn,   We have tested this control in the scenario you provided. And yes, this is the problem of the ModalPopup extender. We will investigate this issue and fix it in the nearest future. Let me offer you a workaround for now. If you don't want the popup to close on a button click, just add the ```OnClientClick``` attribute with the JavaScript ```return false;``` statement to this button: ``` <asp:button runat="server".... OnClientClick="return false;" /> ``` Best regards, Fadil

Commented Unassigned: open vs2010 project to upgrade to vs2013 not toolkit not showing in toolbox [27901]

$
0
0
After I install toolkit.
If I create a new project in VS2013 then toolkit showing in tool box. But in the upgraded project from vs2010 the toolbox does not show toolkit.
Comments: Hi, Please clarify what Visual Studio 2010 edition you are using. Best regards, Fadil

Edited Issue: open vs2010 project to upgrade to vs2013 not toolkit not showing in toolbox [27901]

$
0
0
After I install toolkit.
If I create a new project in VS2013 then toolkit showing in tool box. But in the upgraded project from vs2010 the toolbox does not show toolkit.

Reopened Unassigned: Calendar Change Next Year [27900]

$
0
0
The year does not change when you click on the calendar header /months/years and select the __next__ year.
Example: in 2015 clicking on 2016 returns 2015.
Note: Issue Occus in ASP.NET AJAX Control Toolkit Demos v15.1.2

Edited Unassigned: Calendar Change Next Year [27900]

$
0
0
The year does not change when you click on the calendar header /months/years and select the __next__ year.
Example: in 2015 clicking on 2016 returns 2015.
Note: Issue Occus in ASP.NET AJAX Control Toolkit Demos v15.1.2

Commented Unassigned: Calendar Change Next Year [27900]

$
0
0
The year does not change when you click on the calendar header /months/years and select the __next__ year.
Example: in 2015 clicking on 2016 returns 2015.
Note: Issue Occus in ASP.NET AJAX Control Toolkit Demos v15.1.2

Comments: "Yes, but the issue is that after the date is fully defined, the year is not changed! The issue is 100% reproducible at the http://ajaxcontroltoolkit.devexpress.com/Calendar/Calendar.aspx with firefox with __fr__ culture. Thank you in advance.

Commented Unassigned: Calendar Change Next Year [27900]

$
0
0
The year does not change when you click on the calendar header /months/years and select the __next__ year.
Example: in 2015 clicking on 2016 returns 2015.
Note: Issue Occus in ASP.NET AJAX Control Toolkit Demos v15.1.2

Comments: Please view the new screenshot

Commented Issue: open vs2010 project to upgrade to vs2013 not toolkit not showing in toolbox [27901]

$
0
0
After I install toolkit.
If I create a new project in VS2013 then toolkit showing in tool box. But in the upgraded project from vs2010 the toolbox does not show toolkit.
Comments: premium version. I tried another project upgraded earlier from 2010 to 2013 and open the project and toolkit does show up. Now I get around this by creating a new asp.net project and add Web pages back and it does show up.

Commented Issue: ModalPopupExtender gets hidden from any button [27902]

$
0
0
Any button inside a ModalPopupExtender hides the modal. It doesn't matter if the button is set as CancelControlID or OkControlID.

In the following example, both btnFoo and btnBar closes the modal.

```
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:Button ID="btnOpen" runat="server" Text="Open" />
<cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server"
CancelControlID="btnModalCancel" OkControlID="btnModalOkay" TargetControlID="btnOpen"
PopupControlID="Panel1">
</cc1:ModalPopupExtender>

<asp:Panel ID="Panel1" Style="display: none" runat="server">
<asp:Button ID="btnModalCancel" runat="server" Text="Cancel" />
<asp:Button ID="btnModalOkayl" runat="server" Text="OK" />
<asp:Button ID="btnFoo" runat="server" Text="Foo" />
<asp:Button ID="btnBar" runat="server" Text="Bar" />
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>



```
Comments: Hi Fadil, The `OnClientClick="return false;"` disables the server side click event. For example this button: ``` <asp:Button ID="btnFoo" runat="server" Text="Foo" OnClick="btnFoo_Click" OnClientClick="return false;" /> ``` `btnFoo_Click()` is never run in the code behind

Commented Issue: ModalPopupExtender gets hidden from any button [27902]

$
0
0
Any button inside a ModalPopupExtender hides the modal. It doesn't matter if the button is set as CancelControlID or OkControlID.

In the following example, both btnFoo and btnBar closes the modal.

```
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:Button ID="btnOpen" runat="server" Text="Open" />
<cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server"
CancelControlID="btnModalCancel" OkControlID="btnModalOkay" TargetControlID="btnOpen"
PopupControlID="Panel1">
</cc1:ModalPopupExtender>

<asp:Panel ID="Panel1" Style="display: none" runat="server">
<asp:Button ID="btnModalCancel" runat="server" Text="Cancel" />
<asp:Button ID="btnModalOkayl" runat="server" Text="OK" />
<asp:Button ID="btnFoo" runat="server" Text="Foo" />
<asp:Button ID="btnBar" runat="server" Text="Bar" />
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>



```
Comments: Ok, try this: ``` <asp:Button ID="btnFoo" runat="server" Text="Foo" OnClick="btnBar_Click" /> ```   And here is code behind: ``` protected void btnBar_Click(object sender, EventArgs e) { // some code ModalPopupExtender1.Show(); } ``` In this case, the modal popup will still be shown after a postback.   Best regards,

Commented Issue: ModalPopupExtender gets hidden from any button [27902]

$
0
0
Any button inside a ModalPopupExtender hides the modal. It doesn't matter if the button is set as CancelControlID or OkControlID.

In the following example, both btnFoo and btnBar closes the modal.

```
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:Button ID="btnOpen" runat="server" Text="Open" />
<cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server"
CancelControlID="btnModalCancel" OkControlID="btnModalOkay" TargetControlID="btnOpen"
PopupControlID="Panel1">
</cc1:ModalPopupExtender>

<asp:Panel ID="Panel1" Style="display: none" runat="server">
<asp:Button ID="btnModalCancel" runat="server" Text="Cancel" />
<asp:Button ID="btnModalOkayl" runat="server" Text="OK" />
<asp:Button ID="btnFoo" runat="server" Text="Foo" />
<asp:Button ID="btnBar" runat="server" Text="Bar" />
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>



```
Comments: That workaround worked just fine. Thanks! :) Any ETA on when this will be fixed? Cheers GT

Commented 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).
Comments: HI all; I have the same problem but once I return to samples and go with basics I found that if you add the following tags to the tabcontainer and tabpanel the problem will be solved The "OnDemand" and "OnDemandMode" do the trick, I'm talking about IE 8 <ajaxToolkit:TabContainer runat="server" ID="Tabs" ActiveTabIndex="1" AutoPostBack="false" OnDemand="true" Width="100%"> <ajaxToolkit:TabPanel runat="server" ID="BuinessFiles" HeaderText="<%$ Resources:UIElements, lblBusinessFiles %>" Enabled="true" OnDemandMode="Once" </ContentTemplate> </ajaxToolkit:TabPanel> Please give me your feed back if this help or otherwise

Commented Issue: BalloonPopupExtender [27112]

$
0
0
BalloonPopupExtender is visible by default at first time of page load when it is inside of a tabpanel of tabcontainer.
This problem is occuring only if i place control inside tabpanel of tabcontainer..

My Code is below

<cc1:TabContainer ID="tabDemograph" runat="server">
<cc1:TabPanel ID="tabHotels" runat="server" HeaderText="Hotels" >
<ContentTemplate>

<asp:ListBox ID="lbCity" runat="server" SelectionMode="Multiple" Height="100px"
Width="141px"></asp:ListBox>
<cc1:BalloonPopupExtender ID="lbCity_BalloonPopupExtender" runat="server"
BalloonPopupControlID="Panel1" CustomCssUrl="" DynamicServicePath=""
Enabled="True" ExtenderControlID="" TargetControlID="lbCity">
</cc1:BalloonPopupExtender>
<asp:Panel ID="Panel1" runat="server">
welcome
</asp:Panel>
</ContentTemplate>
</cc1:TabPanel>
</cc1:TabContainer>
Comments: The issue is fixed and the fix will be included in one of our future releases.

Edited Issue: BalloonPopupExtender [27112]

$
0
0
BalloonPopupExtender is visible by default at first time of page load when it is inside of a tabpanel of tabcontainer.
This problem is occuring only if i place control inside tabpanel of tabcontainer..

My Code is below

<cc1:TabContainer ID="tabDemograph" runat="server">
<cc1:TabPanel ID="tabHotels" runat="server" HeaderText="Hotels" >
<ContentTemplate>

<asp:ListBox ID="lbCity" runat="server" SelectionMode="Multiple" Height="100px"
Width="141px"></asp:ListBox>
<cc1:BalloonPopupExtender ID="lbCity_BalloonPopupExtender" runat="server"
BalloonPopupControlID="Panel1" CustomCssUrl="" DynamicServicePath=""
Enabled="True" ExtenderControlID="" TargetControlID="lbCity">
</cc1:BalloonPopupExtender>
<asp:Panel ID="Panel1" runat="server">
welcome
</asp:Panel>
</ContentTemplate>
</cc1:TabPanel>
</cc1:TabContainer>

Commented Issue: ModalPopupExtender gets hidden from any button [27902]

$
0
0
Any button inside a ModalPopupExtender hides the modal. It doesn't matter if the button is set as CancelControlID or OkControlID.

In the following example, both btnFoo and btnBar closes the modal.

```
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:Button ID="btnOpen" runat="server" Text="Open" />
<cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server"
CancelControlID="btnModalCancel" OkControlID="btnModalOkay" TargetControlID="btnOpen"
PopupControlID="Panel1">
</cc1:ModalPopupExtender>

<asp:Panel ID="Panel1" Style="display: none" runat="server">
<asp:Button ID="btnModalCancel" runat="server" Text="Cancel" />
<asp:Button ID="btnModalOkayl" runat="server" Text="OK" />
<asp:Button ID="btnFoo" runat="server" Text="Foo" />
<asp:Button ID="btnBar" runat="server" Text="Bar" />
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>



```
Comments: Hi, We are working on this problem and will do our best to resolve it as soon as possible. Unfortunately, I can't tell you a precise date now. We will inform you once we find a suitable solution. Please wait for a while. Best regards, Fadil

Commented Issue: MultiHandleSlider doesn't work with Master Pages [20070]

$
0
0
I have a simple multi-handle slider that works fine on a web form page. If I try and use the same on a bare-bones Master Page, it only displays one handle, which isn't draggable, and the whole rail has the default blue background colour. Has anyone else experienced this issue?
Comments: Hi, We tested the MultiHandleSlider extender with the newest version of the AJAX Control Toolkit (v15.1.2) and it seems that the error you described is no longer reproducible. You might have experienced it because you forgot to add the "BehaviorID" attribute to your MultiHandleSlider extender. With this attributed added, everything works fine. I have attached a simple sample website for you. Best regards, Fadil

Closed Unassigned: AjaxControlToolKit undefined error [27661]

$
0
0
I have updated the AjaxControlToolkit from 4.1.60919 to 4.1.7.1213 version. After upgradign I am getting "AjaxControlToolKit" undefined error at runtime.

I had the below issue with 4.1.60919

If the control id has a special character, get$ method is failing to get the handle of it where as document.getElementid was successfully able to read that control. Is this issue was addressed in new release ?

Thanks in Advance,
Srikanth

Closed Issue: AsyncFileUpload1.Enabled = true not functioning well [27029]

$
0
0
I have few controls in a update panel and I had set all the controls enabled=false when Page_Load. I have one button to set all the controls enabled=true when onclick. There is a problem with one of the control which is AsyncFileUpload. First click all the controls was enabled except AsyncFileUpload. AsyncFileUpload only enabled if I click the same button twice. This is happen consistently.

Edited Issue: AjaxFileUpload remove button IE10 bug [27379]

$
0
0
In IE10 (on both Windows 7 and Windows 8), if you select a file to be uploaded, then remove it, you are then unable to select a new file. The file selection dialog opens when the "Select File" button is clicked, and you can select a file, but the file information is not displayed, and clicking the "Upload" button does nothing. Something is obviously not quite getting cleared out when removing the previously selected file.

This can all be seen using the sample site: http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/AjaxFileUpload/AjaxFileUpload.aspx

Viewing all 4356 articles
Browse latest View live


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