forked from sachatrauwaen/openform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlpacaFormBuilder.ascx
158 lines (137 loc) · 5.91 KB
/
AlpacaFormBuilder.ascx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<%@ Control Language="C#" AutoEventWireup="false" Inherits="Satrabel.OpenForm.AlpacaFormBuilder" CodeBehind="AlpacaFormBuilder.ascx.cs" %>
<%@ Import Namespace="Newtonsoft.Json" %>
<asp:Panel ID="ScopeWrapper" runat="server" CssClass="dnnForm form-builder">
<div class="">
<div class="fb-container">
<div class="fb-left">
<div class="fb-wrap">
<h2>Fields</h2>
<div id="form"></div>
<ul class="dnnActions dnnClear" _style="display: block; padding-left: 35%">
<li>
<asp:HyperLink ID="cmdSave" runat="server" class="dnnPrimaryAction" resourcekey="cmdSave" />
</li>
<li>
<asp:HyperLink ID="hlCancel" runat="server" class="dnnSecondaryAction" resourcekey="cmdCancel" />
</li>
<li>
<asp:HyperLink ID="hlRefresh" runat="server" class="dnnSecondaryAction" resourcekey="cmdRefresh" />
</li>
</ul>
</div>
</div>
<div class="fb-right">
<div class="fb-wrap">
<h2>Form preview</h2>
<div id="form2"></div>
</div>
</div>
<div style="clear: both;"></div>
</div>
<div class="fb-container" style="display: none;">
<div class="fb-left">
schema<br />
<textarea class="form-control" rows="10" id="schema"></textarea>
</div>
<div class="fb-right">
options<br />
<textarea class="form-control" rows="10" id="options"></textarea>
</div>
<div style="clear: both;"></div>
</div>
<div class="row" style="display: none;">
<div class="col-sm-12">
Builder<br />
<textarea class="form-control" rows="10" id="builder"></textarea>
</div>
</div>
</div>
</asp:Panel>
<script type="text/javascript">
$(document).ready(function () {
var windowTop = parent;
var popup = windowTop.jQuery("#iPopUp");
if (popup.length) {
var $window = $(windowTop),
newHeight,
newWidth;
newHeight = $window.height() - 36;
newWidth = Math.min($window.width() - 40, 1600);
popup.dialog("option", {
close: function () { window.dnnModal.closePopUp(false, ""); },
//'position': 'top',
height: newHeight,
width: newWidth,
//position: 'center'
resizable: false,
});
$('body').css('overflow', 'hidden');
$(".form-builder .fb-left .fb-wrap").height('100%').css('overflow', 'hidden');
var formHeight = newHeight - 100 - 20;
$(".form-builder .fb-left .fb-wrap #form").height(formHeight - 62 + 'px').css('overflow-y', 'auto').css('overflow-x', 'hidden');
$(".form-builder .fb-left .fb-wrap #form > .alpaca-field-object").css('margin', '0');
$(".form-builder .fb-right .fb-wrap #form2").height(formHeight + 'px').css('overflow-x', 'hidden').css('overflow-y', 'auto').css('overflow-x', 'hidden');
}
var moduleScope = $('#<%=ScopeWrapper.ClientID %>'),
self = moduleScope,
sf = $.ServicesFramework(<%=ModuleId %>);
var getData = {};
$.ajax({
type: "GET",
url: sf.getServiceRoot('OpenForm') + "OpenFormAPI/LoadBuilder",
data: getData,
beforeSend: sf.setModuleHeaders
}).done(function (res) {
if (!res.data) res.data = {};
showForm(res.data);
formbuilderConfig.data = res.data;
var ConnectorClass = Alpaca.getConnectorClass("default");
var connector = new ConnectorClass("default");
//connector.servicesFramework = self.sf;
connector.culture = "en-US";
connector.defaultCulture = "en-US";
connector.numberDecimalSeparator = ".";
formbuilderConfig.connector = connector;
$("#form").alpaca(
formbuilderConfig
);
}).fail(function (xhr, result, status) {
alert("Uh-oh, something broke: " + status);
});
$("#<%=cmdSave.ClientID%>").click(function () {
var href = $(this).attr('href');
var form = $("#form").alpaca("get");
var data = form.getValue();
var schema = getSchema(data);
var options = getOptions(data);
var view = getView(data);
var postData = JSON.stringify({ 'data': data, 'schema': schema, 'options': options, 'view': view });
var action = "UpdateBuilder";
$.ajax({
type: "POST",
url: sf.getServiceRoot('OpenForm') + "OpenFormAPI/" + action,
contentType: "application/json; charset=utf-8",
dataType: "json",
data: postData,
beforeSend: sf.setModuleHeaders
}).done(function (data) {
window.location.href = href;
}).fail(function (xhr, result, status) {
alert("Uh-oh, something broke: " + status + " " + xhr.responseText);
});
return false;
});
$("#<%=hlRefresh.ClientID%>").click(function () {
var href = $(this).attr('href');
var form = $("#form").alpaca("get");
form.refreshValidationState(true);
if (!form.isValid(true)) {
form.focus();
return;
}
var value = form.getValue();
showForm(value);
return false;
});
});
</script>