Is there a way to get the client id generated for a field generated with a html helper?

i have several components that sometimes are inside another forms, and i wan't to attach javascript events to them.

so, for sample, i would like to have:

@Html.TextBoxFor(model => model.client.email)

<script> 
$('#@getmyusercontrolid(model=>model.client.email)').val("put your mail here");
</script>
link|improve this question
feedback

2 Answers

up vote 8 down vote accepted

I use this helper:

public static partial class HtmlExtensions
{
    public static MvcHtmlString ClientIdFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression)
    {
        return MvcHtmlString.Create(htmlHelper.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(ExpressionHelper.GetExpressionText(expression)));
    }
}

Use it just as you would any other helper: @Html.ClientIdFor(model=>model.client.email)

link|improve this answer
feedback

You could try specifying the id in the HtmlAttributes argument when you generate the input field, e.g.

@Html.TextBoxFor(model => model.client.email, new { id = "emailTextBox" })

Then you can use this in your javaScript

var email = $('#emailTextBox').val();
link|improve this answer
that will not work if you have more than one instances of the component in the same page, and its also not useful if you want to databind in the destination action. – Jokin Mar 24 '11 at 15:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.