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

Edited Issue: NumericUpDownExtender IE error [13114]

$
0
0
<ajaxToolkit:NumericUpDownExtender ID="NumericUpDownExtender1"
runat="server"
TargetControlID="Qty"
Width="80"
TargetButtonDownID="ImageButton1"
TargetButtonUpID="ImageButton2"
RefValues=""
ServiceDownMethod=""
ServiceUpMethod=""
Minimum = "50"
Step = "25"/>

this generates an error in IE but work fine in Firefox
IE error: "The number of fractional digits is out of range"

i would like to restrict user from selecting less than 50 and go up by 25 count
logically this should work find and it does on Firefox, why IE has a problem with it go figure!

if i set the textbox text to 50 and Minimum = "0" user can still can change the value to less than 50 and go up by 25 just find on both IE and Firefox.

Commented Issue: NumericUpDownExtender IE error [13114]

$
0
0
<ajaxToolkit:NumericUpDownExtender ID="NumericUpDownExtender1"
runat="server"
TargetControlID="Qty"
Width="80"
TargetButtonDownID="ImageButton1"
TargetButtonUpID="ImageButton2"
RefValues=""
ServiceDownMethod=""
ServiceUpMethod=""
Minimum = "50"
Step = "25"/>

this generates an error in IE but work fine in Firefox
IE error: "The number of fractional digits is out of range"

i would like to restrict user from selecting less than 50 and go up by 25 count
logically this should work find and it does on Firefox, why IE has a problem with it go figure!

if i set the textbox text to 50 and Minimum = "0" user can still can change the value to less than 50 and go up by 25 just find on both IE and Firefox.
Comments: The title was edited as this issue is included in What's new list for the v15.1.4 release.

