Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
admin
/
htdocs
/
rockmongo
/
themes
/
default
/
views
/
collection
/
/srv/admin/htdocs/rockmongo/themes/default/views/collection/createRow.php
<script language="javascript"> /** * switch format between json and array */ function switchFormat(select) { $.ajax({ "data": { "data": $("#row_data").val(), "format":select.value }, "url": "index.php?action=collection.switchFormat&db=<?php h($db); ?>&collection=<?php h($collection); ?>", "type": "POST", "dataType": "json", "success": function (resp) { $("#row_data").val(resp.data); } }); } </script> <h3><?php render_navigation($db,$collection,false); ?> » <?php hm("createrow"); ?></h3> <?php if (isset($error)):?> <p class="error"><?php h($error);?></p> <?php endif; ?> <?php if (isset($message)):?> <p class="message"><?php h($message);?></p> <?php endif; ?> <form method="post"> <?php hm("format"); ?>:<br/> <select name="format" onchange="switchFormat(this)"> <option value="array" <?php if($last_format=="array"): ?>selected="selected"<?php endif; ?>>Array</option> <option value="json" <?php if($last_format=="json"): ?>selected="selected"<?php endif; ?>>JSON</option> </select> <br/> <?php hm("data"); ?> <br/> <textarea rows="35" cols="70" name="data" id="row_data"><?php echo x("data") ?></textarea><br/> <label>Repeat <input type="number" name="count" value="1" style="width:60px;text-align:center"/> times.</label><br/> <input type="submit" value="<?php hm("save"); ?>"/> </form>