Wednesday, March 28, 2012

control inside an update panel not updated

i have a dropdown list inside an update panel of ajax, i have a button that says "Add" on the click event of the button i will load a pop-up screen. the popup screen works as entry area of the drop down list i have mentioned. upon saving and unloading the pop-up screen, it should update the dropdown list contents. any help please, this is my first time to handle ajax..

Hi,

You question is about cross window scripting.

First, find the dropdownlist in the parent control.

var ddl = window.opener.document.getElementById("id of the ddl");

then add new item into it:

ddl.options.add("new value");

Hope this helps.

Control inside a DropDownList

Hi,

Is it possible to insert controls such as buttons, etc... inside a dropdownlist ?

hello.

not inside the traditional dropdownlist. i guess that you could fake it though by using javascript...


thank you

Control ID Changed and GetElemntByID Return NUll

I have this code

<asp:UpdatePanel ID="UpdatePanel3" runat="server">
<ContentTemplate>
<asp:TextBox ID="TxURL" runat="server"></asp:TextBox>
<asp:Button ID="Test" runat="server" Text="Button" OnClick="Test_Onclick" />
</ContentTemplate>
</asp:UpdatePanel>

I try to run this script

var TextControl= document.getElementByID("TxURL")

or

var TextControl = $get("TxURL")

but return value is NULL.

so How, to get Item in Client with the orignal Name. not the generated Name

Thanks.

U may be using Master Pages or UserControl thats why the client id of the control are not the same which u give to the control on the design time

try to run this script

var TextControl= document.getElementByID("<%= TxURL.ClientID %>")

or

var TextControl = $get("<%= TxURL.ClientID %>")

Control focus on autopostback in UpdatePanel

I have an Update Panel with a bunch of textboxes, and have code for the _onTextChanged events of some of them, so I have enabled AutoPostBack=true.
This is a data entry screen, so the TabIndex is critical. In Mozilla, when the textbox posts back, the TabIndex moves to the next box as expected. In IE, the reload of the page seems to reset the TabIndex to the first textbox.

Any ideas on how I can make my code behave in IE like it does in Mozilla?

ThanksActually, I asked same question yesterday. Unfortunately, no answers yet.
You could use Control.Focus(), to manually set the focus to the next control (either in the server code or with javascript).
That's the strange thing about it... I already had that, and I watch it work in stepping through the _onTextChanged of the control, but then the focus just gets changed/set to nothing after my code set it properly...

Control Focus Inconsistent in Updatepanel on Update

Hi,

Any help would be appreciated in regards to the following problem:

I'm creating calculator-type applications and having problems with focus being lost from textbox controls that are inside of UpdatePanels when my UpdatePanels refresh. Because of the nature of the calculators, all of my textbox fields need to be inside of the update panel. As each textbox is filled out (which can be done in any order) other textbox values will change and adjust. This is all done using the July CTP of Atlas, and the TextChanged events of the TextBox controls.

My problem is that once a user changes the value of a textbox, the UpdatePanel refreshes (to adjust the other textboxes) causing the cursor to unfocus from the newly selected TextBox.

Thus, if the user tabs into a textbox in my UpdatePanel and adjusts the value, then presses tab again, their cursor will momentarily highlight the next textbox and then disappear entirely when the UpdatePanel is updated.

Thanks!

-Snickers

Use Javascript to do calculations and avoid code behind . your problem will be solved.

if there is some connectivity with database or some major code then use code behind

hope it helps

http://www.devguru.com/technologies/javascript/home.asp

Control Focus in ASP.Net 2.0 using AJAX, Master Pages, user controls...

Having a heck of a time with this... Any assistance would be appreciated. All I need to do is set focus to a textbox control that is inside an AJAX tab container (has 2 tabs) that is inside a user control that is inside the content page of a master page. I've tried everything from setting the default focus in the master page to calling .focus() on the textbox to custom javascript and cant get anything to work. Is there something I'm missing here? I'd like to somehow set the focus at the content page level if possible.

Thanks,Troy

I usually set the focus by custom javascript and not use any asp.net built-in feature for this.

I use this javascript function:

function setFocus( id )
{
var o = document.getElementById( id );
if(o != null && !o.disabled ) { o.focus(); }
}

And I have this just before closing the body tag, but can be other place:

<script type="text/javascript">

setFocus( "yourcontrolid" );

</script>

The real question is how to get the corrent id for your control?

You can do this for example:

setFocus( '<%= yourcontrol.ClientID %>' );

You can also hard-code the control id, you can find-out your correct control id by examining the source view of your html page (if the control is rendered during an async postback the page source view not reflect the changes, you need some debugging tool to see your real html source, firebug etc.)


Hadn't thought of inline script. I tried the above, but am still getting the following error: guessing it's an AJAX tab container thing:

"htmlfile: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus."

Here's what I did: Exposed the textbox's clientID in a string property from the child control; Added setFocus(id) sccript to the master page's head tag;At the end of the content page's Page_Load event (server), added aRegisterStartupScript for setFocus passing in the clientID property.

When debugging the above error, my textbox (Input element) makes it into the setFocus() function, is enabled, etc, etc, ... ??

I'll continue to search on the above error. Thanks for the input stmarti...


Found a workaround. (seehttp://forums.asp.net/t/1184754.aspx?PageIndex=3) I ran across this before but am using it as a last resort... "Slowing down" the app doesnt seem like the correct solution but will have to do. I worked a delay routine into the setFocus() solution stmarti suggested. Did the same as above with the following changes in the master page (and calling delay using RegisterStartupScript in content's page_load instead of setFocus):

function delay(id){setTimeout("setFocus('"+id+"')",500);

}

function setFocus( id ) {

var o = document.getElementById( id );if(o !=null && !o.disabled ) { o.focus(); }

}

Anyone with a more elegant solution, please post. Thanks!


What about this (no delay required I think)?

<script type="text/javascript"
Sys.Application.add_load( function( )
{

var o = document.getElementById( yourid );

if(o !=null && !o.disabled ) { o.focus(); }


} );


</script>

You can try other events also (ASP.NET AJAX > Overview > ASP.NET AJAX Client Life-Cycle Events )


Looks like the above is what I'm looking for - wont get a chance to investigate for a bit. Thanks!

Control Extenders inside View Templates?!?

In the previous versions of the toolkit I could place a control extender inside a view template and everything worked just fine but with today's release (10-20-2006) this appears to have broken.

I have verified this to be true with the TextBox Watermark Extender, the Drop Shadow Extender, and the Rounded Corners Extender.

As an example:

<asp:ScriptManager ID="scriptManager" runat="server" />
<asp:LoginView ID="loginView" runat="server">
<AnonymousTemplate>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<ajaxToolkit:TextBoxWatermarkExtender ID="tbw" runat="server" TargetControlID="TextBox1" WatermarkText="WaterMark" />
</AnonymousTemplate>
</asp:LoginView>

This code worked fine in the last version but in this version I do not see the watermark.

Is anyone else experiencing this? If there another way to do this?

Thanks

Sean

The fix is to add the following to your page:

protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
loginView.DataBind();
}

The reason is outlined here:http://forums.asp.net/thread/1441672.aspx.

Control extenders and dispose

