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

Created Unassigned: Calendar animating incorrect when size is changed [27905]

$
0
0
The Calendar animation is incorrect when the width or the height of the calendar body is changed via css class. I have made some changes to the __Calendar.js__ file to fix the issue. I dont know if it the best fixe but it seams to work correctly.

__Code change summay__

Removed Hard-Coded Variable
this._width = 170;
this._height = 139;

Replace Variable By Corresponding

newElement.offsetWidth
newElement.offsetHeight

oldElement.offsetWidth
oldElement.offsetHeight

Exemple:
$common.setLocation(newElement, { x: 0, y: newElement.offsetWidth });
$common.setLocation(newElement, { x: 0, y: newElement.offsetHeight });

Include modified javascript. Hope this will help.


Commented Unassigned: GIT URL for source is broken [27903]

$
0
0
The URL given for cloning the repo through GIT returns a 404: https://git01.codeplex.com/ajaxcontroltoolkit
Comments: Thanks, I was ultimately found the issue to be something with my work network that was preventing clone operations from completing. I had to run the clone from an outside machine.

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: Unfortunately, we cannot yet reproduce this error. Would you clarify the difference between our date format and yours? Now they look identical in the screenshots.

Closed Unassigned: The Controls collection cannot be modified because the control contains code blocks (i.e. ). WITH A TWIST [27709]

$
0
0
ok so I get the
The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>). error when trying to use the calendar extender. see below. Now on the page I have inherited some client side java where it accesses the Session.Timeout env var

so how do I get rid of the var sessionTimeout = "<%= Session.Timeout %>";

and still have it work??? right now I just have var sessionTimeout = 60;

<script language="javascript" type="text/javascript">
var sessionTimeout = "<%= Session.Timeout %>";
var sessionTimeoutWarning = parseInt(sessionTimeout) - 5;

var sTimeoutWarning = parseInt(sessionTimeoutWarning) * 60 * 1000;
var sTimeout = parseInt(sessionTimeout) * 60 * 1000;
setTimeout('SessionWarning()', sTimeoutWarning);
setTimeout('SessionTimeout()', sTimeout);

function SessionWarning() {
var current_time = new Date();
var message = "Your session will expire in another " +
(parseInt(sessionTimeout) - sessionTimeoutWarning) +
" mins! Please Save the data before the session expires. " + current_time.toTimeString();
alert(message);
}

function SessionTimeout() {
var message = "Your session has expired! Logon again!";
window.location = "../../../Eureka/Login.aspx";
alert(message);
}
</script>



<cc1:ExtendedTextBox CssClass="thinBorder" TabIndex="41" UseClientRegex="true"
MatchRegEx="^(((((0?[1-9]{1})|([1][012]))/(([012]?[1-9]{1})|([3][01])|[12][0]|[9]{2})|([9]{2}/[9]{2}))/((([1]{1}[089]{1})|([2]{1}[0-9]{1}))[0-9]{1}[0-9]{1}))|([9]{2}/[9]{2}/[9]{4})|([0]{2}/[0]{2}/[0]{4})){1}$"
RegexDescription="Date Required: mm/dd/yyyy" ID="txtDateOfAdmission" runat="server"
MaxLength="10" Width="153px" />


<cc2:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="txtDateOfAdmission">
</cc2:CalendarExtender>

Closed Unassigned: Internet Explorer 10 doesn't all users to enter dates using the keyboard rather than the popup calendar. [27424]

$
0
0
I have a masked input textbox which accepts date either entered through keyboard or selected through a datepicker control. It works fine with Internet Explorer 9 and former but fails in Internet Explorer 10. If date from datepicker control is selected, the textbox displays it properly. The textbox doesn't allow to enter through keyboard any thing than digit '8'. Please suggest.

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: Maybe it has to do with the fact that when you click the __next__ year, the header label does not changes immediately. As opposed to when you click any other year the header label displays the clicked year. You can see this behavior in the video that you have uploaded. I have the AjaxControlToolkit source code installed on my computer and the same issue occurs... (Maybe you could send me some code modification and I could test locally to see if it fixes the issue). Additional note: I Have tested with other computer in the company and all have the same behavior. I are changes my setting and the issue remains. Good luck and thank you again.

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: Would you please share a video where you select both the next year and a different one? I have no field changes until I fully define the date regardless the year I have selected.

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: The field only changes after the date is fully defined. But the Header of the Calendar where the year is displayed changes right after the year is clicked. Thats the behavior for every year except the when clicking the next year. (This behavior could be the issue source on my computer) Added Screen shot to illustrate. Note: I can had a video i you what to but currently i do not have any video software installed.

Commented Issue: HtmlEditorExtender Causing Javascript Error on IE 11 [27547]

