Flexviewer调用特定的widget: 之前一直是自己添加个固定的key来调用widget 但是后来发现框架早就为你写好啦调用widget的方法 在WidgetManager中有个 public function getWidgetId(widgetLabel:String):Number方法 其中便是通过Widget的label属性值来得到WidgetId的 如果想调用某个widget,只需要获取WidgetManager的实例就可以啦,例如 var bufferID:Nubmer =…
加上条件注释语句<!--[if IE 8]><link rel="".........................><![endif]-->ie条件注释语句还可以加上以下限制lte:就是Less than or equal to的简写,也就是小于或等于的意思.lt :就是Less than的简写,也就是小于的意思.gte:就是Greater than or equal to的简写,也就是大于或等于的意思.gt :就是Greater than的简写…
前言:Flutter官方文档里的一句话:you build your UI out of widgets(使用Flutter开发UI界面时,都是使用Widget),然而,Widget并不是我们真正看到的视图,背后究竟是什么?其实Flutter Framework提供了三种视图树,即:Widget Element RenderObject,只不过,我们使用Flutter开发界面时,通常只和widget打交道,就如前文中所展示的Materail风格或者Cupertino(IOS风格)的各种Wid…