I'm having a problem using multiple control extenders on a single web control. The control is a table, and I have two custom extenders (which inherit from ExtenderControl) extending the table. Both of these extenders add event handlers to both the table and window. The problem I'm having is that the dispose method (which MUST be called to remove the window events on an asynchronous postback) is only being called on ONE of the extenders. This seems to always be the most recent extender (in markup - I've tried switching the order that the extenders are defined in markup to verify this behavior). On a full page postback, both dispose methods are always called. Is this some kind of bug? Or is there something I am doing wrong in my extender implementation(s)? I really can't post the full code of my extenders, but if neccessary I can try to create a simple example that displays the behavior.

Ouch - nobody has any idea? Should this maybe be posted in a different forum? Any additional info I can add? This is really causing me problems in my current project...

Control Extender, but not a Behavior

Hey All,

I was wondering if it is possible to create a Control Extender that does not render a behavior, but renders binding information instead. From what I've seen, this doesn't seem to be possible and the way I should do this is to implement IScriptControl and then code my own extender per say.

Anybody else doing something like this?

Thx

IScriptControl will get you there - you'll just have to render out all the script manually...


Ok ... that's the path I was heading down.

If I have a control that's markup is like the following

...

<asp:Button id="button1" runat="server" text="Text" /
<Ext:BindingModifier id="BM1" runat="server">
<Ext:BindingModifierProperties TargetControlID="button1" />
</Ext:BindingModifier
can it still be considered an extender or are we just talking about something else at this point?

Generalizing my question, what's the definition of an Extender? Must it emit a behavior?

Thx for the help and being so active on the boards.

Well that's an extender for sure. What XML are you looking to emit exactly?


I'm looking to emit binding information that ties a series of controls to _PageRequestManager's "inPostBack" property.

The point is to disable a series of controls during a postback.

An example of the code I'm looking to emit can be foundat this post.

Thx
Yeah we don't help you too much there. Your other option it so instanitate a behavior that does this instead, either directly (e.g. finds the disabled property and toggles it) or by adding the bindings via the Atlas object model directly.
Ok ... we're going to mimic the way to write the markup of an extender because it makes sense, but implement IScriptControl to handle all of the script output.

Any thoughts on future plans on creating a pre-built library / project template to do something with other sections of xml-script other than behaviors?

control extender for drag and drop - help

I am trying to get drag and drop to work with data dynamically populated from a database. The basic structure layout of the page is based on the work done by Garbin at:

http://aspadvice.com/blogs/garbin/archive/2006/01/17/14730.aspx

I have a master page and some user controls to populate different areas of the page. One of the user controls gets the data from the database and then creates the HTML of the form:

<div id="content1" class="item"> <div id="content1Handle" class="itemHandle">Content 1</div> <div class="itemContent"> <asp:Login ID="myLogin" runat="server" CssClass="centered"></asp:Login> </div> </div> <div id="content2" class="item"> <div id="content2Handle" class="itemHandle">Content 2</div> <div class="itemContent"> <asp:TextBox ID="myTextBox" runat="server"></asp:TextBox> <asp:Button ID="myButton" runat="server" Text="ClickMe" /> </div> </div>

This works OK, but to create the drag and drop behavior, I need to add the following after the end of the </form> tag …

</form> <script type="text/xml-script"> <page> <components><!-- Left Area --> <control id="leftArea"> <behaviors> <dragDropList dataType="HTML" acceptedDataTypes="'HTML'" dragMode="Move" direction="Vertical"> <dropCueTemplate> <template layoutElement="dropCueTemplate" /> </dropCueTemplate> <emptyTemplate> <template layoutElement="emptyTemplate" /> </emptyTemplate> </dragDropList> </behaviors> </control><!-- Right Area --> <control id="rightArea"> <behaviors>

BUT, I do not know how … it has been suggested that I use a control extender, but having viewed the ATLAS vids on the MS website, I cannot understand how a control extender will be able to dynamically create this code after the </form> tag ?

Any ideas anyone ?

Thanks

anyone ? please ... Crying

Control Events in Accordion

I have an accordion control which contains several panes each containing a GridView (by using ConentTemplate). I would like to give the user the ability to edit GridView items inline. The problem is that I must click twice to put the item into edit mode. I have seen other posts with similar problems but no definite solution. Any help would be greatly appreciated.

1 <ajaxToolkit:Accordion ID="Accordion1" runat="server" HeaderCssClass="accordionHeader"2 ContentCssClass="accordionContent" SelectedIndex="0"3 AutoSize="None" FadeTransitions="false" FramesPerSecond="40" TransitionDuration="250" EnableViewState="true" >4567 <HeaderTemplate><a class="accordionLink" id="accordionLink" href="http://links.10026.com/?link=" onclick="return false;"><%# ((Person)((DictionaryEntry)Container.DataItem).Key).FirstName + " " + ((Person)((DictionaryEntry)Container.DataItem).Key).LastName%></a></HeaderTemplate>89 <ContentTemplate>10111213 <asp:GridView EnableViewState="true" ID="GridViewOpen" OnRowUpdating="GridViewOpen_RowUpdating" OnInit="GridViewOpen_Init" OnRowEditing="GridViewOpen_RowEditing" OnRowCancelingEdit="GridViewOpen_RowCancelingEdit" OnSelectedIndexChanged="GridViewOpen_SelectedIndexChanged" runat="server" DataSource="<%# ((DictionaryEntry)Container.DataItem).Value%> "14 AutoGenerateColumns="false" AutoGenerateEditButton="true" AutoGenerateSelectButton="false" AllowSorting="true">15 <Columns>16171819 <asp:TemplateField HeaderText="MoNumber" SortExpression="MoNumber">20 <EditItemTemplate>21 <asp:TextBox ID="LabelEditMoNumber" runat="server" Text='<%# Bind("MoNumber")%>'></asp:TextBox>22 </EditItemTemplate>23 <ItemTemplate>24 <asp:Label ID="LabelViewMoNumber" runat="server" Text='<%# Bind("MoNumber")%>'></asp:Label>2526 </ItemTemplate>27 </asp:TemplateField>2829303132 <asp:TemplateField HeaderText="Location" SortExpression="LocationId">33 <EditItemTemplate>34 <asp:DropDownList runat="server" id="dataLocationId" DataSourceID="objDsLocationId" DataTextField="Name" DataValueField="LocationId" SelectedValue='<%# Bind("LocationId")%>'></asp:DropDownList>35 </EditItemTemplate>36 <ItemTemplate>37 <asp:Label ID="Label2" runat="server" Text='<%# FindLocation(Eval("LocationId"))%>'></asp:Label>38 </ItemTemplate>39 </asp:TemplateField>40 <asp:TemplateField HeaderText="Time (Hrs)">41 <ItemTemplate>42 <asp:Label ID="Label3" runat="server" Text='-'></asp:Label>43 </ItemTemplate>44 </asp:TemplateField>4546474849 </Columns>50 </asp:GridView>5152 </ContentTemplate>5354 </ajaxToolkit:Accordion>


I too have this problem with a normal LinkButton
Same problem here too, and it's driving me bonkers :(
I see you are not using panes inside the accordion. Is this because you only need one pane? I thought you'd need one pane for every GridViewConfused
In my project, I am using Panes and I'm still having issued. All the Panes are being loaded dynamically though, which I need to do that way. Any ideas out there?

All I have the solution, it dosen't make sence but it solves the problem

at the page Load create a pointer to the control for example

Dim btnAs Button =CType(Accordion1.Panes(0).FindControl("btnQuickSearch"), Button)

Where btnQuickSearch is the id of the button

Good Luck


This seems like a common problem.

The example above works for an accordion with only one pane. However, if I do the same to try and initialize controls in the second, or third pane it doesn't work. I can reference the controls in my code, however I still have to click a button twice to fire the event.

Does anyone have any thoughts on how to avoid this? Or, can I catch the accordion transition event (if there is one) and then initialize my controls for that pane in that event?

This one has me stumped.


I'm having almost the exact same issue. I am creating what is essentially a datagrid-accordion where each line of the control is an accordion panel. I managed to get sorting and paging to work, but they are outside the actual accordion control. I can't make the controls inside the accordion pane to trigger their appropriate event. At one point I was able to have them fire on the second click, but after adding a command name and command argument to the buttons, they don't do that anymore.

I would also like to be able to have a 'cancel' button that closes the panel, but nothing is working. The cancel button could be done with javascript, but no one seems to know how to do this. Are there no solutions to these problems? I don't want to have to make with a complicated work around where I have to create the buttons inside the accordions data bind event... its way more hassle than its worth.

Thanks


Yup I'm where you're at as well. It's a little silly that just getting buttons to work in an accordion can be so complex haha.

I have gotten buttons to work, but only when I manually create the accordionpanes and do the oninit() trick. That's not we want of course, there must be a way to wire up a databound accordion to get control events to fire. I don't know how to tap into an accordionpane's oninit function when they are created through databinding though, does anyone have a solution?

- Calvin


So far the best I can do is get the double click effect on a databound accordion. Add a empty panel and set its visibility to false, and you get the problems noted herehttp://forums.asp.net/t/1017782.aspx. But the fixes they talked about don't seem to work for the databound panels.

If I get any farther with a work around I will let you all know.


Ok, so what I came up with was to actually change the source code. Its not a lot to change, but its not 100% perfect.

Also, I can't take credit for this, because I gathered the combined changes required from various sources, but here it is:

TheAccordion Class needs to be changed from aWebControl to aCompositeControl.

source:here

And both theAccordion Class and theAccordion Panel Class need to use theINamingContainer.

source:here

Here is an example of the change:

was:public class Accordion : WebControl

is now:public class Accordion : CompositeControl, INamingContainer

Hope this helps some people.


I made the change but now clicking buttons makes the entire accordion disappear. I'm not positive it's due to changing the base to compositecontrol though, because I was fiddling with a ton of other stuff before I caught your post. It's way too late in my project to try to keep messing around with the control however, so it's back to old school repeaters for me.


CalZ:

I made the change but now clicking buttons makes the entire accordion disappear. I'm not positive it's due to changing the base to compositecontrol though, because I was fiddling with a ton of other stuff before I caught your post. It's way too late in my project to try to keep messing around with the control however, so it's back to old school repeaters for me.

I had that issue as well... where are you doing the databind?


I'm binding it in the markup:

<cc1:Accordion ID="AccordionResults" runat="server" DataSourceID="SqlDataSourceResults" SelectedIndex="-1" RequireOpenedPane="false" FadeTransitions="true" OnItemCreated="InitPanes" HeaderCssClass="accordionHeader" HeaderSelectedCssClass="accordionHeaderSelected" ContentCssClass="accordionContent" Width="800px">

And onItemCreated calls:

Protected Sub InitPanes(ByVal sender As Object, ByVal e As AjaxControlToolkit.AccordionItemEventArgs)

Dim myAccordionPane As AjaxControlToolkit.AccordionContentPanel = CType(e.AccordionItem, AjaxControlToolkit.AccordionContentPanel)
Dim workAroundLabel As New Label
workAroundLabel.Visible = False
myAccordionPane.Controls.Add(workAroundLabel)

End Sub


Well, before I make any suggestions, realize I am not an expert at this by any measure. But when I experienced the same symptoms, it was because I was Adding controls before I was binding the data (so adding controls to an accordion with no panes), or at least thats what I thought.

Looking at you're code, my only suggestion is that you remove the work around label and give it one last try.

Sorry I cant be of more help.

Control dont work

I have a form with some fields inside a UpdatePanel. And I also have some panels that I'm using as modal panels (just like in the Atlas Control Toolkit examples).

Thats the modal code:

1 <atlasToolkit:ModalPopupExtender ID="ModalPopupExtender" runat="server">
2 <atlasToolkit:ModalPopupProperties TargetControlID="btnGravar" PopupControlID="pnlContPag" BackgroundCssClass="modalBackground" DropShadow="true" CancelControlID="btContpagCancela"/>
3 <atlasToolkit:ModalPopupProperties TargetControlID="btnDeletar" PopupControlID="pnlDelete" BackgroundCssClass="modalBackground" DropShadow="true" OkControlID="btnDelSim" CancelControlID="btnDelNao"/>
4 </atlasToolkit:ModalPopupExtender>

My Problem is: When I try the modals when the fields are empty, the buttons works. But when I load data from the database into the fields, the modal works, but the buttons inside its panels dont!!!

I'm almost getting insane!!

Could anybody help me ?Here is it.
I have a panel called pnlDelete, which have 2 buttons. One of them kills the record, the other does nothing.
The problem is: The buttons do not work!

1<%@. Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>23<%@. Register Assembly="AtlasControlToolkit" Namespace="AtlasControlToolkit" TagPrefix="atlasToolkit" %>45<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">67<html xmlns="http://www.w3.org/1999/xhtml" >8<head runat="server">9 <title>Transufos::Servi?os de Oficina</title>10 <style>11 .modalBackground {12 background-color:Gray;13 filter:alpha(opacity=50);14 opacity:0.5;15 }16 .modalPopup {17 background-color:#ffffdd;18 border-width:3px;19 border-style:solid;20 border-color:Gray;21 padding:3px;22 }23 </style>24</head>25<body>26<form id="form1" runat="server">27 <asp:Label ID="Label1" runat="server" Font-Bold="True" Font-Size="XX-Large" ForeColor="Blue"28 Style="z-index: 108; left: 8px; top: 477px" Width="336px">Servi?os de Oficina</asp:Label><br />2930 <atlas:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" />31323334 <atlas:UpdateProgress ID="UpdateProgress1" runat="server">35 <ProgressTemplate>36 <asp:Panel ID="Panel1" runat="server" Height="55px" Width="173px" BackColor="LightYellow" style="z-index: 999; left: 248px; position: absolute; top: 285px" BorderStyle="Solid" BorderWidth="2px" BorderColor="DarkRed">37 <asp:Image ID="Image2" runat="server" ImageUrl="~/animated_loading.gif" Style="z-index: 100;38 left: 23px; position: absolute; top: 22px" />39 <br />40 <strong>41              42 Carregando ... </strong>43 </asp:Panel>44 </ProgressTemplate>45 </atlas:UpdateProgress>464748 <atlas:UpdatePanel runat="server" ID="UpdatePanel1" Mode="Conditional">4950 <ContentTemplate>5152 <br />53 <br />5455 <asp:Label ID="lblMessage" runat="server" ForeColor="Red" Style="left: 24px; top: 970px"56 Width="708px" Height="37px"></asp:Label><br />57585960 <div style="display:none">61 <asp:Panel ID="pnlDelete" runat="server" BackColor="Salmon" BorderColor="Red" BorderStyle="Solid"62 BorderWidth="2px" Height="80px" Style="z-index: 112; left: 780px; position: absolute;63 top: 444px" Width="328px">64 <p align="center">65 <strong><font color="#000000">Este registro será EXCLUíDO. Tem certeza?</font></strong></p>66 <p align="center">67 <asp:Button ID="btnDelSim" runat="server" BackColor="White" CausesValidation="False"68 Font-Bold="True" ForeColor="Red" OnClick="btnDelSim_Click" Text="Sim" BorderStyle="Outset" />69               70 <asp:Button ID="btnDelNao" runat="server" BackColor="White" CausesValidation="False"71 Font-Bold="True" ForeColor="Red" OnClick="btnDelNao_Click" Text="N?o" /></p>72 </asp:Panel>73 </div>838485<!-- Modais //-->86 <atlasToolkit:ModalPopupExtender ID="ModalPopupExtender" runat="server">87 <atlasToolkit:ModalPopupProperties TargetControlID="btnGravar" PopupControlID="pnlContPag" BackgroundCssClass="modalBackground" DropShadow="true" CancelControlID="btContpagCancela"/>88 <atlasToolkit:ModalPopupProperties TargetControlID="btnDeletar" PopupControlID="pnlDelete" BackgroundCssClass="modalBackground" DropShadow="true" OkControlID="btnDelSim" CancelControlID="btnDelNao" />89 </atlasToolkit:ModalPopupExtender>90<!-- Fim dos modais //-->9192939495 <asp:LinkButton ID="btnConsultar" runat="server" BackColor="Transparent" CausesValidation="False"96 Font-Bold="True" ForeColor="Black" OnClick="btnConsultar_Click" Style="left: 750px;97 position: absolute; top: 138px">Consultar</asp:LinkButton>98 <asp:LinkButton ID="btnGravar" runat="server" BackColor="Transparent" Font-Bold="True"99 ForeColor="Black" OnClick="btnGravar_Click" Style="left: 758px; position: absolute;100 top: 212px" TabIndex="34" Width="45px">Gravar</asp:LinkButton>101 <asp:LinkButton ID="btnDeletar" runat="server" BackColor="Transparent" CausesValidation="False"102 Font-Bold="True" ForeColor="Black" OnClick="btnDeletar_Click" Style="left: 758px;103 position: absolute; top: 286px">Deletar</asp:LinkButton>104  105 </ContentTemplate>106107108 </atlas:UpdatePanel>109110</form>111</body>112</html>

thankx
Please post a complete page that demonstrates the problem as simply as possible - we'll look into it.
I'm afraid your sample doesn't completely work for me. "pnlContPag" isn't present, so only one of the two ModalPopups can work. pnlDelete is wrapped in "<div style="display:none">" so it's never visible. Removing that display:none wrapper lets me see the delete panel and it seems that hitting either button in it works. Recall that the controls specified by ModalPopup's OkControlID/CancelControlID don't postback anymore, but instead run whatever code's been specified by OnOkScript/OkCancelScript. Might this be the issue?
Yeah, your are right, I have ommited some lines :)
It was really huge!!!!!!

