English 中文(简体)
Telerik MVC Grid Filter没有工作
原标题:Telerik MVC Grid Filter is Not Working

The Telerik MVC grid I am using is shown below. The data is displaying in the grid but the filterable attribute is not working, though the "Filter Icon" is displaying. I have registered the scripts and css in the layout.cshtml but I dont know why the filterable action is not working and sometimes the Column Widths are ignored and the grid is rendering in a default size.

@model IEnumerable<Customers>

@(Html.Telerik()
    .Grid(Model) 
    .Name("Customers") 
    .PrefixUrlParameters(false) 
    .Columns(columns=>
                { 
                 columns.Bound(c => c.CustomerId).Title("CustomerId").Width(50);<br/>
                 columns.Bound(c => c.CustomerStatus).Title("Customer Status").Width(70);
                 columns.Bound(c=>c.CityId).Title("CityID").Width(50);  
                 }
    .Filterable() 
    .Sortable(sort=>sort.SortMode(GridSortMode.MultipleColumn))
)

布局.cshtml(登记文字和风格表):

@(Html.Telerik().StyleSheetRegistrar().DefaultGroup(group => group.Add("telerik.common.css").Add("telerik.vista.css").Combined(true).Compress(true)))

@(Html.Telerik().ScriptRegistrar().Globalization(true).DefaultGroup(group => group.Combined(true).Compress(true)))
最佳回答

为了说明电网的规模,你可以把电网分为四点:

<div style="width:300px;">
   @(Html.Telerik()...
</div> 

此外,确保你能够进行电网分类/过滤:

.Sortable(sorting => sorting.Enabled(true))
.Filterable(filtering => filtering.Enabled(true)) 

如果仍然不工作,则确保由Telerik文字主管制作的文字档案能够由您的网络服务器(问讯源、 gr碎轴链接,并将其贴入你的地址。

还有一点:

Don t forget that the columns will expand to accomodate all their content so be sure your column widths match your parent div.

也可以使用Firebug,在你网页上审查任何文字问题。

问题回答

如果你使用数据基,或者如果你允许对电网行动方法具有约束力的习俗,则消除这一问题。

我发现一件非常有趣的事情。 我的电网上的过滤工作没有奏效。 icon当时在场,但没有被点击。 这一切都是令人 we慕的。 例如,在分类中,它增加了一段很长的尾声。 我为此花了两天时间。 直到我找到问题。 我在一页上有四个表格,每页都有一部分。 每个部分都有一个电网。 头3个电网(头3个制片)正在打工。 第四个不是。 我在第一个表格中搬走了最后一部分,但该表的电网没有再工作。 问题是,只有3个电网在一页运行。 如果我在第一个表格上有四个电网,只有头三个电网正在运行,第四个电网没有。 Very weird. ......

电离层电网确实是可怕的。 如果数据采集器是一栏的数据时点,过滤器永远不会奏效。





相关问题
Using jquery to get a partial view and updating the UI

I need to render a partial view (returned from the controller) to show some customer summary details. This will need to happen when the user clicks on a button. In the the mean time the user can ...

MVC 2 / MVC 3 / MVC 4

MVC 2 我们可以轻松地创造领域。 现在,我的问题涉及nes地区(地区内)。

Asp.Net MVC 2 - Changing the PropertyValueRequired string

Using a resx file in the App_GlobalResources directory, I ve been able to change the default message for the PropertyValueInvalid string of the model validators. But it doesn t work to translate the ...

ASP.NET MVC 3 - What features do you want to see? [closed]

I know a bunch of people that are really enjoying the improvements that ASP.NET MVC 2 made over the first release. I have just started to migrate our MVC 1 project over and so far areas has totally ...

热门标签