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

Commented Issue: Script Fetal error in debug mode Tabs.js [27939]

$
0
0
v15.1.3
Script fetal error in debug mode, Tabs.js line 361, column 5, addtional comma ',' in TabPanel, _enabledHeaderEventHandlers definition function.
Comments: Hi! Thank you for your report. We have fixed this issue and it will be available in the next AJAX Control Toolkit release. Best regards, Fadil

Commented Unassigned: htmleditor extender image upload postback issue [27687]

$
0
0
HTML EditorExtender Control Postback thrice when image is upload in it??? Please help can number of postbacks can be reduced???
Comments: Hi, Would you provide a sample project to us for investigating this issue? Best regards, Fadil

Commented Unassigned: ScriptResources.axd slowing down my site [27662]

$
0
0
I am using AjaxControlToolkit version 4.0 in my asp.net web application.

We are using only TabContainer, Date , Time and ModulePopupExtender controls in our project.

Tab controls are used on all pages. My observation is when I run my site on IE7 it slows down very much. When I viewed the source, I saw more than 100 ScriptResource.axd tags are getting generated in html.

When I read about it I tried using ScriptMode=Release. When I use this, it loads the pages faster by my update panel fails to update on given interval. I get Scripts are not loaded exception.


Please let me know how can I solve this issue and speed up my site on IE7. This has become very critical issue for me.