But I'm having the same problem with the 'pnlContPag' and the 'pnlDelete'

hmmm...
It haven't worked.
The greatest problem is that I'm losing the reference to the code-behind events when using the modal panel. I need them to postback so I can delete (in the case of the pnlDelete...) the current record. I already have the functions on the .cs file with the code to delete the record.

HELP MEEEE!

Thanks again for the help!

Jeff
If you want a control in the ModalPopup to postback, don't hook it up as an Ok/Cancel button. It should postback normally and the act of posting back will dismiss the ModalPopup.

Control cpe_ClientState0 of type HiddenField must be placed inside a form tag with runat=s

What should i do ?

Hi,

is that control added dynamically? If so, drop a PlaceHolder control in the page and then add the control to that PlaceHolder.

control cannot be created because Visual Studio Cannot find the Controls type in the Contr

Hi Friends, I have installed Visual Studion 2005 on my machine. After creating an AJAX FutureRelese Web project. I tried to add Future Release Controls to my web page. I am getting the following error "control cannot be created because Visual Studio Cannot find the Controls type in the Control Assembly" Could you please get back to me with the solution for this. Thanks and Regards, Baburaj P V

Pls make sure you have System.Web.Extensions referenced. If Not Add it from the Reference Dialog, it is insalled in the GAC. If you also have the previous version then you have to modify the web.config.


It would be greatful, if I could know how to modify the Web.Conf. I have installed ASPDOTNETFutureRelease on Dot Net Fwk 2.0

Best Regards,

Babz


Try adding another entry for System.web.extensions for AJAX controls and prefix it in the control creation in web forms

control cannot be created because visual studio cannot find the controls type in the contr

Just installed Ajax extensions and ajax control toolkit for Vs2005.All fine.

I can drag drop update panel or script manager.

But if I do so with ajax toolkit controls I get a a error as : "control cannot be created because visual studio cannot find the control's type in the control assembly".

I have downloaded and worked with the toolkit at my home comp and it works all fine. But here at my work its giving me this problem.

I googled up to see any solutions but dint find much help!!

So any help with this would be appreciated!! Thanks!!


Hey guys!!

Anyone for the solution??


Did you remember to register it in the GAC? On your work PC, it may not have done that automagically.


Hey thanks for that.

It did work out.

Strange I have added toolkit on couple of PC's and never saw this error.

Just added the Dll to Gac and the problem is solved on my box.

Thanks.

Continuing problem - "Access is denied" client error

I have struggled with this problem for a couple of months now with no solution yet.

I am migrating an existing web site to a newer user-friendly web using AJAX and the AJAX Toolkit controls. I am using a couple of the tab controls on a couple of pages, including the default page. I am using VB 2005 along with SQL Server 2005. The production server is running IIS 5.1 (and yes, I have installed AJAX and the toolkit on it and yes, the dll files are in the bin directory).

Everything works fine on the development machine, but after copying the files to the production server and then viewing the site in IE (6 or 7) on any machine, there are "Access is Denied" errors when trying to use one of the tab controls.

I have searched the internet and did come across and article about this error, but it pertains to using IFRAME and I am not using any. I have uninstalled and reinstalled IIS on the production server, I have uninstalled and reinstalled both AJAX and the toolkit.

I am at a loss - is there anything that I am overlooking? I would like to have this newer website up and running by June 1, however if there is still these errors, I will have to revert back to the older non-AJAX enabled site.

Thanks for any information.

Anybody?

Here is a thought too and I don't know if this has anything to do with it, but my site is run locally at home using a static IP address. The URL is registered through Yahoo Small Business.

Would that have anything to do with it for any reason?


And to add to it, the error points tohttp://<the ip address>/thewebpage

ContextMenus from PopupExntender without the xml script?

Hello,

A while back I figured out a way to implement "context menus" on top of the built-in Asp:menu control and documented that here:

http://apps.ultravioletconsulting.com/misc/ContextMenus.aspx

This approach uses a hyrbid server/client data-binding technique, but this approach still relied on rendering menu data from the server and relying on the messy HTML table that were output. I was able to drastically reduce the amount of data / javascript passed to the client to that point that it was nothing more than an array embedded in a click handler:

<table style="border:1px solid green"border="0"cellpadding="0"cellspacing="0">

<tr valign="top">
<td>
1: $5 <button value="Do it Now!">Do it Now!</button>
</td>
<td class="MenuCell"
onclick="ContextMenu_Place(event,'Menu1', [1,5])"></td
</tr>
</table>

I tried to use the PopupControl Extender instead to popup a more static block ot HTML / div tags, and it worked fine, except it generates a gigantic amount of XMLScript for each instance. I really need to do nothing more than pass the data values and the location on the screen where the popup should occur. I don't need all the extra Behavior tags, etc.


Any ideas?

Thanks,

Josh

Hi Josh,

The latest release (60914 on 9/15) updated a number of controls to use functionality similar to DynamicPopupate. PopupControl, and others, now have a DynamicContextKey property that may do exactly what you need.

Thanks,
Ted

Thanks Ted,

I ended up writing my own simple ContextMenu_Place function that calls a client-side template/data-binding function to handle this functionality. I am still having one problem though with __doPostBack

Is it possible to manually specify the second parameter in a __doPostBack handler?

I have this code:
<asp:LinkButton runat="server" ID="actTestServerSide"
Text="Test of Server Side Link Button"
CommandName="Action"
CommandArgument="$1"
/>
The rendered code looks like this:

BLOCKEDSCRIPT__doPostBack('ctl00$ctl00$ctlPagePlaceHolder$MyAccountContentPlaceHolder$ctlWonView$actTestServerSide','')

That second parameter is empty though!

Ineed to be able to have code on the _client side_ replace the $1 with avalue of my choice before the actual link gets submitted. The reasonfor this is that I have a GridView with 100 items in it, and I passdown one static block of HTML code as a client-side template for acontext menu that operates on the line item of each GridViewRowinstance. I then have a click handler which does something like:

onclick="ContextMenu_Place(event,'ctlPathGoesHere$blah$blah$blah','ctl00Path$blah$blah',[],['189884','44394743']);
TheContextMenu_Place function copies the template code and then uses thevalues of the second array to replace the placeholders. The firstarray, empty here, specifies the css class name of rows in the menuthat need to be grayed out.

The static block looks like this when rendered to the client side:

 <table id="blah_blah_Container"border="0"cellpadding="0"cellspacing="0"class="ActionsContextMenuContainer">
<tr valign="top">
<td>
<div id="blah$blah">
<div class="actContact"><a title="Contact"href="/Contact.aspx?Item=$1">Contact</a></div>
<div class="actPay"><a title="Pay"href="/Pay.aspx?Item=$1">Pay</a></div>
<div class="actTestServerSide">
<a id="blah$blah$blah"
href="BLOCKED SCRIPT__doPostBack('$blah$blah$blah','')">Test of Server Side Link Button</a>
</div>
</div>
 </td>
</tr>
</table
In the first two cases, the links are to external pages, not POSTBACKS. But in the last case, the action should be POSTBACK, so I need that last line to read:

href="BLOCKED SCRIPT__doPostBack('$blah$blah$blah','$1')">Test of Server Side Link Button</a
This will enable me to use my client side templating function to replace the argument with the actual line item ID.

But, I can't figure out how to get that second parameter of __doPostBack to be non-blank.

Is this feasible? I suppose I could manually replace instances of '') but that seems like a major hack if I can instead get my $1 in there properly.

 
Thanks,
Josh 



Hi Josh,

I'm definitely not an expert on__doPostBack (for that you should probably ask this in thegeneral ASP.NET forums). The only way I know of accessing the optional second event arg is by implementingSystem.Web.UI.IPostBackEventHandler.

Also - Davidblogged about how to get this scenario working withModalPopup and some of the new Toolkit features if you were interested.

Thanks,
Ted

Ted, thank you,

I was able to make a neat little control to accomplish this.


I created one control named ContextMenu inheriting from ASP:Menu.

This allowed me to use <asp:MenuItem> instances instead of hard coding the HTML like I had above.

Next, I overrode the CreateChildControls method to create essentially that same blob of HTML above instead of letting the built in behavior render the HTML.

I added an ASP:Button and an ASP:HiddenField and wrapped them in a DIV with display:none.

Added a Command event to the ContextMenu class of type CommandEventHandler.

Next I made it a convention that if the Target property of the menuItem was set to "POSTBACK", then I would use the Page.ClientScript.GetEventReference(object, argument, registerForEventValidation) method. This actually creates the call to __doPostBack. So, I specified my hidden ASP:Button as the target. In the Value property of the asp:MenuItem, I made it so that "actSomeCommand|$0" would mean that actSomeCommand would be the CommandName, while $0 would be passed down to the client side to allow for the client-side data-binding.

In the href for the anchor tag, I prefixed the call to __doPostBack with a call to document.getElementById('id_of_the_hidden_field_here').value = '$0'. So this allowed my line-item data to be populated just in time for the pop up.

Within a private Command handler for the actual Asp:Button, I read the value of the hidden field -- because I still could not get the real argument to get passed-- then created my own CommandEventArsg and fired that event up to the calling client code.

The end result lets me do this:

<auc:ContextMenu ID="ctlContextMenu" runat="server">
<Items>
<asp:MenuItem
Value="actBuyNow"
ToolTip="Buy this item now!"
Text="Buy Now!"
NavigateUrl="~/Site/ViewItem.aspx?Item=$0#BuyItem"
Target="__self"
/>
<asp:MenuItem
Value="actBid"
ToolTip="Bid on this item"
Text="Bid"
NavigateUrl="~/Site/ViewItem.aspx?Item=$0#PlaceBid"
Target="__self"
/>
</Items>
</auc:ContextMenu
And in my GridView:

<asp:TemplateField HeaderText="Actions" HeaderStyle-CssClass="TextCentered" ItemStyle-CssClass="GridItemActions">
<ItemTemplate>
<auc:ContextMenuPopup
runat="server"
ContentControlContainerID="<%# ctlContextMenu.ClientID %>"
ContentControlID="<%# ctlContextMenu.ContentControlID %>"
id="ctlContextMenuPopup"
/>
</ItemTemplate>
</asp:TemplateField>

-- Note, I'm not so sure I really need both a ContentControlContainerID and ContentControlID on second thought. I could have just had a private convention with my javascript for fetching the actual menu item Divs out of the container, but this works...

Finally, in my code behind:

First, wire up the event handler on the ContextMenu:

ctlContextMenu.Command +=
new CommandEventHandler(ctlContextMenu_Command);

Later, during data binding of my GridView:

ContextMenuPopup menu = e.Row.FindControl("ctlContextMenuPopup")
as ContextMenuPopup;
if (null != menu)
{
menu.DataBind();
}

if (null != menu)
{
string[] lineItemData = new string[2];
lineItemData[0] = item.ItemID.ToString();
lineItemData[1] = item.SellerUserID.ToString();

List<string> hiddenItemIds = new List<string>();

if (0 == item.IsActive())
{
hiddenItemIds.AddRange(new string[] { "actBuyNow", "actBid" });
}

menu.CompleteContextMenu(hiddenItemIds.ToArray(), lineItemData);
}

This call to CompleteContextMenu generates the necessary javascript handler to be added to the container level. It also specifies, depending on the state of the item, which items of the menu should be disabled upon popup.

Last but not least,

protected void ctlContextMenu_Command(object sender, CommandEventArgs e)
{
string action = e.CommandName;
string data = e.CommandArgument as string;

AddFeedback(string.Format("Received command: {0} with argument {1}", action, data));
}

On the client side:

<div class="ContextMenuContainer">
<span id="ctl00_ctl00_ctlPagePlaceHolder_ctlMyView_ctlItems_ctl02_ctlContextMenuPopup_ctlActionsContextMenuLink"
onclick="ContextMenu_Place(event,'ctl00_ctl00_ctlPagePlaceHolder_ctlMyView_ctlContextMenu',
'ctl00_ctl00_ctlPagePlaceHolder_ctlMyView_ctlContextMenu_ctlContextMenuContent',
[],
['189884','44394743'],
this,
);">
Select <img src="../../Controls/ContextMenu_Resources/dwn.gif"align="absmiddle"style="height:27px;width:30px;border-width:0px;"/>
</span>
</div>

Looking back, it was quite a challenge to get this thing working! But, it was fun to write and worth it...

Josh

ContextKey not working in AutoCompleteExtender

My project works fine if I do not useContextKey at all.

If I remove ContextKey from VB code and removeUseContextKey,ContextKey fromHTML it works fine.

Here's my VB code and HTML declaration

Pl let me know what I need to do to make it work.

TIA

------------------

PublicFunction GetCompletionList(ByVal prefixTextAsString,ByVal countAsInteger,ByVal ContextKeyAsString)AsString()

------------------

<cc2:AutoCompleteExtenderID="AutoCompleteExtender1"runat="server"

TargetControlID="txtFirstName"ServicePath="AutoComplete.asmx"

ServiceMethod="GetCompletionList"UseContextKey="true"ContextKey="First_Name"MinimumPrefixLength="1"

CompletionInterval="1000"EnableCaching="true"CompletionSetCount="12">

</cc2:AutoCompleteExtender>

What does not work if you use the context key? Does it not return any results? Does it not use the context key? Do you get a javascript error? Have you taken a look at the usage of ContextKey in the Toolkit solution. You should find some under the ToolkitTests project or if you download the code from the Development tree then under Testing.Client project.


Hi MP11,

If you do some modifications on your web.config, we suggest that you should save the web.config without any changes to avoid the cache issues before your debug it. If it doesn't work, please add breakpoints to your webservice to debug it step-by-step.

I hope this help.

Best regards,

Jonathan


Kirti

If I drop ", ByVal ContextKey As String" from web service VB code and drop the "UseContextKey="true" ContextKey="First_Name"" from HTML, AutoCompleteExtender works just fine.

Jonathan,

I have a break point in VB code but it does not break when I use contextkey. It breaks if I do not use ContextKey.

Mahesh


PS I did not make it very clear about what I want to do. I want to call the same web service method for two different textboxes viz. txtFirstName and txtLastName. I want to pass a parameter value txtFirstName or txtLastName via ContextKey.


Hi MP11,

mp11:

PublicFunction GetCompletionList(ByVal prefixTextAsString,ByVal countAsInteger,ByVal ContextKeyAsString)AsString()

Please useByValcontextKeyAsString)AsString() instead ofContextKey. It is recommended that you should save your web.config without any modifications before you debug it if you have done some changes to the WebService.

I hope this help.

Best regards,

Jonathan


Jonathan,

I'm back after a brief vacation.

Your suggestion about contextKey worked.

Thanks a lot.

ContextKey is not a valid attribute of AutoCompleteExtender

So we need to use the ContextKey (and, by extension, UseContextKey) property with our project but it doesn't seem to in the actual control even though I've seen form posts in which people speak of using it. I also can't find any reference to the ContextKey being mothballed anywhere.

What gives? Where's thebeef ContextKey?

Hi,

Do you have the latest version of the Toolkit? Those properties were added pretty recently.

Thanks,
Ted


Yeah, that was the first thing I checked...

Hi,

I'm using 1.0.10618. And I can see Contextkey property is there.

Context.Cache not available intermittently using UpdatePanel

I store some settings used by my application in the Context.Cache. When I postback using an UpdatePanel, sometimes it is available and other times it is simply Nothing as if it doesn't exist. There seems to be no consistent pattern and the code has not changed. It just works sometimes and other times it does not.

Is this a known issue with the ASP.NET Ajax team or is there something I am not aware of that needs to be set or configured to support getting the Context.Cache properly?

Thanks for any help or insight.

Regards,

Don

Hi,

The cache returned by the Context object is actually a static object shared by the whole application. It's not likely to be null.

I suspect that the NullReferenceException is thrown by the Context object, please try using HttpRuntime.Cache to access it rather than Context.Cache.