$
0
0
This happens on IE 11 only so far (OS=windows 8.1). When you make the textbox visible to false, it causes javascript error. Please fix this bug. (sample attached).
Comments: I have installed AjaxControlToolkit 15.1.2.0 however this problem still occurs so it does not look like it is resolved. When running HTMLEditorExtender in IE11 it crashes with 0x800a139e - JavaScript runtime error: IndexSizeError on line: sel.collapse(this._editableDiv.firstChild, char); It only works if you use <meta http-equiv="X-UA-Compatible" content="IE=10" />

Closed 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>



```

Closed Issue: HtmlEditor Bugs [27897]

$
0
0
I recently upgraded from version 7 to version 15.1.2 (NuGet) of the AjaxControlToolkit. I've noted several issues with the HtmlEditor: (all issues tested on the latest stable Chrome release.)

1) Required CSS references aren't present when inheriting the control into a custom class, e.g., public class MyEditor : AjaxControlToolkit.HtmlEditor.Editor { ... } is missing most styling when used on a page. Changing the class to inherit Control and adding an Editor to this.Controls programatically works as expected.

2) The "Insert Link" popup is missing all text, and doesn't actually insert a link into the content window after use.

3) The paste button throws a JavaScript error: "Uncaught Sys.ArgumentUndefinedException: Sys.ArgumentUndefinedException: Value cannot be undefined.
Parameter name: format" (paste from Word might have a similar issue, I'm not entirely sure.)

All other default toolbar buttons seem to work correctly.

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, your computer behaves differently. It would be helpful if you record a video showing your actions. You can use free screen capture software - [Microsoft Expression Encoder 4](https://www.microsoft.com/en-us/download/details.aspx?id=18974).

Closed 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?

Created Unassigned: DropDownExtender: Property "HighlightBackColor" only works with basic colors [27906]

$
0
0
Hello,

I want to use the DropDownExtender control and define the HighlightBackColor. If I set HighlightBackColor to "blue" or the Hex equivalent it works. If I set the HighlightBackColor to "#0065AD" it works not. What can I do?

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: Hope this helps

Created Unassigned: Fileupload shows completed then "(error)" [27907]

$
0
0
So I am very very new to programming and asp.net. I did alot of searching and gotten this far and have been stuck for 2 days now.

I am using VS 2013 ultimate. Locally I can run the project and uploads the file. That works fine.
Then I upload the files to the web server and all looks good.
I upload a jpg file and see the progress bar goes to 100% then it would error out. The file was not in the "Folder".

I need help.

Commented Unassigned: Fileupload shows completed then "(error)" [27907]

$
0
0
So I am very very new to programming and asp.net. I did alot of searching and gotten this far and have been stuck for 2 days now.

I am using VS 2013 ultimate. Locally I can run the project and uploads the file. That works fine.
Then I upload the files to the web server and all looks good.
I upload a jpg file and see the progress bar goes to 100% then it would error out. The file was not in the "Folder".

I need help.
Comments: Would you provide a complete sample project?

Commented Unassigned: Fileupload shows completed then "(error)" [27907]

$
0
0
So I am very very new to programming and asp.net. I did alot of searching and gotten this far and have been stuck for 2 days now.

I am using VS 2013 ultimate. Locally I can run the project and uploads the file. That works fine.
Then I upload the files to the web server and all looks good.
I upload a jpg file and see the progress bar goes to 100% then it would error out. The file was not in the "Folder".

I need help.
Comments: Hey Mikhail, I found out what the issue is. The AjaxFileUpload save the file to the Temp folder of the server before copying to the destination folder with the SaveAs method. My hosting server is a shared hosting service with many clients, so permission to the temp folder is not allowed. Its a bummer, but I do like the controller. DP

Closed Unassigned: Error trying to add extender [27904]

$
0
0
While trying to add extender, get this error:

Unable to reference extender assembly AjaxControlToolkit, Version=15.1.2.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e.

I looked at the dll in the bin directory, and it is the correct version (15.1.2.0).
.net version is 4.5.2.

Help is most appreciated - this is a show stopper!

Saavik

Commented Unassigned: AjaxFileUpload's problem (Version 7.0429) [27418]

$
0
0
Version 7.0429 AJAX Control Toolkit

AjaxFileUpload Control

protected void AjaxFileUpload1_OnUploadComplete(object sender, AjaxFileUploadEventArgs file)
{
AjaxFileUpload1.SaveAs(MapPath("~/App_Data/" + file.FileName));
}

The Uploaded File : *.zip, *.txt ==> file can open
The Uploaded File : *.doc, *.xls ..etc ==> file can't open, display "file is damaged",why?
Comments: Please upgrade to the latest version of AJAX Control Toolkit v15.1. If the problem remains, feel free to post a new issue.
Viewing all 4356 articles
Browse latest View live


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