Edited Issue: AjaxFileUpload remove button bug in IE10 [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

Commented Issue: AjaxFileUpload remove button bug in IE10 [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

Comments: The title was edited as this issue is included in What's new list for the v15.1.4 release.

Edited Issue: BalloonPopupExtender visibility problem if it is placed in TabPanel or TabContainer [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: BalloonPopupExtender visibility problem if it is placed in TabPanel or TabContainer [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 title was edited as this issue is included in What's new list for the v15.1.4 release.

Edited Unassigned: MaskedEditExtender breaks CalendarExtender [27926]

$
0
0
When I upgraded from 15.1.2 to 15.1.3 the CalendarExtender stopped working and it appears the MaskedEditExtender is causing it. Tested by disabling the MaskedEditExtender and the CalendarExtender works again. I rolled back to 15.1.2 until resolved.

While on the subject: If the CalendarExtender had a couple of basic parameters like InputMask, InvalidValueMessage I could eliminate both the MaskedEditExtender and the MaskedEditValidator.


<asp:TextBox ID="txtInvoiceDate" runat="server" Text="" Width="150px" MaxLength="10" />
<ajax:MaskedEditExtender ID="MaskedEditExtender1" runat="server" TargetControlID="txtInvoiceDate" MaskType="Date" Mask="99/99/9999" UserDateFormat="MonthDayYear" PromptCharacter="_" Enabled="true" />
<ajax:MaskedEditValidator ID="MaskedEditValidator1" runat="server" ControlToValidate="txtInvoiceDate" ControlExtender="MaskedEditExtender1" InvalidValueMessage="* Invalid Date" IsValidEmpty="False" ForeColor="Red" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" Text="* Required" ControlToValidate="txtInvoiceDate" ForeColor="Red" Display="Dynamic" SetFocusOnError="true" />
<ajax:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="txtInvoiceDate" Format="MM/dd/yyyy" Enabled="True" ValidateRequestMode="Enabled" />

Commented Unassigned: MaskedEditExtender breaks CalendarExtender [27926]

$
0
0
When I upgraded from 15.1.2 to 15.1.3 the CalendarExtender stopped working and it appears the MaskedEditExtender is causing it. Tested by disabling the MaskedEditExtender and the CalendarExtender works again. I rolled back to 15.1.2 until resolved.

While on the subject: If the CalendarExtender had a couple of basic parameters like InputMask, InvalidValueMessage I could eliminate both the MaskedEditExtender and the MaskedEditValidator.


<asp:TextBox ID="txtInvoiceDate" runat="server" Text="" Width="150px" MaxLength="10" />
<ajax:MaskedEditExtender ID="MaskedEditExtender1" runat="server" TargetControlID="txtInvoiceDate" MaskType="Date" Mask="99/99/9999" UserDateFormat="MonthDayYear" PromptCharacter="_" Enabled="true" />
<ajax:MaskedEditValidator ID="MaskedEditValidator1" runat="server" ControlToValidate="txtInvoiceDate" ControlExtender="MaskedEditExtender1" InvalidValueMessage="* Invalid Date" IsValidEmpty="False" ForeColor="Red" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" Text="* Required" ControlToValidate="txtInvoiceDate" ForeColor="Red" Display="Dynamic" SetFocusOnError="true" />
<ajax:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="txtInvoiceDate" Format="MM/dd/yyyy" Enabled="True" ValidateRequestMode="Enabled" />

Comments: The title was edited as this issue is included in What's new list for the v15.1.4 release.

Edited Unassigned: SliderExtender produces a JavaScript error [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?

Commented Unassigned: SliderExtender produces a JavaScript error [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: The title was edited as this issue is included in What's new list for the v15.1.4 release.

Edited Issue: Charts option to hide the plot value display [27390]

$
0
0
Hi there,

I'm newbee of ajax tool control and currently dealing to some of chart controls including Ajax charts (version 4.1.7.0123).
I just did some testing for my demo in this week and found that there are some issues at line and pie charts as following:
1) For Area / Line chart:
- Can you provide option that to hide the plot value display? when line chart display for many set, it look so urgly.
- The Y value is always required the same certain data set as provided X value set, for eg:
provided X = 1996,1997,1998
If Y value is only have 2 points such as (100,1996) , (200,1998), the line is not generate properly. In this case I have to find out the missing point and set a defaut value (0,1997)

2) For Pie chart:
- The chart can not render properly when the provided PieChartValues is only contained 1 or 2 items.

Notes: kindly check out the captured pics for details.

Hope to see a better charts in next version.

Regards,
Jack Vo

Commented Issue: Charts option to hide the plot value display [27390]

$
0
0
Hi there,

I'm newbee of ajax tool control and currently dealing to some of chart controls including Ajax charts (version 4.1.7.0123).
I just did some testing for my demo in this week and found that there are some issues at line and pie charts as following:
1) For Area / Line chart:
- Can you provide option that to hide the plot value display? when line chart display for many set, it look so urgly.
- The Y value is always required the same certain data set as provided X value set, for eg:
provided X = 1996,1997,1998
If Y value is only have 2 points such as (100,1996) , (200,1998), the line is not generate properly. In this case I have to find out the missing point and set a defaut value (0,1997)

2) For Pie chart:
- The chart can not render properly when the provided PieChartValues is only contained 1 or 2 items.

Notes: kindly check out the captured pics for details.

Hope to see a better charts in next version.

Regards,
Jack Vo

Comments: The title was edited as this issue is included in What's new list for the v15.1.4 release.

Edited Feature: FileUpload ClearFileListAfterUpload property [27734]

$
0
0
After all files are uploaded, the FileUpload Control's Queue Container does not clear. So if I go to upload a new file, it shows all the previously uploaded files again. Even if I close the browser and restart. I see no way to clear that queue. I found several suggested solutions all of which did not work for me including the last one in this forum:

http://forums.asp.net/t/1844768.aspx?Clear+File+list+from+Ajax+File+Upload

Commented Feature: FileUpload ClearFileListAfterUpload property [27734]

$
0
0
After all files are uploaded, the FileUpload Control's Queue Container does not clear. So if I go to upload a new file, it shows all the previously uploaded files again. Even if I close the browser and restart. I see no way to clear that queue. I found several suggested solutions all of which did not work for me including the last one in this forum:

http://forums.asp.net/t/1844768.aspx?Clear+File+list+from+Ajax+File+Upload

Comments: The title was edited as this issue is included in What's new list for the v15.1.4 release.

Edited Issue: AjaxFileUpload (postback?) issue running on IIS 7.5 when using HTML 5 based browsers [27327]

$
0
0
Details:
AjaxFileUploadControl

AjaxControlToolkit.dll version 4.1.60919 (September .Net 4 download)

Hosted on IIS 7.5 web server - has all current Microsoft patches (including the 2 HTML5 reliabilty updates)

Using <httpRuntime maxRequestLength="10240" /> in the web.config to limit upload size (in my case to 10MB).

Problem:
I am using the AJAXFileUpload control and everything is working as expected except for the way that HTML 5 API browsers (IE10, FireFox, Chrome, Opera, Safari) handle errors when the maximum file size specified in web.config is reached.

I want to limit the file upload size to 10MB and have updated the web.config accordingly. If I try to upload a file larger than 10MB using an older browser such as IE9 the upload control changes its upload status to Error (and turns red) and gives you the option to cancel the failed download which works great.

However, if you upload a file larger than 10MB in any HTML 5 based browser the upload control breaks. The status gets stuck on 100% uploaded, and then none of the buttons in the control work (cancel, remove) until the page is reloaded. See attached image.

The issue seems to be related to IIS 7.5 as it performs as expected across all browsers when running it using the ASP.NET development server included with Visual Studio 2010. However, once it's uploaded and running on IIS 7.5 the odd behavior can be seen.

It seems like it doesn't post back when the file size limit is hit in the HTML 5 browsers. It looks like a few of these similar HTML 5 postback issues were handled in the latest AjaxToolkit release, but I wonder if the AjaxFileUploadControl was overlooked.

To duplicate:
1.) Upload the AjaxFileUpload.aspx from the sample site (and included with the AjaxControlToolkit) to an IIS 7.5 server.

2.) Modify the web.config file to resrtict the max upload size. Copy and paste the following in the system.web section.

