Search

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

Matching Posts

  • Re: Need help with Global Themes directory

    Well... with a clear head this morning I tried creating a new fresh website and then added a vdir there that points to the sample files and low and behold it all works. I'm not sure what it is about my default website, but there lies the problem.
  • Need help with Global Themes directory

    I have read the MSDN docs on this and I have read the other posts here as well as many blogs. I am still having problems with this darn Global Themes. Theme is referenced in the test page tag: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" Theme="GlobalDefault"%> At build time the theme is found as you can see in the generated source: <link href="http://forums.asp.net/aspnet_client/system_web/2_0_50727/Themes/GlobalDefault/example.css" type=
    Posted to Master Pages, Themes and Navigation Controls (Forum) by garymon on 3/29/2007
    Filed under: asp 2.0 global themes
  • Re: Cascading Dropdown SeletedItem.Text

    Well I have read about every thread possible on this subject and am still having problems. It might be that I using the CDD different than I should be. Here is what I am doing and why. I have a control with a dropdown. This dropdown needs to be populated by calling a 3rd party webservice that is not very fast. Even though I don't need the cascading part of the CDD control it seemed like it would be useful in calling the WS and populating the dropdown after the page loads. So I have one CDD and one
    Posted to ASP.NET AJAX Control Toolkit (Forum) by garymon on 3/1/2007
    Filed under: "AJAX Toolkit", CascadingDropDown
  • Re: UpdatePanel with UpdateMode=Conditional still catching another UpdatePanels tick event

    Well I took a break from this and of course figured the issue out while I was driving. I had thought that nesting a ProgressUpdate inside of an UpdatePanel would scope it to that panel. Not so. Unless AssociatedUpdatePanelID is set on the ProgressUpdate then any submit on the page will cause it to do it's little animation. So my UpdatePanel1 was never actually submitting, it was just its UpdateProgress that was animating everytime the other UpdatePanel did it's update. I see the power and flexibility
    Posted to ASP.NET AJAX UI (Forum) by garymon on 2/19/2007
  • UpdatePanel with UpdateMode=Conditional still catching another UpdatePanels tick event

    I have 2 UpdatePanels on my page. UpdatePanel1 contains a control for adding users to AD. Its UpdateMode is set to Conditional. It is wraped in an UpdatePanel so it can do async posts to a Web service that takes while to run. UpdatePanel2 contains a control which lists the users in AD. Its UpdateMode is set to Always. It also contains a Timer. It should update the list ever x seconds and it should update when there is a post from UpdatePanel1. My understanding is that UpdatePanel1 since it is conditional
    Posted to ASP.NET AJAX UI (Forum) by garymon on 2/17/2007
    Filed under: UpdatePanel ajax trigger Timer Conditional UpdateMode
  • TargetControlID property missing from CollapsiblePanelExtender in Codebehind

    I am trying to create a CollapsiblePanelExtender from the codebehind of a custom control and I seem to be missing the property to set the TargetControlID. In the control I set a reference to the AjaxControlToolkit DLL. I downloaded the DLL juts a couple of days ago so it should be the latest and greatest. Possibly listing the properties that I do see might help someone understand what is wrong here. I would link a screen shot of the Object Browser but don't have a convenient location to put it so
    Posted to ASP.NET AJAX Control Toolkit (Forum) by garymon on 12/12/2006
    Filed under: TargetControlID, CodeBehind, CollapsiblePanelExtender CollapsiblePanelProperties
  • Re: How to toggle skinned images client side?

    Well I worked out a solution. I don't know if it is the best all around solution, but it works for my needs. In the scriptBlock where I register my toggle function, I added the following: scriptString += "var minImage = new Image(); \n" ; scriptString += "minImage.src = \"../App_Themes/" + Page .Theme + "/images/Minimize.gif\"; \n" ; scriptString += "var maxImage = new Image(); \n" ; scriptString += "maxImage.src = \"../App_Themes/" + Page .Theme + "/images/Restore.gif\"; \n" ; As long as each theme
  • How to toggle skinned images client side?

    I have a user control that displays some data and emits Javascript to do client side expansion/contraction of the control. The user control has been skinned except I am having trouble figuring out how to skin the image that is clicked to expand/contract the control. It needs to toggle between 2 images ("+" and "-" for example.). I would like each theme to be able to decide what the two images will be. Basically I need to get both URLs based on theme when I am generating the toggle Javascript in the
  • Re: Help with synchronizing an external DB and the personalization DB.

    Well I sucked it up and went the brute force route. I now dump the incomming collections ID's to one List and the ID's in the Personalization collection in another list. I loop through the Personalization List deleting any web parts that are not in the incomming List. Then I loop through the incomming list and add web parts for any ID's I don't find in the Personalization list. Any items that are in both lists are handled by the personalzation mechanics. Not sexy but it works. :-) -Gary
    Posted to Web Parts and Personalization (Forum) by garymon on 11/21/2005
  • Re: Help with synchronizing an external DB and the personalization DB.

    Yes, the min button is rendered. I am going to try going back to getting the personalization and my external collection in synch.
    Posted to Web Parts and Personalization (Forum) by garymon on 11/21/2005
Page 1 of 3 (22 items) 1 2 3 Next >