摘要: <DataGridTemplateColumn Header="内容" Width="5*" MinWidth="70"> <DataGridTemplateColumn.CellTemplate> <DataTemplate> <TextBlock TextWrapping="Wrap" Text 阅读全文
posted @ 2023-04-12 18:42 lingmin210 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 如果事件已绑定模型,即设置了path=’XXX‘,则给控件赋值是无效的, <div class="col-sm-10"> <#form:textarea path="remarks" rows="4" maxlength="500" class="form-control"/> </div> 需要将 阅读全文
posted @ 2023-04-05 23:23 lingmin210 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 绑定部分代码: <div class="form-group"> <#form:form id="searchForm" model="${iotDevice}" action="${ctx}/iot/iotItem/listGroupData" method="post" class="form- 阅读全文
posted @ 2023-04-05 23:18 lingmin210 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 需要在初始化的时候加上相关的定义,后面用js进行动态赋值的时候才能找到,否则报Undefined, 定义: var option = { title: { text: '', textStyle: { color: '#5AC8FA' } }, //color: '#00ff00', legend: 阅读全文
posted @ 2023-04-03 20:13 lingmin210 阅读(111) 评论(0) 推荐(0) 编辑
摘要: html页面中定义base=${ctx}; 引用的js文件中,使用base 阅读全文
posted @ 2023-04-02 16:32 lingmin210 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 打包时报如下错: Failed to execute goal org.apache.maven.plugins:maven-javadoc-plugin:3.0.1:jar (default) on project jeesite-web: MavenReportException: Error 阅读全文
posted @ 2023-03-29 19:33 lingmin210 阅读(371) 评论(0) 推荐(0) 编辑
摘要: AutoResetEvent 、ManualResetEvent 两个用法都差不多。 无非是ManualResetEvent 可以通知到多个线程,然后开启后默认不关闭。需要手动关闭。 AutoResetEvent a1 = new AutoResetEvent(false); ManualReset 阅读全文
posted @ 2023-03-29 10:04 lingmin210 阅读(830) 评论(0) 推荐(0) 编辑
摘要: 需要在Form页面的如下位置增加一行:<#form:hidden path="id"/>,其中id是模型的主键字段 阅读全文
posted @ 2023-03-20 20:55 lingmin210 阅读(13) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 刷新页面状态 /// </summary> /// <param name="overViewState"></param> /// <param name="strValue"></param> private void BindStates(OverViewS 阅读全文
posted @ 2023-03-20 15:34 lingmin210 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 自定义的js和css/img的引入 阅读全文
posted @ 2023-03-18 19:46 lingmin210 阅读(13) 评论(0) 推荐(0) 编辑