Search

You searched for the word(s): userid:652495

Matching Posts

  • Re: DragOverlayExtender Panel - Bounces

    that solution sounds good enough. the simplest ways are usually all that is needed. to get around the scrollbar issue i would suggest placing the object above the top of the browser window, instead of under the fold. <div style="background-color:red;position: absolute;top:-2000"> Hello World </div>
    Posted to ASP.NET AJAX UI (Forum) by djeeg on 7/16/2006
  • Re: DragOverlayExtender Panel - Bounces

    correct me if i'm wrong but this is because the panel is drawn originally in its location set in the page (say 0,0) and only gets moved to it proper location when the onload event (or similar) is fired. the bounce you are seeing is because modern day browsers render pages before they are fully loaded. so the panel will be drawn at 0,0 then move when the onload is fired. the way i get around this is to draw the panel in the correct location to begin with, but i don't know if this is possible with
    Posted to ASP.NET AJAX UI (Forum) by djeeg on 7/13/2006
  • Re: UpdatePanel with CustomDragDropList (drag using original client object, not post-partial-postback object)

    I think the problem described here is similar to my problem (and it may exist for all behaviours in update panels) http://forums.asp.net/thread/1282330.aspx instead of doing the fixes for the popup extender, which were: this.close = function() { if (!this.control) return; this.showPopup = function() { var old = __AtlasControlToolkit_PopupControlBehavior_VisiblePopup; if (old != null && old.control != null) { for my custom dragdroplist which is an extension of the core atlas one, i had to
    Posted to ASP.NET AJAX UI (Forum) by djeeg on 5/22/2006
  • UpdatePanel with CustomDragDropList (drag using original client object, not post-partial-postback object)

    It was suggested somewhere that if you wish to do custom things on a dragdroplist, to copy the one in atlas and add your things. I did this to have an animated drop, similar to pageflakes, where when you let the button go, it animates itself to the drop site. I used AtlasControlToolkit.NumberAnimination to help me. Now i have a setup where i have two update panels, each contains a dragdrop list with items. If i drag from one to another, on the drop a post back happens (partial). But when i try to
    Posted to ASP.NET AJAX UI (Forum) by djeeg on 5/22/2006
  • DragDrop completion event

    I have been working on a panel, that uses the DragPanelExtender, and want to be able to do "something" when the drag finishes. These two posts are around, but don't solve the problem, without using timers on the client. Locking up the browser in a polling fashion just doesn't seem a good solution, as stated in the quickstart guide. http://forums.asp.net/thread/1232405.aspx http://forums.asp.net/thread/1244674.aspx I have toyed around with the idea of registering an event listener for the mouse up
  • Re: bug? atlas with multiview

    i tried to solve this by setting visible to false in OnPreRender, but it didnt work if (IsEdit) { EditSiteMulitView.SetActiveView(EditView); UpdatePanel1.Visible = true ; UpdatePanel4.Visible = false ; } else { EditSiteMulitView.SetActiveView(LiveView); UpdatePanel1.Visible = false ; UpdatePanel4.Visible = true ; } The other way i tried that worked was to set the UpdatePanel's in the View's in the MultiView to have Mode="Conditional" and then in OnLoad do this. if (IsEditMode) { UpdatePanel1.Update
  • Re: bug? atlas with multiview

    I have the April release and experience the same problem. I think this issue is caused by ALL UpdatePanels being registered with the atlas ScriptManager even if they are in views that are currently not display. When you then go to do partial rendering, the javascript must loop over all the registered UpdatePanel's, to update them, and since this one is not display and error occurs. With debugging the error occurs on about line 10702 of Atlas.js in the function, 'element' is null. function destroyTree
  • Re: on reload

    This is awesome, ever since moving from MagicAjax i have been missing this client triggered javascript feature on refresh. I used to have to rely on a timer that would poll a hidden field every second looking to see if the server had set it to a specific value. I shudder at the thought. Now i can just automatically trigger the code on the client. Cheers Luis. I have had a look for some docs on _PageRequestManager but can't find any, is this another one of those "special" objects, like the cancel
  • Re: WebPartZone behavior (adding zones within code)

    Okay i think i have found it now. I thought it was odd that the webpartzone was not being added to the script, so i forced it with: [ScriptManager1.RegisterControl(WebPartZone3)] this only rendered out: [<control id="WebPartZone3" />] instead of: [<webPartZone id="WebPartZone2" uniqueId="WebPartZone2" webPartManager="WebPartManager1" allowLayoutChange="True" />] then i realised it was a user stupid error, the tag mappings only apply to aspx/ascx files, not to the control created in the
    Posted to Web Parts and Personalization (Forum) by djeeg on 4/19/2006
Page 1 of 2 (15 items) 1 2 Next >