Search

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

Matching Posts

  • Re: Getting extenders to work with a custom ascx control

    Always thought composite was a strange name. my control is a composite of many elements!. Anyways, I already added those extenders to the ascx page. I guess this will work for most, - what about the password complexity. though I suppose i could always include that too and just prescribe where it appears. It's a shame there is not an attribute you can put on to prescribe a property of the control to get/set the text value. Cheers
    Posted to ASP.NET AJAX Control Toolkit (Forum) by OblivionSY on 9/16/2009
  • Re: Getting extenders to work with a custom composite control

    Hi, Thanks for getting back so promptly - I'm not sure I follow the post exactly. It is actually a user control based in the web project, so there is the ascx and ascx.cs files. I have imported the namespace, but then didn't follow/couldnt see the create object part? Do you have a pseudo (or even real) code example to point me in the right direction. Many thanks
    Posted to ASP.NET AJAX Control Toolkit (Forum) by OblivionSY on 9/15/2009
  • Re: Getting extenders to work with a custom composite control

    public partial class CompleteTextBox : UserControl, IEditableTextControl { } This is the definition of the control. It is a web user control, that has a textbox, and other controls on it. on the page: <uc:CompleteTextBox id="ControlId" runat="server" someproperties="somevalues"> <aj:CalendarExtender id="ControlIdExtender" runat="server" TargetControlId="ControlId" /> This is basically what I want to achieve, but my complete TextBox
    Posted to ASP.NET AJAX Control Toolkit (Forum) by OblivionSY on 9/15/2009
  • Re: Getting extenders to work with a custom composite control

    It is a user control because that is what the default is when a WebUserControl is added to the project. Composite control would have to control the rendering and markup, whereas the user control has the designer surface (i just use the markup however). I have a folder in the web application called controls, and it sits in there. Is there any way to get the ToolKit to recognise the textbox on the ascx control? or is the only solution to make a composite control?
    Posted to ASP.NET AJAX Control Toolkit (Forum) by OblivionSY on 9/15/2009
  • Getting extenders to work with a custom composite control

    I have a control which has a text box and some other items in it. How can i get the ajax toolkit items to recognise the textbox in the custom control. Is this possible?
    Posted to ASP.NET AJAX Control Toolkit (Forum) by OblivionSY on 9/14/2009
  • IE Javascript Error, "Member not found"

    Here is the error I am getting: Line 782, Char 9, Error: Member not found, Code: 0 My setup: this page has a drop down list(ddl), a gridview(gv) and both are contained in an update panel. There is an animation extender on the updatepanel which does a little fade out/in when the list is changed. The ddl is auto postbacking and causes the update panel to refresh. The server side code basically loads a list based on the selection from the dll and displays them in the gv. This works OK in firefox with
    Posted to ASP.NET AJAX Control Toolkit (Forum) by OblivionSY on 10/9/2007
    Filed under: UpdatePanelAnimationExtender, "update Panel", "Ajax Control Toolkit"
  • Referencing web user controls in an accordion pane

    I have a web user control which is in an accordion pane and it has a public property exposed. I am trying to set this property on the page's load event but just get object reference is null. so in my page i have < aj:Accordion ID= "Accordion1" runat= "server" Height= "300" AutoSize= "fill" FadeTransitions= "true" HeaderCssClass= "Header HeaderFont" HeaderSelectedCssClass= "Header Selected HeaderFont" > < Panes >
    Posted to ASP.NET AJAX Control Toolkit (Forum) by OblivionSY on 8/13/2007
  • Re: button is not working

    If you download and install Firefox browser, it has a nice javascript development console which catches any dodgy javascript that IE sometimes allows. Perhaps this might shed some light on it? Can you paste some code, so we can see how you are approaching this.
    Posted to Web Forms (Forum) by OblivionSY on 9/18/2006
  • Re: UserControl + Custom Event Raising and Handling

    Here is some code for custom events i used on a tab control i wrote... its in VB tho, but am sure you can convert to C# Defintion of events Public Event TabControl_TabClicked(ByVal Tab As NOL.Definition.Interfaces.Controls.IPageTab) Public Event TabControl_HidingTab(ByVal Tab As NOL.Definition.Interfaces.Controls.IPageTab) Call Event where needed RaiseEvent TabControl_HidingTab(Me.SelectedTab) ON page which has the control Protected Sub TabControl_TabControl_TabClicked(ByVal Tab As NOL.Definition
    Posted to Web Forms (Forum) by OblivionSY on 9/18/2006
  • Re: How can I create a friendly URL in ASP.NET

    one simple solution is to use something like http://www.hellocw.com/?Paul Then in the default page for hellocw.com add some code to the pageload event to read the query string. The above will not work with request.QueryString("???") as we have not said /?username=paul You should be able to get the querystring, and then do some string manipulation on it
    Posted to Web Forms (Forum) by OblivionSY on 9/18/2006
Page 1 of 2 (14 items) 1 2 Next >