2

我有一个带有 MVC.NET、MySQL、jQuery Mobile 的移动应用程序。我需要根据数据库表中的一些值自定义日期框(jQuery Mobile)。

例如,我需要一些日期,从日期框中,以绿色着色,其他为灰色,其他为红色或白色(取决于表中的值)。

这可能吗?

日期框代码:

@Html.Label("Date:  *")
@Html.TextBoxFor(model => model.Date, new { @Class = "calendar", @data_icon = "false", @type = "text", data_role = "datebox", data_options = "{\"mode\":\"calbox\",\"useNewStyle\": true,\"overrideStyleClass\": \"calendar\",\"fieldsOrderOverride\": [\"d\",\"m\",\"y\"],\"headerFormat\":\"%A,%d, %-m, %Y\",\"dateFormat\":\"DD-MM-YYYY\",\"useTodayButton\":true}" })
@Html.ValidationMessageFor(model => model.Date)
4

0 回答 0