automizy / automizy-js
Automizy 小部件集合
20170323150200
2017-03-23 14:01 UTC
- dev-master
- 20170323150200
- 20170323150000
- v1.3.79
- v1.3.78
- v1.3.77
- v1.3.76
- v1.3.75
- v1.3.74
- v1.3.73
- v1.3.72
- v1.3.71
- v1.3.70
- v1.3.69
- v1.3.68
- v1.3.67
- v1.3.66
- v1.3.65
- v1.3.64
- v1.3.63
- v1.3.62
- v1.3.61
- v1.3.60
- v1.3.59
- v1.3.58
- v1.3.57
- v1.3.56
- v1.3.55
- v1.3.54
- v1.3.53
- v1.3.52
- v1.3.51
- v1.3.50
- v1.3.49
- v1.3.48
- v1.3.47
- v1.3.46
- v1.3.45
- v1.3.44
- v1.3.43
- v1.3.42
- v1.3.41
- v1.3.40
- v1.3.39
- v1.3.38
- v1.3.37
- v1.3.36
- v1.3.35
- v1.3.34
- v1.3.33
- v1.3.32
- v1.3.31
- v1.3.30
- v1.3.29
- v1.3.28
- v1.3.27
- v1.3.26
- v1.3.25
- v1.3.24
- v1.3.23
- v1.3.22
- v1.3.21
- v1.3.20
- v1.3.19
- v1.3.18
- v1.3.17
- v1.3.16
- v1.3.15
- v1.3.14
- v1.3.13
- v1.3.12
- v1.3.11
- v1.3.10
- v1.3.9
- v1.3.8
- v1.3.7
- v1.3.6
- v1.3.5
- 1.3.4
- 1.3.3
- v1.3.2
- v1.3.1
- 1.3.0
- 1.2.1
- 1.1.8
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.1
- v1.1.0
- v1.0.2
- v1.0.1
- 1.0.0
- dev-pr/30
- dev-pr/28
This package is not auto-updated.
Last update: 2024-10-01 04:28:27 UTC
README
什么是AutomizyJS?
AutomizyJS是一个类似jQuery UI的GUI和组件库,它包含了创建完整应用所需的所有功能,通过创建简单的对象或调用简短的方法来实现。您只需要定义基础,AutomizyJS就会完成剩余的工作。
作为参考,我们使用了AutomizyJS和AutomizyJs API构建了Automizy,我们的专业营销自动化软件。
易于编码
创建AutomizyJS模块非常简单,您只需写几行代码即可定义它们。
var dialog = $A.newDialog({
title: 'Import contacts',
buttons: [
{skin: 'nobox-green',text: 'Cancel',float: 'left',click: function(){dialog.close();}},
{skin: 'simple-orange',text: 'Next',float: 'right'}
],
content: $A.newForm({
inputs: [
{label: 'Import file',type: 'file'},
{label: 'Add to segment',type: 'select',multiselect: $A.d.defines.input.setupSelectObj,
options:[[0, '--- Nothing ---'],[12, 'First Segment'],[15, 'Second Segment']]
},
{label: 'Email',validator: 'email'}
]
})
}).draw();
此外,几乎所有方法都是可链式的,这使得编码更加简单。
var dialog = $A.newDialog().title('Import contacts').buttons([
$A.newButton().skin('nobox-green').text('Cancel').float('left').click(function(){dialog.close();}),
$A.newButton().skin('simple-orange').text('Next').float('right')
]).content($A.newForm().addInputs([
$A.newInput().label('Import file').type('file'),
$A.newInput().label('Add to segment').type('select').multiselect($A.d.defines.input.setupSelectObj).options([
[0, '--- Nothing ---'],[12, 'First Segment'],[15, 'Second Segment']
]),
$A.newInput().label('Email').validator('email')
])).draw();
简单集成
AutomizyJS可以使用所有jQuery方法,因此您在集成时不会遇到任何问题。
开发网站
您可以在以下位置查看AutomizyJs的完整文档:http://developers.automizy.com/automizyjs/
如果您对我们其他项目也感兴趣,请访问http://developers.automizy.com/
有问题?
如果您有任何问题,请随时通过help@automizy.com联系我们。