• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "AJAX toolkit text extender"

Collapse

  • HankWangford
    replied
    just tried it with my extenders and I cant get it to error either way, can you paste the whole class if you can and I'll take a look or pm it

    Leave a comment:


  • scotspine
    replied
    it was a server error. not sure why it was happening. removing the attribute [ that post was me ] obviously removes the error but i was wondering if anyone else had come across it or similar...

    Leave a comment:


  • HankWangford
    replied
    is this a clientside error?

    http://www.manning-sandbox.com/threa...essageID=63056

    Leave a comment:


  • scotspine
    started a topic AJAX toolkit text extender

    AJAX toolkit text extender

    got this code:

    [Designer(typeof (TextChangedDesigner))]
    [ClientScriptResource("TextChanged.TextChangedBehav ior", "TextChanged.TextChangedBehavior.js")]
    [TargetControlType(typeof (Control))]
    public class TextChangedExtender : ExtenderControlBase
    {
    [ExtenderControlProperty]
    [DefaultValue(500)]
    [ClientPropertyName("timeout")]
    [RequiredProperty]
    public int Timeout
    {
    get { return GetPropertyValue<int>("Timeout", 500); }
    set { SetPropertyValue<int>("Timeout", value); }
    }

    [ExtenderControlEvent(true)]
    [DefaultValue("")]
    [ClientPropertyName("textChanged")]
    public string OnTextChanged
    {
    get { return GetPropertyValue<string>("OnTextChanged", String.Empty); }
    set { SetPropertyValue<string>("OnTextChanged", value); }
    }
    }

    =======================================

    but the [RequiredProperty] always creates an error - extender property not supplied - even though i do pass it a value [even tho' the constructor has a default] at run-time. anyone any ideas?
    ta

Working...
X