Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Client Id for Property (ASP.Net MVC)

In my View I'm using jquery ui datapicker. So I need initiate it with code like this


$(function() {
        $('#elementID').datepicker({
        });
});
    

In my View


     <%= Html.TextBoxFor(m=>m.StartDate) %>
    

In old ASP.NET I may use


    tb_startDate.ClientID
    

What is about retrieving element Id of Strongly Typed ASP.NET MVC HTML Helper? Is is possible?

share|improve this question
Look this dominicpettifer.co.uk/Blog/37/… – sh1ng Apr 6 '10 at 9:34

marked as duplicate by casperOne Apr 25 '12 at 11:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted

There is no way of receiving the id of the textbox once it has been rendered (as it just outputs plain text).

You can, however use another approach where you set the class and use a standard ".class-jquery selector".

Like so:

<%= Html.TextBoxFor(m=>m.StartDate, new { @class = "startDate" }) %>

and:

$('input.startDate').datepicker();
share|improve this answer
10x for your advise, but I'm thinking(and googling) about another solution. Yours is not a good idea in terms of performance. – sh1ng Apr 6 '10 at 9:30
I'm not sure the proposed solution has any issues with regards to performance at all. I'd be interested to see a link that suggested otherwise :) – Amadiere Apr 6 '10 at 9:32
Sure, selecting by ids is faster. But for just 1 to 100 selectors on one page, I wouldn't bother implementing a custom helper just to get the Id as it is not that much faster (we're talking milliseconds). – Mickel Apr 6 '10 at 9:39

You can create

public static class HtmlExtensions 
{ 
    public static MvcHtmlString FieldIdFor<TModel, TValue>(this HtmlHelper<TModel> html, Expression<Func<TModel, TValue>> expression) 
    { 
        string htmlFieldName = ExpressionHelper.GetExpressionText(expression); 
        string inputFieldId = html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldId(htmlFieldName); 
        return MvcHtmlString.Create(inputFieldId); 
    } 
} 

and used used it

$('@Html.FieldIdFor(m=>m.StartDate').datepicker();

For more details: http://www.dominicpettifer.co.uk/Blog/37/strongly-typed--label--elements-in-asp-net-mvc-2

share|improve this answer

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