This is a migrated thread and some comments may be shown as answers.

[Solved] Filter DatePicker Icon Missing in IE9

0 Answers 66 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Matthew
Top achievements
Rank 1
Matthew asked on 03 Jul 2012, 04:26 PM
I want to filter a date column in my grid.  When I run IE9 in compatibility mode, the datepicker calendar icon shows up fine.  But when I run it not in compatibility mode the icon is nowhere to be found, hence not allowing me to pop up the calendar.

Please help!

@{ Html.Telerik().Grid<Application>()
.Name("Reviewed")
.DataKeys(keys => keys.Add(k => k.Id))
.ClientEvents(events=>events.OnComplete("Reviewed_onComplete").OnDetailViewExpand("Reviewed_onDetailViewExpand"))
.Columns(columns =>
     {
      columns.Bound(c => c.Applicant.BusinessName).Title("Name");
      columns.Bound(c => c.Applicant.MailingAddress).Title("Address");
      columns.Bound(c => c.Applicant.MailingCity).Title("City");
      columns.Bound(c => c.Applicant.MailingZip).HtmlAttributes(new { @class = "telerik-grid-column" }).Width(50).Title("Zip");
      columns.Bound(c => c.Applicant.MailingCounty).Title("County");
      columns.Bound(c => c.CreateDate).Format("{0:M/dd/yy}").HtmlAttributes(new { @class = "telerik-grid-column" }).Width(75).Title("Submitted");
      columns.Bound(c => c.LastModifiedUsername).Title("Modified By");
      columns.Bound(c => c.LastModifiedDate).Format("{0:M/dd/yy}").HtmlAttributes(new { @class = "telerik-grid-column" }).Width(75).Title("Modified");
}
.DataBinding(dataBinding => dataBinding.Ajax()
.Select("AdminAjaxSelect", "Admin", new { status = ApplicationStatuses.BeingReviewed }))
                    .Filterable(filter => filter.Enabled(true))
                    .Pageable(paging => paging.PageSize(10))
                    .Resizable(settings => settings.Columns(false))
                    .Sortable()
                    .Render();
            }
Tags
Grid
Asked by
Matthew
Top achievements
Rank 1
Share this question
or