1年1月1日
Bug tabs: When add a new tab panel with href property, the content page is loaded twice. fixed. form: Failed to call ’load’ method to load form input with complex name. fixed. draggable: End drag in ie9, the cursor cannot be restored. fixed. Improvement panel: The tools can be defined via html markup. tabs: Call ‘close’ method to close specified tab panel, users can pass tab title or index of tab panel. Other methods such ‘select’,‘getTab’ and ’exists’ are similar to ‘close’ method. tabs: Add ‘getTabIndex’ method. tabs: Users can define mini tools on tabs. tree: The mouse must move a specified distance to begin drag and drop operation. resizable: Add ‘options’,’enable’ and ‘disable’ methods. numberbox: Allow users to change number format. datagrid: The subgrid is supported now. searchbox: Add ‘selectName’ method to select searching type name.……
阅读全文
1年1月1日
首先按业务需求划分为多个应用,应用就是用 play new xxx来创建的。 其次将公用部分划分为多个子项目或称子模块,就是用 play new-module创建的。 这些项目均并列导入eclipse中,应用引用相应需要的子项目,需要在application.conf中添加,有多个就添加多行: module.base=../base module.common=../common 在eclip……
阅读全文
1年1月1日
Play!中如何用module组织多个相关项目 FunctionTest测试中如何取得Session值 Xml域名空间(WS.(url).get().getXml()无法取得带命名空间Document对象)识别问题 在Play!中如何实现类似过滤器的功能 如何同时使用http和https……
阅读全文
1年1月1日
Scala 课堂 Scala Tutorial: Getting Started with Scala Play2开发的CMS系统……
阅读全文
1年1月1日
Assert failed: c customEval figwheel-bridge.js:75 <unknown> figwheel-bridge.js:88 <unknown> JSTimers.js:47 引入的控件不可用? Uncaugh [object object] 可能是db.cljs里的检查项不合格。 Spec check failed: {:cljs.spec/problems {[] {:pred map?, :val nil, :via [:xumu-app.db/app-db], :in []}}} 传入参数为nil,不符合db.cljs中spec的检查项。 undefined is not an object (evaluating 'nextState.routes.forEach') NavigationScenesReducer NavigationScenesReducer.js:116 NavigationTransitioner NavigationTransitioner.js:92 可能是sub.cljs加载错误,修改reg-sub为reg-sub-raw即可。 console.error: "Error rendering component (in env.android.main.reloader >……
阅读全文
1年1月1日
今天工作时需要设计一下程序的架构,即建模工作,这件事用纯文本似乎较难完成(本人是纯文本的 funs)。用手绘软件(Gimp, SketchBookExpress)也不太方便,失量图软件(Inkscape,LibreOfficeDraw)也要从画方框开始也不方便,毕竟是模块化的图形,还……
阅读全文
1年1月1日
以下是初入门时的姿势,现在完全不用这么麻烦,直接用dot-vimrc即可。 在 Mac OS X 上使用 Vim 真的是很享受,所以决定要用好这个工具,以下记录下本人的最佳实践: 首先面临一个选择,是用 MacVim 还是 终端(Terminate)?我的选择是终端,不过我进一步选择了 iTerm2,功能强大些,界面漂亮些……
阅读全文
1年1月1日
相关文档见:官方ticket任务#823 Yes, this is correct. In the .getXML function the namespace ness is not set. 是的,有这个问题。在.getXML方法中允许命名空间(namespace)没有设置。 This line should be changed from: 这一行应该从这样: :::java DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder(); to: 变成: :::java DocumentBuilderFactory xmlFact = DocumentBuilderFactory.newInstance(); xmlFact.setNamespace(true); DocumentBuilder builder = xmlFact.newDocumentBuilder(); The same problem exists in the XML lib in the getDocument function: 同样的问题在XML的包里的getDo……
阅读全文
1年1月1日
相关文档见:官方ticket任务#823 Yes, this is correct. In the .getXML function the namespace ness is not set. 是的,有这个问题。在.getXML方法中允许命名空间(namespace)没有设置。 This line should be changed from: 这一行应该从这样: :::java DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder(); to: 变成: :::java DocumentBuilderFactory xmlFact = DocumentBuilderFactory.newInstance(); xmlFact.setNamespace(true); DocumentBuilder builder = xmlFact.newDocumentBuilder(); The same problem exists in the XML lib in the getDocument function: 同样的问题在XML的包里的getDo……
阅读全文
1年1月1日
Created 星期六 25 二月 2012 先看一段Playframework热情交流群(QQG:168013302)里的聊天记录: 木马@学生 09:59:13 实现个功能..要调用service接口的方法, 方法又在他的impl里面实现, impl里面又是调用dao层接口, dao层接口又是在dao的impl里面实现, dao的i……
阅读全文