博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GUIXML 的 JavaScript Engine 更新列表 Until Apr. 14.
阅读量:4120 次
发布时间:2019-05-25

本文共 3969 字,大约阅读时间需要 13 分钟。

updated 8_2:
----------------------------------------------------------
1. supported a new way to load data from xmlfile.
          <component class="listtype" id="lstype1">
            <flavor>
              <attribute name="rendering">List</attribute>
              <attribute name="color">blue</attribute>
              <attribute name="datamodelid">showstudent</attribute>
              <attribute name="value">
                <reference type="xml" datamodelid="showstudent_2" idref="/students/student/name/text()">
                </reference>
              </attribute>
            </flavor>
          </component>
2. modelid ==> datamodelid
3. demo file updated.
updated 8:
----------------------------------------------------------
1. single data load supported.
    you can get data from a xml, only configure a xpath.
defination:
    <component class="labeltype" id="deptlabel1">
            <flavor>
              <attribute name="rendering">Label</attribute>
              <attribute name="value">
                <reference type="xml" modelid="showstudent" idref="/students/student[1]/dept">
                </reference>
              </attribute>
            </flavor>
          </component>
outstanding:
--engine does not support FF anymore.
   this bug may fixed further. however , it depend on the broswer.
   seems that FF does not support .xml this property.
2. demo file updated.
updated 7:
----------------------------------------------------------
1. cursor bug fixed.
2. new way to load data xml file.
    out understanding:
    a. namespacing does not support now.
        it may be supported later.
    e,g;
datamodel defination:
     <datamodel>
      <model id="showstudent">
          <instance src="data_test.xml"/>
      </model>
      <model id="showstudent_2">
          <instance src="data_test2.xml"/>
      </model>
    </datamodel>
using:
<component class="datapaneltype" id="datapanel1">
            <flavor>
              <attribute name="rendering">DataPanel</attribute>
              <attribute name="modelid">showstudent_2</attribute>
              <attribute name="xmldatastructure">
                        student|@no,name,dept,age</attribute>
            </flavor>
          </component>
updated 6:
----------------------------------------------------------
1. several bugs fixed.
2. definate new tag : datapanel as a demo tag to load xml file.
    datapanel has 2 attribute: xmldatafile,xmldatastructure
    datapanel is just a test tag to implement reading xml data file by engine.
    datapanel does not follow GUIXML defination as Link tag does.
    now the defination configure in forms only.
    e,g; as follows:
         <component class="datapaneltype" id="datapanel1">
            <flavor>
              <attribute name="rendering">DataPanel</attribute>
              <attribute name="xmldatafile">data_test.xml</attribute>
              <attribute name="xmldatastructure">student|name,dept,age</attribute>
            </flavor>
          </component>
3. demo file updated.
updated 5:
----------------------------------------------------------
1. bug fixed: rendering cause errors.
2. defination support updated. you can configure style also in forms.
    a. frame only support "value" now. style will be work out sometime later.
    b. button style and it's implementation is not changed.
3. demo file updated.
updated 4:
----------------------------------------------------------
1. use a new way to fix css parse problem.
2. updated Frame Style.
3. known bug fixed. multi-frames supported.
updated 3:
----------------------------------------------------------
1. success to get GUIXML file name from meta tag.
2. img defination updated.
    <attributes type="imgtype">
        <attribute name="value">neko</attribute>
        <attribute name="src">moz.jpg</attribute>
        <attribute name="width">50%</attribute>
        <attribute name="height">50%</attribute>
      </attributes >
3. url defination updated.
     <attributes type="linktype">
        <attribute name="value">Baidu</attribute>
        <attribute name="url">www.baidu.com</attribute> <!-- no "http://" -->
      </attributes >
4. url supported innerLink and outLink.
updated 2:
----------------------------------------------------------
1. fixed checkbox
2. implemented button with simple event
3. implemented image
4. finished first demo
5. implemented inner link
updated 1:
----------------------------------------------------------
1. css cannot parse correctly through IE and FF has fixed.
2. simplified html file contents.
3. use a new way to start the engine.

转载地址:http://krnpi.baihongyu.com/

你可能感兴趣的文章
WPF实现蜘蛛纸牌游戏
查看>>
单例模式
查看>>
工厂方法模式
查看>>
模板方法模式
查看>>
数据结构之队列、栈
查看>>
数据结构之树
查看>>
数据结构之二叉树
查看>>
二叉树非递归遍历算法思悟
查看>>
红黑树算法思悟
查看>>
从山寨Spring中学习Spring IOC原理-自动装配注解
查看>>
实例区别BeanFactory和FactoryBean
查看>>
Spring后置处理器BeanPostProcessor的应用
查看>>
Spring框架的ImportSelector到底可以干嘛
查看>>
Mysql中下划线问题
查看>>
微信小程序中使用npm过程中提示:npm WARN saveError ENOENT: no such file or directory
查看>>
Xcode 11 报错,提示libstdc++.6 缺失,解决方案
查看>>
idea的安装以及简单使用
查看>>
Windows mysql 安装
查看>>
python循环语句与C语言的区别
查看>>
Vue项目中使用img图片和background背景图的使用方法
查看>>