Tagged Questions
13
votes
7answers
1k views
Microsoft's AJAX Toolkit vs. jQuery
Our team has been using Microsoft's AJAX Toolkit since the days of Atlas. In a bit of naivety we missed the jQuery/Prototype phenomenon until a month or two back. Until now, we have always ...
9
votes
5answers
5k views
How do I combine WebResource.axd and ScriptResource.axd files so as to result in less requests to my ASP.NET server?
On a site I'm working on, the pages are generating 45 external WebResource.axd and ScriptResource.axd files so the broswers have to request all 45 references. That's a lot of references so I'd like to ...
7
votes
4answers
4k views
ASP.NET modal popup, entirely from code behind?
What I am trying to do is create a bit of reusable code that can write a modal popup, either through javascript or using the ajaxcontrol toolkit all from the code behind.
The modal would be a sort of ...
6
votes
2answers
176 views
AjaxControlToolkit NoBotState is always InvalidBadResponse
I am trying to implement AjaxControlToolkit NoBot but I always get false from IsValid() method (the state value is always InvalidBadResponse). Am I missing something here?
ASCX code:
// buttons, ...
6
votes
2answers
212 views
Is it possible to set a mask for MaskedEditExtender for the date format MMM-yyyy that would work in any culture?
The problem I'm having, as the title says, is that I need to use the short month name format with the year for Dates being validated by a MaskedEditExtender from the AjaxControlToolkit. MMM-yyyy for a ...
6
votes
3answers
13k views
Asp.Net Ajax Toolkit AsyncFileUpload - “The file is attached is invalid” error
I'm trying to use the AsyncFileUpload control from the Asp.net Ajax Control Toolkit (Sept 30, 2009 stable build: 30930) . I've created a demo application and the control works fine. Files upload and ...
5
votes
3answers
414 views
html editor properties
I used the AjaxControlToolkit html editor on my page:
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit.HTMLEditor"
TagPrefix="cc1" %>
<cc1:Editor ID="txtjobdesc" ...
5
votes
1answer
3k views
combine scripts in asp.net ajax toolkit
We are using version 3.0.20229.0 of the asp.net ajaxControlTookKit (before .net 3.5 sp1). I was wondering if I can combine our custom javascript files into the ScriptResource.axd that the ...
4
votes
2answers
273 views
Javascript in update panel doesn't work after partial postback
<script type="text/javascript">
$(function () {
$('.datePicker').datetimepicker({ dateFormat: 'dd/mm/yy' });
});
</script>
</asp:Content>
...
4
votes
1answer
171 views
Events are not fired from nested Accordion control
Suppose we have Accordion control with several buttons placed in other Accordion control. Issue is in the fact that those button's events are not handled on server side. Example:
I have following ...
4
votes
2answers
438 views
weird Ajax ComboBox drop down list
I've got combobox inside some panel :
<ajaxToolkit:ComboBox
ID="YearList"
runat="server"
OnInit="YearList_Init1"
EnableTheming="false"
Width="45px"
...
4
votes
1answer
718 views
Update DataGrid inside AJAX accordion
I have an AJAX accordion from the ajax control toolkit on a page with a datagrid inside on of the panels. I have a custom itemtemplate for the one column to create a multiline textbox when I click ...
4
votes
3answers
2k views
AjaxControlToolkit MaskedEditExtender - custom mask appearance
I'm using a MaskedEditExtender to show users what format they should use to enter a date into a textbox. How do I change the mask to be dd/MM/yyyy instead of __/__/____?
4
votes
3answers
4k views
AsyncFileUpload Control
I am using the new AsyncFileUpload control from the latest AjaxControl ToolKit.
My query is regarding the OnClientUploadStarted event which is fired before the upload is started. Is there any way to ...
4
votes
3answers
7k views
ModalPopupExtender won't render in front of everything in IE7/IE8 Compatibility mode
I have a ModalPopupExtender from the AjaxControlToolkit that is working properly in Firefox, Chrome and IE8, but when I run it in IE8 Compatibility mode, it pops up behind the content of my page, ...
3
votes
1answer
51 views
Close AJAX Control Toolkit BallonPopupExtender on mouse out
Does someone know how to close Ballon Popup Extender from client side?
Everything is fine but since I set up BPE to display on mouse hover it is really impratical that it don't have any close or hide ...
3
votes
1answer
82 views
How to write jQuery to disable dropdown on selecting an item from radiobutton list
I have this code but it doesn't work with asp.net page which has a master page along with ajax control toolkit(I have included ToolScriptManager). The code is
<script type="text/javascript">
...
3
votes
1answer
46 views
some thoughts on ajaxcontrolkit and alternatives [closed]
On clicking ajaxcontroltoolkit tag, I noticed most of the questions are unanswered. It seems nobody cares about this toolkit or nobody uses it.
I was searching for a solution to famous character ...
3
votes
2answers
131 views
asp:TabContainer not styled after deployment, then just fixes itself?
I have an asp:TabContainer on a form and after the app is re-deployed to the server, the tabs aren't styled. If I take the Webresource.axd URL and try to load it in the browser, I get a redirect to a ...
3
votes
4answers
1k views
Get selected date of ajax calendar extender control
I have used Ajax Calendar extender control (from here) in my asp.net 3.5 application.
My Question: How can i get the selected date from the Ajax calendar extender control in code behind file?
Say ...
3
votes
1answer
338 views
Removing borders from AJAX toolkit tabs panel
I'm having a problem with the AjaxControlTollkit Tabs. I want to remove the borders of the tabs since I do not really need them (display reasons). Here is a simplified sample of my code:
<%@ Page ...
3
votes
1answer
233 views
ASP.NET MaskedEditExtender needs to show mm/dd/yyyy when user clicks on textbox
I am using the MaskedEditExtender control for a textbox field that contains Date of Birth. I want the mask to show "mm/dd/yyyy" when the user clicks on the textbox when it is empty. Right now it ...
3
votes
1answer
460 views
Ajax Tookit TabPanel Invisible Tag Bug
I have encountered a slightly bizarre bug while using the ajax control toolkit TabPanel. I have 4 tabs in row like so:
[Tab1][Tab2][Tab3][Tab4]
Now tab 2 should only appear in certain circumstances, ...
3
votes
4answers
1k views
lazy loading asp.net Ajax Control Toolkit accordion
I am using the asp.net Ajax Control Toolkit accordion (http://www.asp.net/ajaxlibrary/act_Accordion.ashx) and each accordion pane contains quite a lof information.
All that info is generated in the ...
3
votes
1answer
178 views
Populate image after postback problem
I have the following problem:
On button click I want to populate an image source and show an image inside a ModalPopupExtender.
In order to open the ModalPopupExtender I call __doPostBack that cause ...
3
votes
1answer
114 views
Ratingcontrol gives javascript:void(0)
After some minor difficulties with my basic test rating control not working because of the missing inline css stylesheet, I am trying to dynamically add a bunch of rating controls in a updatepanel ...
3
votes
2answers
769 views
Ajax reorder list not dragable
I have the same problem as Simon in this post.
He found out some sort of a solution, but it does not work for me. Please, could someone explain me what is going on in this answer or advice me ...
3
votes
2answers
1k views
How do I include a whole lot of Javascript files using a ToolkitScriptManager compositescript?
If you have too many javascript file includes with a compositescript in a script manager you get this error...
"The resource URL cannot be longer than 1024 characters. If using a ...
3
votes
3answers
306 views
Modelpopup extender in asp .net issue
I have successfully added controls to pop up, like many check boxes ... now on check box checked event I want to show another check boxes on same popup. how can I do that plz can any one help me?
3
votes
5answers
4k views
How to check if client script is already registered during a partial postback
Below is the code I've currently implemented.
if (!Page.ClientScript.IsStartupScriptRegistered(Page.GetType(), scriptKey))
{
ScriptManager scriptManager = ScriptManager.GetCurrent(page);
if ...
3
votes
2answers
2k views
in Cascading dropdown update in Ajax Control Toolkit
I am getting [MethodError 500] when I use cascading drop down. below is my code
<tr>
<td >
Select a Hoster:
</td>
<td>
<asp:DropDownList ID="ddlFeaturedHoster" ...
3
votes
1answer
1k views
DropDownList Value not changing with UpdatePanel and ModalPopupExtender
Greetings,
I have an asp.net webpage with an modalpopupextender inside of an updatepanel. When I click Ok on the popup, I can get the textbox values from the popup just fine, but the DropDownLists ...
3
votes
1answer
217 views
Can somebody explain the differences, status and future of the various ASP.NET AJAX libraries and toolkits?
I'm confused about the differences and relationships between the various Microsoft ASP.NET AJAX components/libraries/toolkits and particularly the naming of them.
It starts off relatively simple with ...
3
votes
2answers
4k views
Ajax Control Toolkit HTML Editor Customization Problem?
How to Change default setting for ACT HTML Editor? I want to load editor with for example Selected Bold Button or with rtl direction instead of ltr defaultly.
How can I perform that?
I overrided ...
3
votes
4answers
4k views
Positioning AJAX ModalPopupExtender in the center of the screen problem
I have problem with positioning ModalPopupExtender in the center of the screen when it's PopupDragHandleControlID property is set (without this property it works fine ).
ModalPopupExtender is not ...
3
votes
2answers
1k views
Combining scripts - Toolscript manager vs CompositeScript in 3.5
I've been using the toolscriptmanager included in the AjaxControlToolkit on my site. This one has a CombineScript attribute that tells the scripmanager to combine the necessary scripts from ajax ...
3
votes
6answers
8k views
ASP.Net button click event not firing
This is perhaps related to this question, but I have slightly more information.
I recently updated an ASP.Net application to .NET 3.5 after coding a few new pieces with Linq. Now my pages ...
3
votes
3answers
3k views
AJAX Dropdown extender question
I am using the example on the AJAX website for the dropdown extender. I'm looking to make the target control, the label, have the dropdown image appear always instead of just when I hover over it. ...
2
votes
2answers
86 views
Post back causing reset in the slider, how to stop it from doing a reset (asp.net website)
I have a slider and on page load I set a default value to the slider(25,75). Everytime there is a post back inside the update panel after I change the slider value it reset the value to 25,75 how can ...
2
votes
1answer
98 views
Get TargetControlId of an AutoCompleteExtender in OnClientItemSelected Javascript function
I have a texbox inside a templatefield in a gridview. For this textbox I have defined an autocompleteextender with its TargetControlID set to "myTextbox" which is working just fine. At the same time, ...
2
votes
1answer
54 views
Asp.net application page hanges/freezes while loading
I have web application using asp.net 3.0 and ajax update panels, web services ... The web page randomly freezes and could not find any error.
Here is a simplified Question: A user select a patient ...
2
votes
3answers
91 views
JScript runtime error when using UpdatePanel
I am trying to create a dynamic UI using UpdatePanel of AJAX toolkit.
Let me explain the context of my application a bit. There are many profiles. Each profile has a number of product classes. Each ...
2
votes
1answer
372 views
Ajax control Toolkit Hover Menu with GridView
Hi there I am trying to achieve the same functionality of the Example Hover menu over at http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/HoverMenu/HoverMenu.aspx
However when my gridview ...
2
votes
1answer
76 views
how to separate more than 1 value in a text box with a semicolon in asp.net autocomplete textbox
I have a text box with auto complete extender and it works fine. How can I allow the user to enter more than 1 value by separting the first value with a semicolon(;)
<asp:TextBox ID="txt_to" ...
2
votes
2answers
182 views
Required field Validation and Modal popup occurs at the same time
I have a page where there are some text box with required fields and I have a submit button in the same page for which I have the Modal Pop up. When I click the submit button without filling the text ...
2
votes
2answers
45 views
ASP.NET WebForms in an ASP.NET MVC 2 application
Is it possible to call normal ASPX pages with their normal life-cycle in an ASP.NET MVC 2 application? What about web controls and ajax.net toolkit?
Thank you!
2
votes
1answer
272 views
C# Issue finding controls inside of nested Accordions
I have a user control comprised of two nested accordions with a repeater inside, all of which are pulled from a database. The repeater has CheckBoxes with MutuallyExclusiveCheckBoxExtenders inside. ...
2
votes
1answer
67 views
Toggle button like google places
How can we implement Toggle button like google places
When click on write Review we smile images and sad images
http://maps.google.com/maps/place?cid=7069125495329769622&hl=en-IN
2
votes
1answer
97 views
Pop up disappears when a img button in clicked (ASP.NET Ajax control tool kit)
<Columns>
<asp:TemplateField HeaderText="Edit Controls" ItemStyle-Width="15%">
<ItemTemplate>
...
2
votes
1answer
125 views
Html editor for asp.net c# website
How to add a HTML editor, to add images, format and for adding videos to the message that I am going to send. Is there any free tool that I can use. And How should I store the images and videos in the ...