active questions tagged ajaxcontroltoolkit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T19:45:29Zhttp://stackoverflow.com/feeds/tag/ajaxcontroltoolkithttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1825747/ajaxcontroltoolkit-dll-refresh0AjaxControlToolkit.dll.refreshAmiT2009-12-01T12:01:42Z2009-12-01T12:06:21Z
<p>What is the role of AjaxControlToolkit.dll.refresh file ?</p>
http://stackoverflow.com/questions/1523749/why-ajaxcontroltoolkit-is-creating-folders-like-ar-cs-de0Why Ajaxcontroltoolkit is creating folders like ar,cs,deRamesh2009-10-06T05:29:02Z2009-12-01T11:43:04Z
<p>Hi all,</p>
<p>In have my application configured in asp.net.</p>
<p>I am using ajaxcontroltoolkit. After building the application, it creates lot of folders like ar,cs,de etc.... and it contains ajaxcontroltoolkit.dlls,</p>
<p>I don't know why it creates this many dlls.</p>
<p>Can anyone please help me to get out of this?</p>
http://stackoverflow.com/questions/1493307/microsofts-ajax-toolkit-vs-jquery6Microsoft's AJAX Toolkit vs. jQueryMayo2009-09-29T15:27:58Z2009-12-01T07:00:05Z
<p>Our team has been using Microsoft's AJAX Toolkit since the days of Atlas. In a <a href="http://stackoverflow.com/questions/1364157/how-will-jquery-impact-web-development">bit of naivety</a> we missed the jQuery/Prototype phenomenon until a month or two back. Until now, we have always associated the concept of Ajax with Microsoft's toolkit.</p>
<p>In reading up on jQuery I'm seeing a whole new side of Ajax that I was only vaguely aware of. That is, you can use JavaScript (or a JS library) to talk to the server without using a specialized control. At first glance, it seems like this offers better browser compatibility and less bloat. I'm certainly interested in it.</p>
<p><strong>My question to the community:</strong><br />
When working with ASP.NET and faced with the need to communicate with the server without a postback, how does one make the determination to use a control from the AJAX Toolkit instead of working with something like jQuery? Is there a reason to use both?</p>
http://stackoverflow.com/questions/1821075/modalpopupextender-programmatic-changes-made-to-the-settings-of-the-related-pan0ModalPopupExtender - programmatic changes made to the settings of the related Panel have no effectJ M2009-11-30T17:03:55Z2009-11-30T17:03:55Z
<p>I have a popup extender linked to a panel as illustrated by the markup below:</p>
<pre><code><asp:Button runat="server" ID="buttonViewQuestionPopupController" style="display:none" />
<ajaxToolkit:ModalPopupExtender
runat="server"
ID="popupViewQuestion"
PopupControlID="panelViewQuestion"
TargetControlID="buttonViewQuestionPopupController"
DropShadow="True"
BackgroundCssClass="modalBackground"
>
</ajaxToolkit:ModalPopupExtender>
<asp:Panel runat="server" ID="panelViewQuestion" Style="display: none" CssClass="modalPopupViewQuestion">
<asp:UpdatePanel runat="server" ID="updatePanelViewQuestion">
<ContentTemplate>
<asp:Label runat="server" ID="labelTestInsidePanel" Text="Testing changes made in code......"/>
<ContactorCompliance:QuestionDialog runat="server" id="dialogViewQuestion"></ContactorCompliance:QuestionDialog>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Panel>
</code></pre>
<p>After a postback (in this case a question is selected in a grid), I want to be able to change the css class of panelViewQuestion.</p>
<p>However, any programmatic changes I make to panelViewQuestion seem to be ignored.</p>
<p>Changes to labelTestInsidePanel and dialogViewQuestion take effect.</p>
<p>I looked at the rendered output and it contains two divs (an outer and an inner) with the original css class from the markup set on the inner div.</p>
<p>Does anyone know a) why the programmatic change to panelViewQuestion don't take effect and b) how I might be able to make them?</p>
<p>If I can't work this out, I will have to have multiple panel and extender sets in the page, each with a different css class set on the panel. I really don't want to have to do that......</p>
http://stackoverflow.com/questions/1820321/validationcallout-extender0Validationcallout extendersoni2009-11-30T14:59:28Z2009-11-30T14:59:28Z
<p>Hi All,</p>
<p>I am Using Ajax ValidatorCalloutExtender in my application to check for the validations.</p>
<p>Please do let me know how to validate the dropdown list and checkbox using validation callout extender ajax control.
When i click on the submit button, it should display that dropdownlist and checkbox are mandatory.</p>
http://stackoverflow.com/questions/1819788/ajax-control-toolkit-collapsable-panel-is-not-expanding0Ajax control toolkit Collapsable Panel is not expandingDevi2009-11-30T13:21:54Z2009-11-30T13:57:09Z
<p>Hi, I am using Ajax Control toolkit's collapsable panel extender to design a menu.
My requirement is to have a button called "Expand all", on clicking it all the Collapsable panel will open.</p>
<p>How i will do that. somebody please help.</p>
http://stackoverflow.com/questions/1819213/not-ajax-related-controls-in-ajaxcontroltoolkit0Not Ajax-related controls in AjaxControlToolkit?afsharm2009-11-30T11:16:23Z2009-11-30T11:16:23Z
<p>Why AjaxControlToolkit contains controls like <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/DropShadow/DropShadow.aspx" rel="nofollow">DropShadow</a> that are not related to Ajax really? Such controls just make use of JavaScript and does not send or receive any data to/from server?</p>
http://stackoverflow.com/questions/1560118/asyncfileupload-control0AsyncFileUpload ControlSloane2009-10-13T13:04:15Z2009-11-30T10:05:34Z
<p>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 cancel the upload, as I am checking the fileExtension at this point and would like to cancel the upload so that it does not continue and go on to upload the file. My end result is allow only images to be uploaded.
Please advise and thanks for your time.</p>
http://stackoverflow.com/questions/1749398/is-it-possible-to-move-the-autocomplete-vb-file-out-of-the-appcode-folder-and0Is it possible to move the "AutoComplete.vb" file out of the App_Code folder and into a new namespace/project?45012009-11-17T14:53:14Z2009-11-27T09:45:20Z
<p>When setting up the Ajax Control Toolkit's AutoComplete control, it creates an <code>AutoComplete.asmx</code> and a <code>AutoComplete.vb</code> file. The <code>AutoComplete.vb</code> file automatically ends up in the App_Code folder. I was hoping to move all of these styled-classes into a separate namespace, but the compiler simply does not dig it. </p>
<p>Is this possible, or must it be within the presentation layer to access the "Web" related namespaces?</p>
<p>Errors when moving it and changing the reference to it include things like:</p>
<blockquote>
<p>Type 'WebService' is not defined.</p>
<p>Typed 'WebServiceBinding' is not
defined</p>
</blockquote>
http://stackoverflow.com/questions/1795702/how-to-reset-calendar-extender-for-ajax-control-toolkit-to-its-default-value-whic0How to reset Calendar Extender for Ajax Control Toolkit to its default value which should be empty string (server side)?Ahmed2009-11-25T09:27:24Z2009-11-25T09:44:54Z
<p>How to reset Calendar Extender for Ajax Control Toolkit to its default value which should be empty string?
Reset to be server side.</p>
http://stackoverflow.com/questions/1795737/how-to-reset-cascading-dropdownlist-for-ajax-control-toolkit-to-its-default-promp0How to reset Cascading DropDownList for Ajax Control Toolkit to its default prompt text (server side)?Ahmed2009-11-25T09:34:08Z2009-11-25T09:34:08Z
<p>How to reset Cascading DropDownList for Ajax Control Toolkit to its default prompt text (server side)?</p>
http://stackoverflow.com/questions/1793995/ajax-control-toolkit-collapsible-panel-in-sharepoint0AJAX Control Toolkit Collapsible Panel in SharePointAli_Abadani2009-11-25T00:50:42Z2009-11-25T03:21:32Z
<p>I am trying to use the AJAX collapsible panel inside a user control which is loaded onto a Webpart in an AJAX enabled SharePoint site. I don't have any issues with using AJAX overal but I am having issues with this control. When the page loads, it does not collapse and when I click on the link to collapse/expand it just blinks and won't collapse. After a bit of reseach, I found that others have the same issue and a couple of people suggested to enclose the content panel in:</p>
<pre><code><div style="height:0px;position:absolute;" >
<asp:Panel> content </asp:Panel>
</div>
</code></pre>
<p>Doing that would fix the collapse issue but I think it defeats the purpose since you can't put anything underneath the panel or else it loads on top. Any suggestions?</p>
http://stackoverflow.com/questions/1789831/calling-multiple-javascript-functions-on-event1Calling multiple javascript functions on eventunknown (google)2009-11-24T12:39:16Z2009-11-24T13:13:43Z
<p>I'm using the ajaxcontroltoolkit and trying to call a couple of functions on a tab changed event.</p>
<p>I want to call more than one js function from my OnClientActiveTabChanged function but keep getting the error </p>
<pre><code>Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Timestamp: Tue, 24 Nov 2009 12:31:43 UTC
Message: Expected '}'
Line: 202
Char: 181
Code: 0
URI: http://localhost/.../.../....aspx?ID=1000&propertyFrameWidth=1234&propertyFrameHeight=603&userId=9&employeeId=526&CCId=2&DbConnTag=TSDBConnection
</code></pre>
<p>Update, I've just noticed this happens even for basic alert statements..</p>
<pre><code>OnClientActiveTabChanged="alert('testone');alert('testtwo');"
</code></pre>
<p>Line giving the problem:</p>
<pre><code>Sys.Application.add_init(
function()
{
$create(AjaxControlToolkit.TabContainer,
{
"activeTabIndex":0,
"clientStateField":$get("ctrlJobPropertiesView_tbcTabContainer_ClientState")
},
{
"activeTabChanged":alert('testone');alert('testtwo');
},
null,
$get("ctrlJobPropertiesView_tbcTabContainer")
);
});
</code></pre>
http://stackoverflow.com/questions/1765343/update-panel-and-partial-rendering-and-asyncpostbacktriggers-only-firing-the-firs0Update Panel and partial rendering and AsyncPostBackTriggers only firing the first time with AjaxControlToolkit:ComboBoxklogan2009-11-19T18:08:13Z2009-11-20T21:04:41Z
<p>This should be a pretty simple thing to do with Update Panels, but I'm having troubles.
I want to update the updatePanelSelectedVendors on vendorsComboBox selection change, when the gridview pages, and on the delete buttons in that panel. I don't want to refresh the vendor combox at all, but I don't want to do a full post back.</p>
<p>The problem is that the async post back only happens the first selection change of the vendorsComboBox. I'm having similar panels with other update panels in this user control. How can I link them all together and only update on the triggers I set.</p>
<pre><code><div class="containerBox vendorsSelectBox">
<asp:Label ID="lblVendors" runat="server" EnableViewState="false" AssociatedControlID="vendorsComboBox" CssClass="labelHeader" Text="Vendors" />
<br />
<asp:UpdatePanel ID="updatePanelVendorsSelect" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional">
<ContentTemplate>
<ajaxToolkit:ComboBox ID="vendorsComboBox" runat="server"
DataTextField="Name"
DataValueField="VendorID"
AutoPostBack="true"
AutoCompleteMode="SuggestAppend"
DropDownStyle="DropDownList"
CssClass="CustomComboBoxStyle"
CaseSensitive="false"
AppendDataBoundItems="false"
onselectedindexchanged="vendorsComboBox_SelectedIndexChanged">
</ajaxToolkit:ComboBox>
</ContentTemplate>
</asp:UpdatePanel>
</div>
<asp:Panel ID="panelSelectedVendors" runat="server" CssClass="containerBox selectedFranchiseBox">
<label class="labelHeader">Selected Vendors</label>&nbsp;&nbsp;&nbsp;<br />
<asp:UpdatePanel ID="updatePanelSelectedVendors" runat="server" ChildrenAsTriggers="true" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="vendorsComboBox" EventName="SelectedIndexChanged" />
</Triggers>
<ContentTemplate>
<asp:GridView ID="selectedVendorsList" runat="server"
AllowPaging="True"
Width="250"
DataKeyNames="VendorID" AutoGenerateColumns="False" SkinID="gridViewSkin"
onrowdatabound="selectedVendorsList_RowDataBound"
onpageindexchanging="selectedVendorsList_PageIndexChanging">
<Columns>
<asp:TemplateField HeaderText="Remove?" ItemStyle-Width="10">
<ItemTemplate>
<asp:CheckBox ID="checkBoxSelect" runat="server" />
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
</Columns>
</asp:GridView>
</ContentTemplate>
</asp:UpdatePanel>
<br />
<asp:Button ID="buttonDeleteSelectedVendor" runat="server"
Text="Delete Selected Vendor" EnableViewState="false"
SkinID="button" style="display:none; float:left; width:150px;"
onclick="buttonDeleteSelectedVendor_Click" />
<asp:Button ID="buttonClearSelectedVendors" runat="server"
Text="Delete All" SkinID="button" style="float:right; margin-right:25px;"
Visible="false"
onclick="buttonClearSelectedVendors_Click" />
</asp:Panel>
</code></pre>
<p>EDIT: I changed vendorsComboBox to a regular DropDownList and the partial post backs worked the way I expected. Why doesn't it with the ComboBox control?</p>
http://stackoverflow.com/questions/1771444/asp-net-ajax-reorderlist-any-way-to-disable-specific-items-from-being-dragged-a0ASP.NET Ajax ReOrderList - Any way to disable specific items from being dragged and dropped?Zach2009-11-20T16:00:13Z2009-11-20T19:25:53Z
<p>I have an ajax controltoolkit reorderlist within an asp.net application. </p>
<p>I need to disable certain specific steps from being reordered. This has to be done dynamically. All steps are consecutive and start from the beginning, but it's not known until runtime how many need to be disabled from being reordered any further. </p>
<p>I tried the e.item.enabled = false for reorderlist_itemdatabound but this just disabled links. I need to disable the drag handler.</p>
<p>Any help is greatly appreciated. Thanks!</p>
http://stackoverflow.com/questions/1769831/asp-net-ajax-toolkit-calendarextender-not-working-c1ASP.NET AJAX Toolkit CalendarExtender not working C#unknown (google)2009-11-20T11:16:48Z2009-11-20T12:14:56Z
<p>Hi guys,</p>
<p>I have a folowing problem:
I have a page where I need to create a lot of elements dynamically from the code behind. It obviously depends on what is passed from the database, but the number of elements can change, that's why I cannot do it static.</p>
<p>What I have at the moment, is:</p>
<p>I have statically created PANEL:</p>
<pre><code><asp:Panel ID="pFullInfo_lStartDateStr" runat="server"></asp:Panel>
</code></pre>
<p>Then in Code Behind, I'm creating other Controls and add them to my Label. The Issue I have is that the CalendarExtender that should appear after clicking the iEditStartDateCalendar doesn't popup :( I can't see what I'm doing wrong here ? Any help please ?!?!</p>
<pre><code>// StartDate
Label lStartDateSite = new Label();
pFullInfo_lStartDateStr.Controls.Add(lStartDateSite);
Label lStartDate = new Label();
pFullInfo_lStartDateStr.Controls.Add(lStartDate);
ImageButton ibEditStartDate = new ImageButton();
ibEditStartDate.ID = "ibEditStartDate_" + this_site_id;
pFullInfo_lStartDateStr.Controls.Add(ibEditStartDate);
TextBox tbEditStartDate = new TextBox();
pFullInfo_lStartDateStr.Controls.Add(tbEditStartDate);
Image iEditStartDateCalendar = new Image();
iEditStartDateCalendar.ID = "iEditStartDateCalendar";
iEditStartDateCalendar.ImageUrl = "~/i/small/calendar.png";
iEditStartDateCalendar.ImageAlign = ImageAlign.AbsMiddle;
pFullInfo_lStartDateStr.Controls.Add(iEditStartDateCalendar);
CalendarExtender ceEditStartDate = new CalendarExtender();
ceEditStartDate.ID = "ceEditStartDate_" + this_site_id;
ceEditStartDate.PopupButtonID = iEditStartDateCalendar.UniqueID;
ceEditStartDate.TargetControlID = tbEditStartDate.UniqueID;
ceEditStartDate.PopupPosition = CalendarPosition.Right;
pFullInfo_lStartDateStr.Controls.Add(ceEditStartDate);
</code></pre>
http://stackoverflow.com/questions/1768593/how-to-localizing-today-text-in-ajaxtoolkitcalendarextender0How to localizing Today text in ajaxToolkit:CalendarExtender ?Praveen2009-11-20T05:57:24Z2009-11-20T06:25:11Z
<p>Hi All,</p>
<p>Is there any way to localize the Today text in <code>ajaxToolkit:CalendarExtender</code>?</p>
<p>This control localizes the day and month texts according to the culture but shows,
the current date with the text Today like <code>Today:noienbrie 20, 2009</code>,
here the month is localized but today is still in English.</p>
<p>Please help me as i tried the internet but haven't found any way so far. </p>
http://stackoverflow.com/questions/596764/modalpopupextender-how-do-i-retain-my-position-after-dragging-and-firing-a-post1ModalPopupExtender: How do I retain my position after dragging and firing a post back?klogan2009-02-27T21:33:56Z2009-11-20T03:25:53Z
<p>I've already tried Google searching for this and looking at the source for this control, but didn't find the answer. If I was able to link into a drag event I would be able to solver this, but I don't think it exists (see this link for a solution with a DragDropPanel (<a href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=181" rel="nofollow">http://www.dotnetcurry.com/ShowArticle.aspx?ID=181</a>). How can I do this with the modalPopupExtender? The popup is working well, but after dragging it to a different location, then clicking the Test Partial Postback, the dialog is recentered to its default location.</p>
<pre><code><asp:Panel ID="panelDivPopup" runat="server" EnableViewState="false" style="display:none;"
CssClass="modalPopup">
<img id="modalCancel" class="jqmClose" src="cancel.png" runat="server" enableviewstate="false" />
<div class="jqmdHeader jqDrag" id="dragHandle">Dialog Title</div>
<div class="jqmdContent">
Hello!!
<br />
<asp:UpdatePanel ID="updatePanel" runat='server'>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="btnUpdatePostBack" />
</Triggers>
<ContentTemplate>
<asp:Label runat="server" ID="lblUpdateText" EnableViewState="false" />
<asp:Button runat="server" EnableViewState="false" ID="btnUpdatePostBack" Text="Test Partial Postback" OnClick="btnUpdatePostBack_Click" />
</ContentTemplate>
</asp:UpdatePanel>
</div>
</asp:Panel>
<ajct:ModalPopupExtender ID="modalPopupExtender" runat="server" EnableViewState="false"
PopupControlID="panelDivPopup" TargetControlID="linkShowDialog" DropShadow="false"
BackgroundCssClass="modalBackground" CancelControlID="modalCancel"
Drag="true" PopupDragHandleControlID="dragHandle" RepositionMode="RepositionOnWindowResizeAndScroll">
</ajct:ModalPopupExtender>
</code></pre>
http://stackoverflow.com/questions/1750170/ajaxcontroltoolkit-calendarextender-and-system-web-extentions-version-error0AjaxControlToolkit.CalendarExtender and System.Web.Extentions version errorSteveO2009-11-17T16:43:58Z2009-11-19T23:48:20Z
<p>I have VS 2005, 2008 on my dev box.</p>
<p>New project from other developers who only have 2005 installed. When I build it I get error.</p>
<p>Error 1 Indirect reference is being made to assembly System.Web.Extensions version 3.5.0.0, which contains 'AjaxControlToolkit.CalendarExtender'. This Project references a prior version of System.Web.Extensions version 1.0.61025.0. To use 'AjaxControlToolkit.CalendarExtender', you must replace the reference to System.Web.Extensions with version 3.5.0.0 or higher. </p>
<p>When I change the version of Web.Extentions to 3.5 I get another failure </p>
<p>Could not load file or assembly 'AjaxControlToolkit, Version=1.0.20229.23876, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)</p>
<p>Should I change the Public key for:
add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"</p>
<p>to the newer one, or is this the wrong thing to do. the Server does NOT have 3.5 runtime.</p>
<p>TIA</p>
http://stackoverflow.com/questions/1755959/maskededitextender-dates-and-globalization0MaskedEditExtender, dates and GlobalizationMatias2009-11-18T13:28:16Z2009-11-18T14:17:43Z
<p>I want to use the MaskedEditExtender to mask short dates. The problem is that I want to mask the field depending on the user language settings.
This is working for a lot of cases, but for example for Latvian Culture (with format 9999.99.99. ) is not working.</p>
<pre><code><cc1:MaskedEditExtender ID="MaskedEditExtender1" runat="server" AutoComplete="True" MaskType="Date" TargetControlID="myTextbox" ClearMaskOnLostFocus="True"
OnInvalidCssClass="myInvalidCss" OnFocusCssClass="myOnFocusClass" Mask="99/99/9999" >
</cc1:MaskedEditExtender>
</code></pre>
<p>Is there a simple way to set the Mask property with the user culture mask format?
Am I missing something to do this easier?</p>
http://stackoverflow.com/questions/1753065/asp-net-ajax-toolkit-combobox-avoid-the-need-to-click-enter-twice-to-postback0ASP.NET AJAX Toolkit Combobox: avoid the need to click ENTER twice to postbackTom S.2009-11-18T01:35:20Z2009-11-18T03:27:20Z
<p>Hi, im using a ComboBox for a feature in my application, and i have AutoCompleteMode="Suggest".</p>
<p>However, after i type in the textbox for a search, i need to press ENTER twice to postback and show some results. This is the default behavior, like its shown in the <a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ComboBox/ComboBox.aspx" rel="nofollow">oficial demonstration</a>.
In my opinion, its kinda annoying and not intuitive...</p>
<p>Anyone have a clue how to avoid this behavior, and press just one time?</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1741883/access-tigger-button-in-updatepanel-inside-a-loginview0access tigger button in updatepanel inside a loginview?Dejan.S2009-11-16T12:27:11Z2009-11-17T08:41:48Z
<p>hi i am having problems with to define my trigger control in the ajax updatepanel. the button is inside a loginview now i wonder if this is possible to make the updatepanel to find that control somehow? </p>
<p>tried to search but did not find any info on this</p>
http://stackoverflow.com/questions/1439294/modalpopupextender-wont-render-in-front-of-everything-in-ie7-ie8-compatibility-m1ModalPopupExtender won't render in front of everything in IE7/IE8 Compatibility modefr0man2009-09-17T14:36:42Z2009-11-17T02:58:33Z
<p>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, rather than on top.<br />
The popup is in a user control that's rendered by the Masterpage. What I think is happening is it's popping up in front of the master page content, as the Masterpage content (my header and sidebars) is greyed out, but the content placeholders are rendering in front of my popup. I found a solution online that suggested changing your doctype declaration in the master page to:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
</code></pre>
<p>But I already had that exact declaration and still have the positioning problem. Here is the popup code:</p>
<pre><code><cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server"
TargetControlID="lnkbtnDealerID"
PopupControlID="pnlPopup"
BackgroundCssClass="modalBackground"
DropShadow="true"
OkControlID="OkButton"
CancelControlID="CancelButton"
OnOkScript=""
>
</cc1:ModalPopupExtender>
<asp:Panel ID="pnlPopup" runat="server" CssClass="modalPopup" Style="display: none" Width="233px">
<p>Are you sure? Your current shopping cart is valid only for the current Dealer ID. Switching Dealer IDs will reset your cart according to the new Dealer ID chosen.</p>
<br />
<div align="center">
<asp:Button ID="OkButton" runat="server" Text="Ok" />
<asp:Button ID="CancelButton" runat="server" Text="Cancel" />
</div>
</asp:Panel>
</code></pre>
<p>And the relevant CSS:</p>
<pre><code>.popupControl {
background-color: white;
position:absolute;
visibility:hidden;
border-style:solid;
border-color: Black;
border-width: 2px;
}
.modalBackground {
background-color:Gray;
filter:alpha(opacity=70);
opacity:0.7;
}
.modalPopup {
background-color:white;
border-width:1px;
border-style:solid;
border-color:Gray;
padding:3px;
width:250px;
}
</code></pre>
http://stackoverflow.com/questions/1592789/asp-net-ajax-asyncfileupload-control-not-firing-server-side-onuploadcompleted-eve0ASP.Net Ajax AsyncFileUpload control not firing server side OnUploadCompleted eventtardomatic2009-10-20T06:24:35Z2009-11-16T14:23:19Z
<p>Hi,</p>
<p>I am writing an application that requires a user to upload files to the server machine. All user interaction with the user is done via JQuery UI modal popups. I created a test page to see that the AsyncFileUpload control works, and everything works fine on it. I added the AsyncFileUpload to the webform that I need it on, in a modal popup, but for some reason the server side event is never fired. The only difference on this page from the test page is that I send a variable through on the querystring which I, on initial load of the page, store in the viewstate (so it isn't required on future postbacks). Any ideas?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1730982/multiple-formviews-and-the-ajax-tabcontainer0Multiple FormViews and the AJAX TabcontainerAJAXNewbie2009-11-13T18:21:51Z2009-11-13T18:21:51Z
<p>I have an object datasoure that returns an object representing one record. However, the object is large and contains some lists. I would like to display this object with a formview that serves as a header and then an AJAX tabcontainer underneath with various tabs for the logical groups of data pertaining to that particular object. I have no problem having 2 formviews pointing to the same datasource (one in a formview and another in a separate formview inside of a tabcontainer). However, when I tried to add a 3rd formview on the 2nd tab in the container, I couldn't get the data to show up. Now my entire tabcontainer appears to be broken, and I can't even get simple labels to show up. Is this approach even possible?</p>
<p>Any insight into this and/or suggestions of a different way to do this would be greatly appreciated!</p>
<p>I am committed to using the ObjectDataSource, and I really like the slickness of the AJAX control, but I'd rather know now if it's not going to work!!</p>
<p>Thanks :-D</p>
http://stackoverflow.com/questions/1152886/asp-net-server-control-wrapping-gridview-in-a-panel-linked-to-an-ajax-toolkit-res0ASP.NET server control wrapping GridView in a Panel linked to an AJAX Toolkit ResizableControlExtender - panel size does not initialise to the size of the gridJ M2009-07-20T10:57:50Z2009-11-13T09:00:02Z
<p>I am trying to create a resizable GridView wrapped up as a server control. I am using the ResizableControlExtender from the AJAX Control Kit, which as far as I know requires that </p>
<ul>
<li>the control that is to be resized
must reside inside a panel </li>
<li>the initial panel size
must match the initial target control
size.</li>
</ul>
<p>I can do this happily in a test .aspx page with no issues by just putting my grid in the panel as normal. When I run the page and view the source, I can see that the panel is rendered as a div that surrounds the grid.</p>
<p>But, when I wrap it in a server control, the automatic sizing of the panel is not happening. Instead, the rendered div for the panel has no height and witdh settings and is therefore somehow smaller than the grid.</p>
<p>UPDATE - I think this is because I am not setting the minimum size of the extender and the extender is then setting the panel size to nothing. I am not setting the minimum size because I can't calculate the size of the grid before it is rendered (as it depends on the css).</p>
<p>So, I am either using the extender incorrectly or I need to be able to calculate the height of the grid (which I believe is only possible in javascript?)</p>
<p>I have hacked this with fixed sizes in the css but this is rubbish and breaks if resizing results in wrapping.</p>
<p>Any ideas/tips/etc would be greatly appreciated.</p>
http://stackoverflow.com/questions/1725132/why-cant-i-find-the-ajaxcontroltoolkit-html-editor-control-using-findcontrol-whe0Why can't I find the AjaxControlToolkit Html Editor Control using FindControl when it's inside an AjaxControlToolkit ReorderList?theminesgreg2009-11-12T20:27:20Z2009-11-12T20:37:14Z
<p>I have the latest release of the AjaxControlToolkit, and am using an AjaxControlToolkit Html Editor control inside an AjaxControlToolkit ReorderList. I need to be able to access the "content" property so I can write the value to the database but FindControl doesn't find it.</p>
<p>for instance, I <strong>can find</strong> a <strong>TextBox control</strong> inside the ItemCommandEvent:</p>
<pre><code>Protected Sub IncludedSectionComponentsReorderList_ItemCommand(ByVal sender As Object, ByVal e As AjaxControlToolkit.ReorderListCommandEventArgs) Handles IncludedSectionComponentsReorderList.ItemCommand
If e.CommandName = "SaveChanges" Then
Dim txtSectionComponentLabel As TextBox = CType(e.Item.FindControl("txtSectionComponentLabel"), TextBox)
End If End Sub
</code></pre>
<p>But I <strong>can't find</strong> an AjaxControlToolkit Html Editor in the same event:</p>
<pre><code>Protected Sub IncludedSectionComponentsReorderList_ItemCommand(ByVal sender As Object, ByVal e As AjaxControlToolkit.ReorderListCommandEventArgs) Handles IncludedSectionComponentsReorderList.ItemCommand
If e.CommandName = "SaveChanges" Then
Dim editor As Editor = CType(e.Item.FindControl("3Editor"), Editor)
strSectionControlValue = editor.Content
End If
End Sub
</code></pre>
http://stackoverflow.com/questions/1716656/how-can-i-flip-the-arrow-button-on-my-accordionpane-when-its-clicked0How can I flip the arrow button on my accordionpane when it's clicked?SLC2009-11-11T17:10:20Z2009-11-11T17:10:20Z
<p>An accordionpane isn't an accordionpane without pointing down that shows the user they can expand it... However I can't find out where to hook into to fire a javascript method that flips the arrow when the accordionpane is expanded/contracted.</p>
http://stackoverflow.com/questions/54702/ajax-dropdown-extender-question2AJAX Dropdown extender questionCptcecil2008-09-10T17:02:00Z2009-11-11T08:48:14Z
<p>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. Is there any way to do this?</p>
http://stackoverflow.com/questions/1457813/how-do-i-bind-a-javascript-event-handler-to-the-ajax-control-toolkit-combobox-whe1How do I bind a javascript event handler to the Ajax Control Toolkit combobox when textbox changedJames Black2009-09-22T02:09:10Z2009-11-11T08:41:52Z
<p>I need a combobox for an ASP.NET project, so I decided to use the Ajax Control Toolkit combobox (<a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ComboBox/ComboBox.aspx" rel="nofollow">http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ComboBox/ComboBox.aspx</a>).</p>
<p>I don't want to use the postback as I don't want the page reloaded, but I need to know when the text in the textbox is changed so I can call out to the server to persist the new list item.</p>
<p>I am curious how I bind an onchange or onblur event to the input box that this combobox uses.</p>
<p>This is my asp.net page:</p>
<pre><code><%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="cc1" %>
<cc1:ComboBox ID="PlantDropDown" runat="server" OnInit="PlantDropDown_Init" DropDownStyle="DropDown"
AutoCompleteMode="SuggestAppend"
ItemInsertLocation="OrdinalText" AutoPostBack="false">
</cc1:ComboBox>
</code></pre>
<p>Update: I tried using the suggestion and I get this error:</p>
<pre><code>$find("PlantDropDown") is null
[Break on this error] $find('PlantDropDown').add_propertyChanged(function(sender, e) {\r\n
</code></pre>
<p>I am using jQuery for the javascript side, btw, in case that helps.</p>
<p>Final Update:
I got it to work thanks to help from crescentfresh, and at the end I have this in my .aspx file:</p>
<pre><code> <input type="hidden" id="PlantDropDownID" value="<%= PlantDropDown.ClientID %>" />
</code></pre>
<p>And this is in my javascript file, since I don't push javascript in my .aspx file:</p>
<p>elem = document.getElementById('PlantDropDownID');
$find(elem.value).add_propertyChanged(function(sender, e) {
if (e.get_propertyName() == 'selectedIndex') {
var newValue = sender.get_textBoxControl().value;
}
})</p>