Radmonthyearpicker用于radgrid过滤

时间:2019-01-26 03:14:39

标签: c# asp.net telerik telerik-grid

radmonthyearpicker是否有可能成为radgrid过滤器?目前,我正在为datefilter使用griddatetimecolumn,并且只想将Monday过滤器的过滤器更改为monthyear,而不像datefilter中包括过滤器的day-month-year的日期过滤器。

我已经尝试过Radmonthyearpicker,并且已经成功地将选择器设置为仅月份和年份,但是我不知道它将用来过滤radgrid数据的代码是什么。

这是我遇到的错误:  用户代码未处理InvalidCastException

其他信息:无法将类型为“ System.Web.UI.LiteralControl”的对象转换为类型为“ Telerik.Web.UI.RadMonthYearPicker”。

const observableModule = require("tns-core-modules/data/observable");

const SelectedPageService = require("../shared/selected-page-service");
const BottomNavigation = require("nativescript-bottom-navigation").BottomNavigation;
const BottomNavigationTab = require("nativescript-bottom-navigation").BottomNavigationTab;
const OnTabSelectedEventData = require("nativescript-bottom-navigation").OnTabSelectedEventData;


function SearchViewModel() {
    SelectedPageService.getInstance().updateSelectedPage("Search");

    const viewModel = observableModule.fromObject({
        /* Add your view model properties here */
        tabs: [
            new BottomNavigationTab('First', 'ic_home'),
            new BottomNavigationTab('Second', 'ic_view_list'),
            new BottomNavigationTab('Third', 'ic_menu')
          ]
    });

    return viewModel;
}

module.exports = SearchViewModel;


0 个答案:

没有答案