Another possibility is that the cache is expired.Please trying specifying disableExpiration="true" [ http://msdn2.microsoft.com/en-us/library/ms228248.aspx ].

Hi Raymond - Thanks for the reply and the help. Unfortunately, using the HttpRuntime.Cache instead of Context.Cache produces the same intermittent results. I am convinced this is a problem with ASP.NET Ajax v1.0. I have used the Cache functionality for some time on other projects and have never had an issue like this. Also, this is not a timeout error as I am testing immediately after I fire up the application and as I said, sometimes it works and then for no reason on an Ajax partial page postback it will fail and nothing will be there.

My solution for this is to rely on the Session and so far I have had no issues with that.

Thanks again for your help and if you have any other suggestions, or would like me to post my code, let me know. Thanks!

Don


Hi Don,

Please show me a small, self-sufficient sample.

Thanks.


Hi Raymond - Below are the basic steps I go through:

In my Global.asax:

----------------------------------------------------------

Sub Session_Start(ByVal senderAsObject,ByVal eAs EventArgs)
HttpRuntime.Cache.Insert("MCSApplicationSettings", ApplicationSettingsLoader.GetApplicationSettings(ConfigurationManager.AppSettings("MCSApplicationSettingsURL")))

EndSub

----------------------------------------------------------

This gets populated for each session that fires up.

In my ASPX Page:

----------------------------------------------------------

Private applicationSettingsAs Hashtable =Nothing

PrivateSub Page_Init(ByVal senderAsObject,ByVal eAs System.EventArgs)HandlesMe.Init

_applicationSettings = CType(HttpRuntime.Cache.Get("MCSApplicationSettings"), Hashtable)

EndSub

----------------------------------------------------------

Everything works fine until I do a partial postback and try to access the Cache. Sometimes it is there and sometimes it is not.

Thanks,

Don

context parameter in pagemethods

The context parameter in pagemethods is being lost

Here is what I do

var contextArray = new Array(2)

PageMethods.DoSomeMethod(param1,param2,param3,OnSucceeded, null,null,null,contextArray)

function OnSucceeded(result, response, context)

the context array shows ASPX_defult_DoSomeMethod

Why is it not returning the contextArray that I passed?Angry

So I checked the internals of PageMethods using debug.traceDump and I can see that after calling PageMethods.SomeMethod the _usercontext variable does not get set

Infact I have to set it using PageMethods.set_defaultUserContext

Am I missing a library or are the parameters for PageMethods.DoSomething not correct !!!

Please AdviceConfused

Context menus, Ajax and repeaters

I have been looking and looking for a context menu that can be applied to an asp:XXX object within a repeater. My problem with a lot of the context menus out there is they do not allow me to specify databind values to the menu items based on what row inside the repeater was right clicked. My needs are this: the elements inside the context menu must execute a function in the cs file. The menu must pass values from the element that was right-clicked such as name, ID etc. and it "should" be quick.

I have gotten hover menus working atm but they drag the system down if the repeater has a large dataset returned.

Hi,

I fail to reproduce the issue. Can you show me your code?


Hi, ongjt

We are changing the issue state to "No status" because you have not followed up with the necessary information. If you have more time to look at the issue and provide more information, please feel free to change the issue state back to "Not Resolved". If the issue is resolved, we will appreciate it if you can share the solution so that the answer can be found and used by other community members having similar questions.

Thank you!

Context

Hi,
how can I have something like a context for the requests that is available in the callback and timeout handler? I think sometimes it is very important to have such a context to have one handler for several different requests.
CIAO
Michael

It's already there, look at the webRequest and webResponse classes.

Can you please give me a URL where I can find more for webRequest/webResponse?

CIAO
Michael


There is unfortunately no documentation for the client-side classes for the moment. We're working on it. For the moment, you can look at the signatures of the constructors and methods in the javascript files. I know it's a little hard as they've been formatted to save space.
Hi,
ok, I got it. It is not supported by default, but I can re-write the generated code to add this feature. For more details see:http://weblogs.asp.net/mschwarz/
CIAO
Michael

ContentPlaceHolder Updating control in another ContentPlaceHolder

I have a nestled masterpage with two ContentPlaceHolders, can anyone point me in the direction for some information on using passing an Event raised in one ContentPlaceHolder into another ContentPlaceHolder.

Problem solved

ContentPlaceHolderID$ControlID

<code><asp:AsyncPostBackTriggerControlID="ContentPlaceHolder1$Button1"/></code>

Content Place Holder containing accordion control

Hi

I'm new'ish to ASP (AJAX) and was trying to create a web site. Most has gone fine but I have a Master page with a content Place Holder on it.

I tried to put an accordion control on (between content tags) and it told me I needed a Script Manager which I did put on. Even with no other controls / code I get errors about 'sys' is undefined from IE with line numbers etc.

It seems to be from the following lines in source

//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$ContentPlaceHolder1$ScriptManager1', document.getElementById('aspnetForm'));
Sys.WebForms.PageRequestManager.getInstance()._updateControls([], [], [], 90);
//]]>

Has anyone managed to get Accordion working with Content Place Holder and if so what am I doing wrong. I can get it workig with just a default.aspx type page.

thanks

Trev

The sample website uses a master page. So the accordiondemo shows the usage of the control inside a content placeholder. Check it out the accordion.aspx demo page code for more details. You can download the code for the toolkit which includes the sample website from thecodeplex site.

Thanks

I rebuilt the default.aspx file and it seemed to cure the problem. Now I just have the problem of Contant place holder not sizing correctly

thanks again

Content Page Works, Master Page does not

I have a strange problem with Master Pages and Atlas. I have gone through several posts on this forum and I gathered that people were/are having problems with getting their UpdatePanels to work in the content pages. My problem is actually different and strange. My Atlas stuff works. It is my non-atlas stuff that stops working.

Here's some pseudo code (obvious code omitted for clarity)

Here's the Master

... html header stuff omitted

<body> <form id="form1" runat="server"> <atlas:ScriptManager ID="ScriptManager1" EnablePartialRendering="true" runat="server" /> <div> <pc:PortalHeader id="PortalHeader1" runat="server"> </pc:PortalHeader> <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"> </asp:ContentPlaceHolder> </div> </form></body>

Here's the Content page

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> <div> <atlas:UpdatePanel ID="UpdatePanel1" runat="server" Mode="conditional"> <ContentTemplate> <asp:GridView ID="SamplingThresholdsGridView" runat="server" AutoGenerateColumns="False" AutoGenerateEditButton="True" DataKeyNames="Id,SamplingName" DataSourceID="SamplingThresholdsDataSource" Style="z-index: 100; left: 20px; position: relative" CssClass="Grid" AlternatingRowStyle-CssClass="GridOddRow" Width="686px"> <Columns> <asp:BoundField DataField="Id" HeaderText="Id" SortExpression="Id" Visible="False" /> <asp:BoundField DataField="SamplingName" HeaderText="Sampling Name" ReadOnly="True" SortExpression="SamplingName" /> <asp:BoundField DataField="SamplingValue" HeaderText="Sampling Value" SortExpression="SamplingValue" /> <asp:BoundField DataField="UpdateBy" HeaderText="Updated By" ReadOnly="True" SortExpression="UpdatedBy" /> <asp:BoundField DataField="UpdateDt" HeaderText="Updated Dt" ReadOnly="True" SortExpression="UpdatedDt" /> </Columns> <AlternatingRowStyle CssClass="GridOddRow" /> </asp:GridView> </ContentTemplate> </atlas:UpdatePanel> </div>

... data source omitted

</asp:Content>

Notice that my Master has a header served by a user control "PortalHeader". That's why I have Master Pages for in the first place. Needless to say, my content page refers to the

Master page (not shown). Everything was working fine. My script manager was in my "old" plain page. Then I created a master page and my "old" plain page became my Content

Page. I moved the script manager to the master page based on a lot of posts on this forum. Not that it makes a difference where I put it. Things "work", but not as I want them to be.

When I hit "Edit" on my data grid, the "header" served by PortalHeader in my master page dissappears !!! Other than that, the UpdatePanel works perfectly. I never get the header

unless I reload the page. It does not matter whether I "Update" or "Cancel" my "Edit". When I view the html source in the browser, every time I see my header HTML, but it stops

getting rendered.

In conclusion, UpdatePanel is working as expected EXCEPT that my Master Page is broke. I simply remove the UpdatePanel/ContentPane tags around my grid view and my header

is back! But then I cannot use Ajax!.

I'm at the point where I'm thinking of putting my "PortalHeader" control in each content page. But then I don't need Master Pages at all.

Help !!!

Hard to tell without seeing all the code. But, how about just putting an UpdatePanel around the PortalHeader control? I could imagine a scenario where the default visibility of a DOM element that the PortalHeader is rendered to is "hidden" by default but is set to "visible" by some other page control on page load but not during asynchronous postbacks (postback from an UpdatePanel). So check the style of the PortalHeader. Are there UpdatePanels inside the PortalHeader?

Content Page Problem

Hi;

I have a masterpage with a script manager and a collapse panel.

It works fine but the Content page I created containing an update panel for a grid just ignores the atlas updatepanel.

If I remove the association with the master page and add a script manger the updatepanel works fine.

I can't seem to find the problem, can anyone give me some guidance on this problem?

Thanks

Without much to go on, I'd guess that you might need to use aScriptManagerProxy.


I tried a script manager proxy it didn't help, but I was unsure of what needed to be set also I am only using the basic implementation of the updatepanel and not using any additional scripts. It seems that the master isn't communicating properly with the content page.

Here is the part of the master with the scriptmanager:

<%@.MasterLanguage="VB"CodeFile="HypnosMasterPage.master.vb"Inherits="HypnosMasterPage" %>

<%@.RegisterAssembly="AtlasControlToolkit"Namespace="AtlasControlToolkit"TagPrefix="cc1" %>

<!DOCTYPEhtmlPUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<htmlxmlns="http://www.w3.org/1999/xhtml">

<headrunat="server">

<title>Untitled Page</title>

<atlas:ScriptManagerID="ScriptManager1"runat="server"></atlas:ScriptManager>

</head>

<body>

<formid="form1"runat="server">

Here is the pertinent part of contentpage: Also it is in a subfolder one level below the location of the master page

<%@.PageLanguage="VB"MasterPageFile="~/HypnosMasterPage.master"AutoEventWireup="false"CodeFile="UserLookup.aspx.cs"Inherits="UserLookup"Title="UserLookup" %>

<%@.RegisterAssembly="AtlasControlToolkit"Namespace="AtlasControlToolkit"TagPrefix="atlasToolkit" %>

<asp:ContentID="Content1"ContentPlaceHolderID="ContentPlaceHolder1"Runat="Server">

<atlas:UpdatePanelID="UpdatePanel1"runat="server"Mode="Conditional">

<ContentTemplate>

<asp:GridViewrunat="server"ID="grid"></asp:GridView>

</ContentTemplate>

<Triggers>

<atlas:ControlEventTriggerControlID="btnGo"EventName="Click"/>

<atlas:ControlEventTriggerControlID="txtPatientSearch"EventName="TextChanged"/>

</Triggers>

</atlas:UpdatePanel>

Any thoughts?

Len


When I looked at the html again I found my own problem missing enable attribute, sorry to take up your time thanks for the tips.

Len

Content Page based on master page accordion pain

Hey all,

I have a content page that is based on a master page. I am trying to use an accordion control on it and am getting no where.

If I cut and paste the accordion code from my master page derived content page and put it in a NON-master page derived page. It works great.

What am I missing? By the way, I am not using a script proxy because I don't have a script manager on the master page. Don't know if that matters, but ... Below is the code.

Thanks ... Ed

<%@dotnet.itags.org.PageLanguage="VB"MasterPageFile="~/MasterPage.master"AutoEventWireup="false"CodeFile="ExpenseSpreader.aspx.vb"Inherits="Admin_ExpenseSpreader"title="Envision Accounting - Expense Spreader" %>

<asp:ContentID="Content1"ContentPlaceHolderID="ContentPlaceHolderContent"Runat="Server">

<asp:ScriptManagerid="ScriptManager1"runat="server">

</asp:ScriptManager>

<div>

<ajaxToolkit:Accordionid="Accordion1"runat="server"FadeTransitions=TrueSelectedIndex=0

HeaderCssClass="accordionHeader"ContentCssClass="accordionContent"AutoSize=none>

<Panes>

<ajaxToolkit:AccordionPaneID="AccordionPane1"runat="server"ContentCssClass=""HeaderCssClass="">

<Header>

<ahref=""onclick="return false;"class="accordionLink">Professional Expenses</a>

</Header>

<Content>

This is Professional Expenses

</Content>

</ajaxToolkit:AccordionPane>

<ajaxToolkit:AccordionPaneID="AccordionPane2"runat="server"ContentCssClass=""HeaderCssClass="">

<Header>

<ahref=""onclick="return false;"class="accordionLink">Other Expenses</a>

</Header>

<Content>

This is Other Expenses

</Content>

</ajaxToolkit:AccordionPane>

</Panes>

</ajaxToolkit:Accordion>

</div>

</asp:Content>

More information. I was able to isolate the problems to the fact that there's a master page involved. If I take the simplest masterpage and add a content page with nothing but the simplest accordion with 2 panes, it does not work properly. If I take it off the master page and just have html, it works great.

Here is the code for both.

First as html which works, then the content page and master page which doesn't. There is no code behind code in any case.

Thanks ... Ed

<%@.PageLanguage="VB"AutoEventWireup="false"CodeFile="ExpenseSpreader.aspx.vb"Inherits="Admin_ExpenseSpreader" %>

<!DOCTYPEhtmlPUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<htmlxmlns="http://www.w3.org/1999/xhtml">

<headid="Head1"runat="server">

<title>Untitled Page</title>

</head>

<body>

<formid="form1"runat="server">

<div>

<asp:ScriptManagerid="ScriptManager1"runat="server">

</asp:ScriptManager>

<ajaxToolkit:AccordionID="Accordion1"runat="server"FadeTransitions="false"FramesPerSecond="40"TransitionDuration="250"AutoSize="None">

<Panes>

<ajaxToolkit:AccordionPaneID="p1"runat=server>

<Header>

<ahref=""onclick="return false;">Pane1</a>

</Header>

<Content>

Content 1

</Content>

</ajaxToolkit:AccordionPane>

<ajaxToolkit:AccordionPaneID="p2"runat=server>

<Header>

<ahref=""onclick="return false;">Pane 2</a>

</Header>

<Content>

Content 2

</Content>

</ajaxToolkit:AccordionPane>

</Panes>

</ajaxToolkit:Accordion>

</div>

</form>

</body>

</html>

////////////////////////////

Here it is as a content page

<%@.PageLanguage="VB"MasterPageFile="~/MasterPage.master"AutoEventWireup="false"CodeFile="ExpenseSpreader.aspx.vb"Inherits="Admin_ExpenseSpreader" %>

<asp:ContentID="Content1"ContentPlaceHolderID="ContentPlaceHolderContent"Runat="Server">

<asp:ScriptManagerid="ScriptManager1"runat="server">

</asp:ScriptManager>

<ajaxToolkit:AccordionID="Accordion1"runat="server"FadeTransitions="false"FramesPerSecond="40"TransitionDuration="250"AutoSize="None">

<Panes>

<ajaxToolkit:AccordionPaneID="p1"runat=server>

<Header>

<ahref=""onclick="return false;">Pane1</a>

</Header>

<Content>

Content 1

</Content>

</ajaxToolkit:AccordionPane>

<ajaxToolkit:AccordionPaneID="p2"runat=server>

<Header>

<ahref=""onclick="return false;">Pane 2</a>

</Header>

<Content>

Content 2

</Content>

</ajaxToolkit:AccordionPane>

</Panes>

</ajaxToolkit:Accordion>

</asp:Content>

/////////////////////////

Here is the master page.

<%@.MasterLanguage="VB"CodeFile="MasterPage.master.vb"Inherits="MasterPage" %>

<!DOCTYPEHTMLPUBLIC"-//W3C//DTD HTML 4.0 Strict//EN">

<htmlxmlns="http://www.w3.org/1999/xhtml">

<headid="Head1"runat="server">

<title>Envision Accounting</title>

<metaname="vs_defaultClientScript"content="JavaScript">

<metaname="vs_targetSchema"content="http://schemas.microsoft.com/intellisense/ie5">

</head>

<bodyid="MasterBody"runat=serverstyle="margin:0; top:0;">

<formid="form1"runat="server">

<divclass="content">

<asp:ContentPlaceHolderID="ContentPlaceHolderContent"runat="server">

</asp:ContentPlaceHolder>

</div>

</form>

</body>

</html>

Content of popup, this is a problem

It seems that content of modal popup is in same page. is there any way to load content of a poupup from a web form without iframe or dynamic user control.

Sorry for my bad inglish

If you don't want to use an iframe, you could try using ahttpWebRequest.


Hi Nima,

Based on my experience , I think the easiest way is putting an UpdatePanel inside the Popped up Panel. So when we want to show the ModalPopupExtender , we first force the UpdatePanel to be refresh and get data from the server then make the ModalPopupExtender be shown. Here is the sample.

<%@. Page Language="C#" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><script runat="server"></script><html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title>Untitled Page</title> <style> .modalBackground { background-color:Gray; filter:alpha(opacity=70); opacity:0.7; } .modalPopup { background-color:#FFD9D5; border-width:3px; border-style:solid; border-color:Gray; padding:3px; width:250px; } </style> </head><body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:Button ID="Button2" runat="server" Text="Button" Enabled="false" style="display:none"/> <asp:Panel ID="Panel1" runat="server" CssClass="modalPopup" Height="50px" Width="235px" style="display:none" DefaultButton="Button4"> <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"> <ContentTemplate><%=DateTime.Now.ToString()%> </ContentTemplate> </asp:UpdatePanel> <asp:Button ID="Button1" runat="server" Text="Cancel" /> <asp:Button ID="Button4" runat="server" Text="Button" /> </asp:Panel> <ajaxToolkit:ModalPopupExtender ID="ModalPopupExtender1" runat="server" TargetControlID="Button2" PopupControlID="Panel1" CancelControlID="Button1" DropShadow="true" BackgroundCssClass="modalBackground"> </ajaxToolkit:ModalPopupExtender> <input id="Button3" type="button" value="Click Me" onclick="showModalPopup()"/> <script type="text/javascript" language="javascript"> function showModalPopup(){ __doPostBack('<%=UpdatePanel1.UniqueID%>',''); $find("<%= this.ModalPopupExtender1.ClientID%>").show(); } </script> </form></body></html>
Another way is using WebService. We can get different content by sending the different contextKey.
I hope this helps.
Best regards,
Jonathan

Hi

Content of popup is asp.net form. if I use httpWebRequest or webservice form not work


Thanks

Content getting clipped in Firefox when Sliders are displayed

Hi,

I have a 2 column layout with a left nav and main content area implemented using a table. I have sliders in the left nav and the left nav is of a greater height than the main content area. When the sliders are dynamicallly displayed during page load, it causes the left nav to be expanded vertically. In Firefox, this expansion causes content at the bottom of the left nav to get clipped rather than the cell expanding to accommodate the new content.

I have implemented the same layout in CSS with the same result. The below example reproduces this problem although I have to press Ctrl + F5 in Firefox to get it to exhibit the problem with this example...in my real application it occurs when the page is opened.

<%@dotnet.itags.org.PageLanguage="C#"AutoEventWireup="true"CodeFile="Default2.aspx.cs"Inherits="Default2" %>

<%@dotnet.itags.org.RegisterAssembly="AtlasControlToolkit"Namespace="AtlasControlToolkit"TagPrefix="AtlasControlToolkit" %>

<!DOCTYPEhtmlPUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<htmlxmlns="http://www.w3.org/1999/xhtml">

<headrunat="server">

<title>Untitled Page</title>

</head>

<body>

<formid="form1"runat="server">

<div>

<atlas:ScriptManagerID="ScriptManager1"runat="server"EnablePartialRendering="true"/>

<tablewidth="100%"cellpadding="0"cellspacing="0">

<tr>

<tdnowrap="nowrap"bgcolor="#f4f4f4"valign="top">

<asp:PanelID="_hidePanel"runat="server"Width="250">

<asp:LabelID="_sliderValueLabel"runat="server"></asp:Label>

<asp:TextBoxID="_sliderTextBox"runat="server"Style="display: none;"></asp:TextBox>

<AtlasControlToolkit:SliderExtenderID="_slider"runat="server">

<AtlasControlToolkit:SliderPropertiesMinimum="1"Maximum="10"Steps="10"TargetControlID="_sliderTextBox"

Length="218">

</AtlasControlToolkit:SliderProperties>

</AtlasControlToolkit:SliderExtender>

<br/>

This text vanishes!!

</asp:Panel>

</td>

<tdwidth="99%"valign="top">

<atlas:UpdatePanelID="_hideUpdatePanel"runat="server">

<ContentTemplate>

<asp:LinkButtonID="_hideLink"runat="server"Text="Hide Panel"></asp:LinkButton>

<AtlasControlToolkit:CollapsiblePanelExtenderID="_hideCollapsiblePanel"runat="server">

<AtlasControlToolkit:CollapsiblePanelPropertiesTargetControlID="_hidePanel"ExpandControlID="_hideLink"

CollapseControlID="_hideLink"CollapsedText="Show Panel"ExpandDirection="Horizontal"

SuppressPostBack="true">

</AtlasControlToolkit:CollapsiblePanelProperties>

</AtlasControlToolkit:CollapsiblePanelExtender>

</ContentTemplate>

</atlas:UpdatePanel>

</td>

</tr>

</table>

</div>

</form>

</body>

</html>

Cheers,

Jason

Thanks for the repro. I've created work item 3450 to track this.

It seems that it might be a combination of the CollapsiblePanel and the Sliders that are causing this problem. The CollpasiblePanel creates a parent div to hold the content and gets the dimensions during intialisation. I am guessing that this might be happening before the sliders have initialised so that the dimensions of the wrapper div are not correct.

I noticed that when the ScrollContents attribute is set to false, the wrapper div overflow style is set to hidden in CollapsiblePanelBehaviour.js at line 456. When I change this to visible then the content is no longer clipped but the background colour of the containing table cell (see forum thread for repro) does not expand down with the expanded div content. I am not sure why the overflow is being set to hidden as I would have thought that all of the content in the panel that is being wrapped should always be visible.

This problem is still occuring in FF 2.0 although works OK in IE7.


OK...the hack of setting the overflow to visible doesn't work correctly as some of the overflowed content then overlaps with the content below instead of expanding the table cell as hoped. I removed the CollapsiblePanel, hiding the container on the server side instead, and the problem goes away so it is definitely related to the CollapsiblePanel.

Content Disappears after multiple postbacks in UpdatePanel

I have my page set up as follows. I know there is something wrong about what I'm doing, and any advice, or other solutions or a fix for this one is greatly appreciated...

Content.aspx

<script type="text/javascript">

// I have omitted alot of the javascript, but you get the idea...

// When a user clicks the context menu of an item, it calls this function passing in the value of the menu id

$('<%= MenuID.ClientID %>').value = objectID;

__doPostBack('<%= MenuID.ClientID %>','');

</script>

<divid="MenuElement">

<IMM:MenuTreeid="MenuTree_List"runat="server"/>

</div>

<divid="DetailsElement"style="float:right;">

<asp:UpdatePanelID="UpdatePanel_DetailsPanel"RenderMode="Inline"runat="server"UpdateMode="Conditional">

<Triggers>

<asp:AsyncPostBackTriggerControlID="MenuID"EventName="ValueChanged"/>

</Triggers>

<ContentTemplate>

<asp:HiddenFieldID="MenuID"runat="server"Value="0"OnValueChanged="UpdateMenuID"/>

<asp:PlaceHolderID="GeneralHolder"runat="server"></asp:PlaceHolder>

</ContentTemplate>

</asp:UpdatePanel>

</div>

Content.aspx.cs

protectedstring _MenuItemID ="0";

private System.Web.UI.Control MyControl;

protectedvoid UpdateMenuID(object sender,EventArgs e)

{

this.MyControl = LoadControl("~/Controls/PageDetails.ascx");

((Immersive.iScribe.Controls.Content)this.MyControl).MenuItemID = MenuID.Value.ToString();

GeneralHolder.Controls.Add(this.MyControl);

}

PageDetails.ascx

<asp:UpdatePanelID="UpdatePanel_Details"runat="server"UpdateMode="Conditional">

<ContentTemplate>

<asp:PanelID="Details"style="float:left;"runat="server">

<!-- Text boxes to hold the information -->

<asp:ButtonID="Details_SaveButton"Text="Save"OnClick="Details_Save"CssClass="Button"runat="server"/>

</asp:Panel>

</ContentTemplate>

</asp:UpdatePanel>

PageDetails.ascx.cs

publicstring MenuItemID

{

get {return _MenuItemID; }set { _MenuItemID =value; }

}

protectedvoid Page_Load(object sender,EventArgs e)

{

if (_MenuItemID !="0")

{

//Load the information

MenuItem_Load();

}

}

protectedvoid Details_Save(object sender,EventArgs e)

{

//Save the details

}

***********************************************************

So basically, it works fine, I can click a context item, which loads up the control with the value, and everything looks good. However, when I change the values in the user control, and click save, the page posts(using Firefox debug) but doesn't update the update panel. If I then click save again, the whole content of the updatepanel disappears.

Any ideas?? It's really frustration as my AJAX isn't that experienced, and I need this to work! :o)


Thanks in advance,
Mick

Call the Update method of the updatepanel in codebehind. Do it in every server side event where the up's content probably changing (for example: in Details_Save)


I put UpdatePanel_Details.Update(); in the codebehind of Details_Save, but nothing happens. still no update, and on the second click of save, the entire content inside that update panel disappears.

I have been thinking about it, and would this be plausible.

the context menu sets the hidden value, which then causes an update to the update panel which loads the user control. So on the main page, I have an update panel, which then loads a user control, which in itself, has a user control. what I get confused about, is if I click save, I am refreshing the user controls update panel, which shoudl work fine. My thought is that on the update, it is losing hte value of the menuID. would this be right?


THanks,

Mick


It seems that the "menuid" is not stored in viewstate/session, so every postback/asyncbostback you need to get it from the hidden field. Maybe in some case this step is missing, step by step debugging should help.


To maybe ask a silly question, where would I make that check for the hidden field on every postback/asyncpostback?


I think the problem is that

OnValueChanged="UpdateMenuID" hiddenfield event runsafterthe page (and the control) load event, so in the page load event the MenuID is still "0"
?


The course of the events and page structure is as follows:

Left Hand Div
MenuTree
End Div
Right Hand Div
Update Panel: Mode=Conditional
Hidden Field: ID=MenuID; Value = 0; OnValueChanged=UpdateMenuID
PlaceHolder
Triggers
AsyncTrigger: ControlID=MenuID; EventName=ValueChanged
End UpdatePanel
End Div

When a user clicks a context menu item, the javascript changes the value of the hidden field and calls __doPostBack('<%= MenuID.ClientID %>', '')
This then calls the UpdateMenuID function in codebehind.
In that function I then dynamically load the usercontrol into the placeholder. The user control structure is as follows:

Update Panel: Mode=Conditional
Textboxes etc
Button: onclick="Save_Data"
End UpdatePanel

The user control has a public property of MenuID
So back to my UpdateMenuID function I did the following:

Get the value of the hidden field
((MyUserControlClass).this.MyControl).MenuID = HiddenField.Value
Placeholder.Controls.Add(this.MyControl)

This works fine, it loads the control, passes the correct id, and loads the corresponding data.
The Page_Load of my user control is as follows:

protected void Page_Load(object sender, EventArgs e)
{
LoadMenuItem(_MenuID);
}

protected void Save_Data(object sender, EventArgs e)
{
Call Update method;
Update Label on user control.Text = "Saved";
}

When I click the save button, the user control posts, but the update panel is not refreshed. If I then click the button again, the whole control disappears. I have tried adding
UserControlsUpdatePanelID.Update();
but this does not work either.
There has been mention of viewstate, btu how would this tie in with that, and/or affect the control disappearing> I think more is going on here I don't understnad, perhaps in the way the the updatepanels are set up. Obviously depending on the value clicked in the context menu, would load a different control.
If I take out the parent page update panel and just run the user control, it works fine.

Thanks for any help,

Mick


mickyjtwin:

In that function I then dynamically load the usercontrol into the placeholder. The user control structure is as follows:

That could be a problem! You need to add that dynamically loaded usercontroleachtime to the palecholder when you postback your page.

The following won't work (I think):

- you click your tree, postback, during that postback you add dynamically the usercontrol in codebehind in UpdateMenuID method and the usercontrol shown on the page.

- now you click the save button of your recently displayed usercontrol, postback, in codebehind UpdateMenuID method is notcalled this time. If this true, that is bad, because your control is not part of the page, and your page logic fails.

One final thoughts:

You could make more robust your page, when you not call __doPostBack('<%= MenuID.ClientID %>', '') or similar, instead put a dummy button near the hidden field, and call the click event of the button (search the forum for this solution). This is the recommended way to trigger an updatepanel refresh from javascript.


Ok, after alot of debugging, and breakpoints, I now know why the control is disappears as per the previous post. Yes, the control is not being loaded again, but I do not understand how I would do this and make it work.

I have since revised it to the following to simplify and demonstrate.

PARENT PAGE.aspx

<asp:ScriptManager ID="ScriptManager1" runat="server"
ScriptMode="release"
EnablePartialRendering="true">
</asp:ScriptManager>

<div>
<asp:Button ID="ContextItem" runat="server" OnClick="ContextItem_Click" Text="Click ME!" />
</div>
<div>
<asp:UpdatePanel ID="ParentUpdate" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:PlaceHolder ID="ControlHolder" runat="server" />
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="ContextItem" EventName="Click" />
</Triggers>
</asp:UpdatePanel>
</div>

PARENT PAGE.aspx.cs

protected void ContextItem_Click(object sender, EventArgs e)
{
ControlHolder.Controls.Clear();
this.MyControl = LoadControl("~/Controls/AJAXTestControl.ascx");
ControlHolder.Controls.Add(this.MyControl);
}

AJAXTestControl.ascx

<asp:UpdatePanel ID="ParentUpdate" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Panel ID="ResultsPanel" runat="server" Visible="False">
<asp:Literal ID="Results" runat="server" />
</asp:Panel>
<asp:Panel ID="ContentPanel" runat="server">
<asp:TextBox ID="SomeText" runat="server" />
<asp:Button ID="SaveButton" runat="server" Text="Save" OnClick="SaveButton_Click" />
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel
AJAXTestControl.ascx.cs

protected void SaveButton_Click(object sender, EventArgs e)
{
ResultsPanel.Visible = true;
Results.Text = SomeText.Text;
}

********************
Obviously when I click the context button, the control loads fine. FANTASTIC! However, on a subsequent save, the control disappears. If I just load the control into the page load, I have no problems at all. Obviously it is because I am dynamically adding the control on a button click. The question I have, which is killing me, is how should I manage the loading of the control, and subsequent postbacks, so when a user clicks the save button, the usercontrol is still there, and the results panel is displayed!

Thanks in advance, I really need a solution or help understanding this!

Mick


At first I see two possible way:

a) In ContextItem_Click you save in the viewstate that the control is loaded the first time. Later in the page_load you check the viewstate whether the control was loaded before, and simply add the control again. (Anyway page_init is the recommended event to loading dynamic controls)