<httpRuntime maxRequestLength="10240" /> in the sytem.web section.

3.) Try to upload a file larger than the size specified above in any of the newer HTML5 API based browsers

Commented Issue: AjaxFileUpload (postback?) issue running on IIS 7.5 when using HTML 5 based browsers [27327]

$
0
0
Details:
AjaxFileUploadControl

AjaxControlToolkit.dll version 4.1.60919 (September .Net 4 download)

Hosted on IIS 7.5 web server - has all current Microsoft patches (including the 2 HTML5 reliabilty updates)

Using <httpRuntime maxRequestLength="10240" /> in the web.config to limit upload size (in my case to 10MB).

Problem:
I am using the AJAXFileUpload control and everything is working as expected except for the way that HTML 5 API browsers (IE10, FireFox, Chrome, Opera, Safari) handle errors when the maximum file size specified in web.config is reached.

I want to limit the file upload size to 10MB and have updated the web.config accordingly. If I try to upload a file larger than 10MB using an older browser such as IE9 the upload control changes its upload status to Error (and turns red) and gives you the option to cancel the failed download which works great.

However, if you upload a file larger than 10MB in any HTML 5 based browser the upload control breaks. The status gets stuck on 100% uploaded, and then none of the buttons in the control work (cancel, remove) until the page is reloaded. See attached image.

The issue seems to be related to IIS 7.5 as it performs as expected across all browsers when running it using the ASP.NET development server included with Visual Studio 2010. However, once it's uploaded and running on IIS 7.5 the odd behavior can be seen.

It seems like it doesn't post back when the file size limit is hit in the HTML 5 browsers. It looks like a few of these similar HTML 5 postback issues were handled in the latest AjaxToolkit release, but I wonder if the AjaxFileUploadControl was overlooked.

To duplicate:
1.) Upload the AjaxFileUpload.aspx from the sample site (and included with the AjaxControlToolkit) to an IIS 7.5 server.

2.) Modify the web.config file to resrtict the max upload size. Copy and paste the following in the system.web section.

<httpRuntime maxRequestLength="10240" /> in the sytem.web section.

3.) Try to upload a file larger than the size specified above in any of the newer HTML5 API based browsers
Comments: The issue is fixed and the fix will be included in one of our future releases.

Edited Unassigned: AjaxFileUpload doesn't work when page contains a querystring [27962]

$
0
0
Unfortunately, it seems like an old issue has returned in the latest release. If your page uses a querystring, the ajaxfileupload control overwrites any pre-existing key/pairs and replaces them with its own for contextkey, done, guid on every postback. I need to pass the querystring value to the OnUploadComplete Event, but this is no longer possible.

Here are the old work items, both which have been closed previously:

http://ajaxcontroltoolkit.codeplex.com/workitem/27467

https://ajaxcontroltoolkit.codeplex.com/workitem/27149


Please fix.

Thanks!

Commented Unassigned: AjaxFileUpload doesn't work when page contains a querystring [27962]

$
0
0
Unfortunately, it seems like an old issue has returned in the latest release. If your page uses a querystring, the ajaxfileupload control overwrites any pre-existing key/pairs and replaces them with its own for contextkey, done, guid on every postback. I need to pass the querystring value to the OnUploadComplete Event, but this is no longer possible.

Here are the old work items, both which have been closed previously:

http://ajaxcontroltoolkit.codeplex.com/workitem/27467

https://ajaxcontroltoolkit.codeplex.com/workitem/27149


Please fix.

Thanks!
Comments: The issue is fixed and the fix will be included in one of our future releases.

Created Unassigned: AjaxFileUpload not working in subfolder [27963]

$
0
0
In my project I am trying to use AjaxFileUpload. My project has all of its webforms in subdirectories, so say a subfolder Student containing some web forms and a subfolder Messages containing web forms.

If I use AjaxFileUpload in one of the pages that is in these subdirectories, I get the following error:
Uncaught Sys.ArgumentException: Sys.ArgumentException: Cannot deserialize empty string.
Parameter name: data

Because of this error, the OnUploadComplete event is never called. If I however place the page in the root folder of my project, everything works fine, no errors, event gets hit.

In web.config I have changed the handler path, otherwise I got a 404, it now looks like this:
```
<handlers>
<add name="AjaxFileUploadHandler" verb="*"
path="/AjaxFileUploadHandler.axd"
type="AjaxControlToolkit.AjaxFileUploadHandler,
AjaxControlToolkit"/>
</handlers>
```
I tried the same with an empty page, containing nothing but a ScriptManager and the AjaxFileUpload, but it has the same problem. Is there a known work-around for this?

Commented 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
Comments: Would you please provide a markup with the MaskedEditExtender properties set?
Viewing all 4356 articles
Browse latest View live


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