Comments: Hi, I recommend you upgrade to the latest version of the AJAX Control Toolkit library. With this new version, you can use ASP.NET Web Optimization framework for bundling and minification. Please check out [this page](https://ajaxcontroltoolkit.codeplex.com/wikipage?title=What%E2%80%99s%20New%20in%20v15.1) for more information.   Feel free to contact me if you have further questions.s. Best regards, Fadil

Commented Unassigned: Style Bug [CSS] IE8 HtmlEditorExtender ColorPicker not hidding input[type=button] value text [27563]

$
0
0
I'm using the version of ACT "3.5.7.1005", and I'm having some issues with the color picker from HtmlEditorExtender component (forecolor/backcolor button) in IE8, __to fix it__, was necessary to include the css below

```
.ajax__html_editor_extender_ForeColor, .ajax__html_editor_extender_BackColor
{
line-height: 0;
}
```
In the Attachment, there is a picture simulating the issue and it's solution.

If possible, include this CSS fix to be in the the next release of ACT.
Comments: Hi, Thank you for sharing your experience. Unfortunately, we can't reproduce the issue you described with the latest version of the AJAX Control Toolkit (we have tested HtmlEditor extender with all modern browsers including IE8). It seems that this problem is no longer reproducible. Best regards, Fadil

Commented Unassigned: HtmlEditorExtender javascript/ attribute bug [27537]

$
0
0
If the textbox with an HtmlEditorExtender does not have a width set then a Javascript error occurs.
Comments: Hi, Unfortunately, we can't reproduce this issue. Would you provide a sample project that illustrates the described problem? Best regards, Fadil

Commented Unassigned: TabContainer CssClass property ignored [27530]

$
0
0
In CreateControlStyle and AddAttributesToRender, CssClass is hardcoded to "ajax__tab_xp". Suggest replacing with:


protected override Style CreateControlStyle()
{
TabContainerStyle style = new TabContainerStyle(ViewState);
style.CssClass = CssClass; // was "ajax__tab_xp"
return style;
}
//...
protected override void AddAttributesToRender(HtmlTextWriter writer)
{
Style.Remove(HtmlTextWriterStyle.Visibility);
if (!ControlStyleCreated)
writer.AddAttribute(HtmlTextWriterAttribute.Class, CssClass); // was "ajax__tab_xp"
if (_useVerticalStripPlacement)
writer.AddStyleAttribute(HtmlTextWriterStyle.Display, "block");
if (!Height.IsEmpty && Height.Type == UnitType.Percentage)
writer.AddStyleAttribute(HtmlTextWriterStyle.Height, Height.ToString());

base.AddAttributesToRender(writer);
writer.AddStyleAttribute(HtmlTextWriterStyle.Visibility, "hidden");
}
Comments: Hi, Thank you for sharing your experience and participation in the development of the AJAX Control Toolkit library. We have fixed this issue and this fix will be available in the next release of AJAX Control Toolkit. Best regards, Fadil

Edited Issue: TabContainer CssClass property ignored [27530]

$
0
0
In CreateControlStyle and AddAttributesToRender, CssClass is hardcoded to "ajax__tab_xp". Suggest replacing with:


protected override Style CreateControlStyle()
{
TabContainerStyle style = new TabContainerStyle(ViewState);
style.CssClass = CssClass; // was "ajax__tab_xp"
return style;
}
//...
protected override void AddAttributesToRender(HtmlTextWriter writer)
{
Style.Remove(HtmlTextWriterStyle.Visibility);
if (!ControlStyleCreated)
writer.AddAttribute(HtmlTextWriterAttribute.Class, CssClass); // was "ajax__tab_xp"
if (_useVerticalStripPlacement)
writer.AddStyleAttribute(HtmlTextWriterStyle.Display, "block");
if (!Height.IsEmpty && Height.Type == UnitType.Percentage)
writer.AddStyleAttribute(HtmlTextWriterStyle.Height, Height.ToString());

base.AddAttributesToRender(writer);
writer.AddStyleAttribute(HtmlTextWriterStyle.Visibility, "hidden");
}

Edited Issue: TabContainer CssClass property ignored [27530]

$
0
0
In CreateControlStyle and AddAttributesToRender, CssClass is hardcoded to "ajax__tab_xp". Suggest replacing with:


protected override Style CreateControlStyle()
{
TabContainerStyle style = new TabContainerStyle(ViewState);
style.CssClass = CssClass; // was "ajax__tab_xp"
return style;
}
//...
protected override void AddAttributesToRender(HtmlTextWriter writer)
{
Style.Remove(HtmlTextWriterStyle.Visibility);
if (!ControlStyleCreated)
writer.AddAttribute(HtmlTextWriterAttribute.Class, CssClass); // was "ajax__tab_xp"
if (_useVerticalStripPlacement)
writer.AddStyleAttribute(HtmlTextWriterStyle.Display, "block");
if (!Height.IsEmpty && Height.Type == UnitType.Percentage)
writer.AddStyleAttribute(HtmlTextWriterStyle.Height, Height.ToString());

base.AddAttributesToRender(writer);
writer.AddStyleAttribute(HtmlTextWriterStyle.Visibility, "hidden");
}

Edited Issue: Script Fetal error in debug mode Tabs.js [27939]

$
0
0
v15.1.3
Script fetal error in debug mode, Tabs.js line 361, column 5, addtional comma ',' in TabPanel, _enabledHeaderEventHandlers definition function.

Edited Feature: FileUpload Control Queue Container Not Clearing [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

Edited Issue: htmleditor extender image upload postback issue [27687]

$
0
0
HTML EditorExtender Control Postback thrice when image is upload in it??? Please help can number of postbacks can be reduced???

Edited Issue: ScriptResources.axd slowing down my site [27662]

$
0
0
I am using AjaxControlToolkit version 4.0 in my asp.net web application.

We are using only TabContainer, Date , Time and ModulePopupExtender controls in our project.

Tab controls are used on all pages. My observation is when I run my site on IE7 it slows down very much. When I viewed the source, I saw more than 100 ScriptResource.axd tags are getting generated in html.

When I read about it I tried using ScriptMode=Release. When I use this, it loads the pages faster by my update panel fails to update on given interval. I get Scripts are not loaded exception.


Please let me know how can I solve this issue and speed up my site on IE7. This has become very critical issue for me.


Edited Issue: Style Bug [CSS] IE8 HtmlEditorExtender ColorPicker not hidding input[type=button] value text [27563]

$
0
0
I'm using the version of ACT "3.5.7.1005", and I'm having some issues with the color picker from HtmlEditorExtender component (forecolor/backcolor button) in IE8, __to fix it__, was necessary to include the css below

```
.ajax__html_editor_extender_ForeColor, .ajax__html_editor_extender_BackColor
{
line-height: 0;
}
```
In the Attachment, there is a picture simulating the issue and it's solution.

If possible, include this CSS fix to be in the the next release of ACT.

Edited Issue: HtmlEditorExtender javascript/ attribute bug [27537]

$
0
0
If the textbox with an HtmlEditorExtender does not have a width set then a Javascript error occurs.

Commented Feature: FileUpload Control Queue Container Not Clearing [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: Hi, Thank you for sharing your experience. We have reviewed this problem and decided to implement a new property called ClearFileListAfterUpload. It will clear a file queue container after an upload on being set to true. This feature will be available with the new release of the AJAX Control Toolkit. Best regards, Fadil

Edited Feature: FileUpload Control Queue Container Not Clearing [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

Edited Issue: LineChart control script error (can't find parent div) [27364]

$
0
0
LineChart.pre.js contains the following line in the initialization code:
```
id = id.replace("_ctl00", "");
```

I am not sure why its there, but it causes problems any time the chart control is deep inside a control hierarchy with a name like "ctl00_ctl00_Main_Main_LineChart1".

Incidentally, the LineChart control also doesn't work (similar javascript error) if the ClientIDMode is set to Static.

Closed Issue: SliderExtender creates multiple tags in body when enclosed in an updatepanel [27270]

$
0
0
When a SliderExtender is initialized it creates a <DIV> tag within the body of the HTML document using this function (in sliderBehavior.js:

_initializeDragHandle : function() {
var dh = this._dragHandle = document.createElement('DIV');

dh.style.position = 'absolute';
dh.style.width = '1px';
dh.style.height = '1px';
dh.style.overflow = 'hidden';
dh.style.zIndex = '999';
dh.style.background = 'none';

document.body.appendChild(this._dragHandle);
},

If the slider is enclosed within an UpdatePanel control the slider is re-initialized on every async callback which creates another <DIV> in the body.

Please consider giving the DIV an ID so you can check for and re-use it should it already exist after returning from an async callback. Alternately perhaps it could be added to the TextBox's parent update panel DIV (should one exist).

Thanks!
Comments: Thank you for your suggestion! We will keep it in mind during our future work.

Commented Issue: OutOfMemoryException in ExtenderControlBase.Dispose [27343]

$
0
0
I am making application in asp.net framework 4.0 with latest ajaxtoolkit, and sql server 2005 for database, but I am getting error as

Exception of type 'System.OutOfMemoryException' was thrown

i had debug it using breakpoints, so i got that in Ajax toolkit line no. 139 of function

ajaxcontroltoolkit.dll!AjaxControlToolkit.ExtenderControlBase.Dispose() Line 139

how do i resolve it.

I found that this error is occurring because of all the extenders which i use on the page
Comments: Hi! Unfortunately, we can't reproduce this issue. Would you provide a sample project to us for further investigating? Best regards, Fadil

Edited Issue: OutOfMemoryException in ExtenderControlBase.Dispose [27343]

$
0
0
I am making application in asp.net framework 4.0 with latest ajaxtoolkit, and sql server 2005 for database, but I am getting error as

Exception of type 'System.OutOfMemoryException' was thrown

i had debug it using breakpoints, so i got that in Ajax toolkit line no. 139 of function

ajaxcontroltoolkit.dll!AjaxControlToolkit.ExtenderControlBase.Dispose() Line 139

how do i resolve it.

I found that this error is occurring because of all the extenders which i use on the page
Viewing all 4356 articles
Browse latest View live


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