b) This is the better one I think. Don't load dynamically the usercontrol, instead add your control always in page_load, or add simply statically in the updatepanel. Of course modify the usercontrol to render nothing/empty when the context is not set yet.

Content disapears on update of updatepanel inside of another updatepanel! Plz help.

Hi i have a problem, i have a UpdatePanel(UpdatePanel3) with a Panel(contentPanel)inside after clicking on the LinkButton(homeLinkButton)I add a Control(home.ascx) to Panel(contentPanel) in that control i have another UpdatePanel(homeUpdatePanel) and a Button(Button1), when i click on that button the whole content of Panel(contenPanel) disapears, how do i solve it and get a update of the dynamicly added UpdatePanel(homeUpdatePanel) inside of Panel(contentPanel)?

Default.aspx

1<form id="form1" runat="server">2 <asp:ScriptManager ID="ScriptManager1" runat="server" />3 <asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">4 <ContentTemplate>5 <table style="width: 584px; height: 248px">6 <tr>7 <td style="width: 162px; height: 175px" valign="top">8 <asp:LinkButton ID="homeLinkButton" runat="server" OnClick="homeLinkButton_Click">Home</asp:LinkButton><br />9 <asp:LinkButton ID="uploadLinkButton" runat="server" OnClick="LinkButton3_Click">Upload</asp:LinkButton>10 <br />11 <asp:LinkButton ID="zoekenLinkButton" runat="server">Zoeken</asp:LinkButton></td>12 <td rowspan="2" valign="top">13 <asp:UpdatePanel ID="UpdatePanel3" runat="server" UpdateMode="Conditional">14 <ContentTemplate>15 <asp:Panel ID="contentPanel" runat="server" Height="184px" Width="392px">16  </asp:Panel>17 </ContentTemplate>18 <Triggers>19 <asp:AsyncPostBackTrigger ControlID="homeLinkButton" />20 </Triggers>21 </asp:UpdatePanel>22 </td>23 </tr>24 <tr>25 <td style="width: 162px">26 </td>27 </tr>28 </table>29 </ContentTemplate>30 </asp:UpdatePanel>31 </form>
Default.aspx.vb
12Protected Sub homeLinkButton_Click(ByVal senderAs Object,ByVal eAs System.EventArgs)3Dim clAs Control4 cl = LoadControl("home.ascx")5 contentPanel.Controls.Add(cl)6 UpdatePanel3.Update()7End Sub8
home.ascx
1<%@dotnet.itags.org. Control Language="VB" AutoEventWireup="false" CodeFile="home.ascx.vb" Inherits="home" %>2Dit is dan onze Home pagina die dymanisch wordt opgeladen.<br />3Pagina was geladen op4<asp:Label ID="pageLoadLabel" runat="server"></asp:Label><br />5<asp:UpdatePanel ID="homeUpdatePanel" runat="server" UpdateMode="Conditional">6 <ContentTemplate>7<asp:Label ID="timeLabel" runat="server"></asp:Label>8 </ContentTemplate>9 <Triggers>10 <asp:AsyncPostBackTrigger ControlID="Button1" />11 </Triggers>12</asp:UpdatePanel>13<asp:Button ID="Button1" runat="server" Text="Button" Width="160px" />
home.ascx.vb
1Protected Sub Page_Load(ByVal senderAs Object,ByVal eAs System.EventArgs)Handles Me.Load2 timeLabel.Text = DateTime.Now3 pageLoadLabel.Text = DateTime.Now4End Sub56 Protected Sub Button1_Click(ByVal senderAs Object,ByVal eAs System.EventArgs)Handles Button1.Click7 timeLabel.Text = DateTime.Now8End Sub
Thx, Me

