Я создал метод HTMLExtension для DatePicker.Я ссылаюсь на него из представления следующим образом (см. Жирный текст для определения местоположения изображения):
<label for="Effective Start Date", class="codeValuesEditLabel"> Effective Start Date (YYYY/MM/DD): </label>
<%= Html.DatePicker("CodeValueNewEditModel_EffectStartDate", "CodeValueNewEditModel.EffectStartDate", "../../Content/images/calendar.gif",
Model.codeValueNewEditModel.EffectStartDate) %>
Метод HTMLExtension:
public static string DatePicker(this HtmlHelper helper, string id, string name, **string imageUrl**, object date)
{
StringBuilder html = new StringBuilder();
// Build our base input element
html.Append("<input type=\"text\" id=\"" + id + "\" name=\"" + name + "\"");
// Model Binding Support
if (date != null)
{
string dateValue = String.Empty;
if (date is DateTime? && ((DateTime)date) != DateTime.MinValue)
dateValue = ((DateTime)date).ToString("yyyy/MM/dd");
else if (date is DateTime && (DateTime)date != DateTime.MinValue)
dateValue = ((DateTime)date).ToString("yyyy/MM/dd");
else if (date is string)
dateValue = (string)date;
html.Append(" value=\"" + dateValue + "\"");
}
// We're hard-coding the width here, a better option would be to pass in html attributes and reflect through them
// here ( default to 75px width if no style attributes )
html.Append(" style=\"width: 75px;\" />");
// Now we call the datepicker function, passing in our options. Again, a future enhancement would be to
// pass in date options as a list of attributes ( min dates, day/month/year formats, etc. )
// If there is no image given, open calendar by clicking on text box
if (imageUrl == null)
{
html.Append("<script type=\"text/javascript\">$(document).ready(function() { $('#" + id + "').datepicker( { dateFormat: 'yy/mm/dd', changeMonth: 'true', changeYear: 'true', duration: 0 }); });");
}
else
{
html.Append("<script type=\"text/javascript\">$(document).ready(function() { $('#" + id + "').datepicker( { dateFormat: 'yy/mm/dd', showOn: 'button', changeMonth: 'true', changeYear: 'true', buttonImage: '" + **imageUrl** + "', duration: 0 }); });");
}
html.Append("</script>");
return html.ToString();
}
Все работает при запуске на сервере разработки, но при запускес IIS изображение не найдено.Как правило, я бы использовал «Url.Content» для решения этих проблем, но я не могу поместить это в Javascript.У кого-нибудь есть предложения?