ConfiForms Form Definition | ||
---|---|---|
| ||
...
Form Configuration
Info |
---|
Dynamically looked up from the form via REST API |
HTML |
---|
<script type="application/javascript"> AJS.toInit(function() { var isPageEdit = AJS.$('#content').hasClass('page edit'); if (!isPageEdit) { var url = 'https://wiki.vertuna.com/ajax/confiforms/rest/definition.action?pageId= |
...
60228753&f=f |
...
';
var xhr = AJS.$.ajax({
url: url,
timeout: 10000, // 10 sec
success: function (data) {
AJS.$('#codeBlock').find('pre').html(JSON.stringify(data, null, 4));
},
error: function (jqXHR, textStatus, errorThrown) {
console.log('request to get data from ConfiForms has failed... ' + textStatus);
}
});
}
});
</script>
|
The code
Code Blockhtml |
---|
<script type="application/javascript">
AJS.toInit(function() {
var isPageEdit = AJS.$('#content').hasClass('page edit');
if (!isPageEdit) {
var url = 'https://wiki.vertuna.com/ajax/confiforms/rest/definition.action?pageId=60228753&f=f';
var xhr = AJS.$.ajax({
url: url,
timeout: 10000, // 10 sec
success: function (data) {
AJS.$('#codeBlock').find('pre').html(JSON.stringify(data, null, 4));
},
error: function (jqXHR, textStatus, errorThrown) {
console.log('request to get data from ConfiForms has failed... ' + textStatus);
}
});
}
});
</script>
|