Hi,

Thank you for your post!

I think this is a known issue,It is something about Dynamicaly loading User Controls into UpdatePanel.

You can see the following threads too:

http://forums.asp.net/p/1156704/1906671.aspx#1906671

http://forums.asp.net/t/1108394.aspx

If you have further questions,let me know.

Best Regards,

Content compression & IE6

The problem is javascript files (which are loaded in a page through ScriptResource.axd) are not compressed with gzip for IE 6. But everything works fine with IE7. The reason is ScriptResourceHandler.IsCompressionEnabled() function, which prohibites gzip encoding for IE 6 and below.

But why?? What's the reason?? 90% of my clients use IE6 and I don't want they load a 120Kb MicrosoftAjax.js.

How to workaround this problem?

None of developers know the answer?

Content aware slide-out with AnimationExtender?

Hi,

I'm so close to getting this to work, but there's just onemissing issue. I'm trying to create a simple slide down animation, whena linkbutton is clicked. The content to show is just a block of textinside a div tag. I have a "slider" div tag that does the animation,like in the "flyout" div tag in the toolkit example video. Everythingjust about works fine, except that I've had a lot of trouble getting itto fit to the height of the content. I can't use a fixed height becauseI don't know how much content will be there. I've been able to get theheight after setting the style "height:auto" but now I don't know howto get it to interact with the animationextender. I saw that you can doanimations through javascript, but I've already written the animationin ASP, so I'm hoping there's an easy way to just tell the animationextender to look at the height of the div and use it to resize.


Here's my code:

1<%@dotnet.itags.org. Page Language="C#" AutoEventWireup="true" CodeFile="TestPage.aspx.cs" Inherits="TestPage" %>
2
3<%@dotnet.itags.org. Register Assembly="TDSAjaxExtensions" Namespace="TDSAjaxExtensions" TagPrefix="cc1" %>
4<%@dotnet.itags.org. Register Assembly="DateControls" Namespace="DateControls" TagPrefix="cc2" %>
5
6<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
7
8<html xmlns="http://www.w3.org/1999/xhtml" >
9<head id="Head1" runat="server"><title>Test Page</title>
10</head>
11<body><form id="Form1" runat="server"><div>
12 <asp:ScriptManager ID="ScriptManager1" runat="server">
13 </asp:ScriptManager>
14 <table border="1" bordercolor="#000000">
15 <tr>
16 <td style="height: 25px" width="275"><br /><br /><br /><br />
17
18 <asp:LinkButton ID="btnInfo" OnClientClick="return false;" runat="server">LinkButton</asp:LinkButton>
19 <div id="slider" style="display:none;"></div>
20
21 <div id="hidden" style="height:0px;">
22<!-- Info panel to be displayed as a flyout when the button is clicked -->
23 <div id="info" style="display:block; width:auto; height: auto; opacity: 100; filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0); font-size: 12px; border: solid 1px #CCCCCC; background-color: #FFFFFF; padding: 5px;">
24 Once you get the general idea of the animation's markup, you'll want to play a bit. All of
25 the animations are created from simple, reusable building blocks that you can compose together.
26 Before long you'll be creating dazzling visuals. By grouping steps together and specifying
27 them to be run either in sequence or in parallel, you'll achieve almost anything you can
28 imagine, without writing a single line of code!
29 <div id="btnCloseParent" style="opacity: 100; filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);">
30 <asp:LinkButton id="btnClose" runat="server"
31 OnClientClick="return false;"
32 Text="Minimize" ToolTip="Close"/>
33 </div>
34 </div>
35
36 <script language="javascript" type="text/javascript">
37 //just getting the absolute dimensions and setting that as the style
38 var height = document.getElementById("info").offsetHeight;
39 document.getElementById("info").style.height = height + "px";
40 document.getElementById("hidden").style.height = height + "px";
41 var width = document.getElementById("info").offsetWidth;
42 document.getElementById("info").style.width = width + "px";
43 document.getElementById("hidden").style.width = width + "px";
44 </script>
45
46 <script type="text/javascript" language="javascript">
47 // Move an element directly on top of another element (and optionally
48 // make it the same size)
49 function Cover(bottom, top, ignoreSize) {
50 var location = Sys.UI.DomElement.getLocation(bottom);
51 top.style.position = 'absolute';
52 top.style.top = location.y + 'px';
53 top.style.left = location.x + 'px';
54 if (!ignoreSize) {
55 top.style.height = bottom.offsetHeight + 'px';
56 top.style.width = bottom.offsetWidth + 'px';
57 }
58 }
59 </script>
60
61 <ajaxToolkit:AnimationExtender ID="MyExtender" runat="server" TargetControlID="btnInfo">
62 <Animations>
63 <OnClick>
64 <Sequence>
65<%-- Fadeout the "More Details" button --%>
66 <Fadeout AnimationTarget="btnInfo" Duration=".095" FPS="15" />
67 <StyleAction AnimationTarget="btnInfo" Attribute="visibility" Value="hidden" />
68<%--<StyleAction AnimationTarget="slider" Attribute="width" Value="info.style.width" />--%>
69 <StyleAction AnimationTarget="slider" Attribute="height" Value="0px" />
70 <StyleAction AnimationTarget="slider" Attribute="display" Value="block" />
71 <StyleAction AnimationTarget="slider" Attribute="borderStyle" value="solid" />
72 <StyleAction AnimationTarget="slider" Attribute="borderWidth" value="1px" />
73 <parallel AnimationTarget="slider" Duration=".1" fps="20" >
74 <fadein />
75 <Resize AnimationTarget="slider" Width="275" Height="/*THIS IS WHERE I NEED THE CLIENT SIDE HEIGHT*/" />
76 </parallel>
77
78 <StyleAction AnimationTarget="slider" Attribute="height" value="/*THIS IS WHERE I NEED THE CLIENT SIDE HEIGHT*/" />
79<%-- Slide out the Details panel --%>
80 <%--<StyleAction AnimationTarget="info" Attribute="display" Value="block"/>
81 <Parallel AnimationTarget="info" Duration=".1" Fps="20">
82 <fadein />
83 </Parallel>--%>
84 <%-- Enable the button --%>
85 <EnableAction AnimationTarget="btnInfo" Enabled="false" />
86 </Sequence>
87 </OnClick>
88 </Animations>
89 </ajaxToolkit:AnimationExtender>
90
91 <ajaxToolkit:AnimationExtender id="CloseAnimation" runat="server" TargetControlID="btnClose">
92 <Animations>
93 <OnClick>
94 <Sequence>
95 <StyleAction AnimationTarget="info" Attribute="fontSize" Value="0px" />
96
97<%-- Shrink the panel out of view --%>
98 <Parallel AnimationTarget="info" Duration=".2" Fps="15">
99 <Resize width="100%" height="0px" />
100 <fadeout />
101 </Parallel>
102<%-- Reset the target --%>
103 <StyleAction AnimationTarget="info" Attribute="visibility" Value="hidden"/>
104 <StyleAction AnimationTarget="info" Attribute="width" Value="250px"/>
105 <StyleAction AnimationTarget="info" Attribute="height" Value="0px"/>
106 <StyleAction AnimationTarget="info" Attribute="fontSize" Value="0px"/>
107<%-- Enable the button --%>
108 <StyleAction AnimationTarget="btnInfo" Attribute="visibility" Value="visible" />
109 <EnableAction AnimationTarget="btnInfo" Enabled="true" />
110 <Fadein AnimationTarget="btnInfo" Duration=".092" FPS="15" />
111 </Sequence>
112 </OnClick>
113 </Animations>
114 </ajaxToolkit:AnimationExtender>
115 </td>
116 <td style="width: 3px; height: 25px">
117 </td>
118 <td style="width: 3px; height: 25px">
119 </td>
120 </tr>
121 <tr>
122 <td style="height: 21px">
123 </td>
124 <td style="width: 3px; height: 21px">
125 </td>
126 <td style="width: 3px; height: 21px">
127 </td>
128 </tr>
129 </table>
130
131
132</div></form></body>
133</html>


So basically where I put "THISIS WHERE I NEED THE CLIENT SIDE HEIGHT" is where I need something alongthe lines of a javascript variable, or to point to the height of the"info" panel. Or of course if there is an easier way to do this thatI'm totally missing that would be good to know obviously.

Please let me know if that was way to confusing to follow, I'd really like to get this working.

-Matt

Hi.

use Dynamic Animation Properties .

Change
<Resize AnimationTarget="slider" Width="275" Height="/
to be :
<Resize AnimationTarget="slider" Width="275" HeightScript="functiontoCalculateheight();"/
function functiontoCalculateheight(){
//This function will do something to calculate the content height and return me the height.
//ex :
return $get("contentDiv").offsetHeight;
}
Hope this helps.


Yep, thats exactly what I needed. Thank you so much!

-Matt