79 lines
2.5 KiB
JavaScript
79 lines
2.5 KiB
JavaScript
$(document).ready(function() {
|
|
if($('div.form.login').length) { // in login page
|
|
$('input#LoginForm_password').focus();
|
|
}
|
|
|
|
$('table.preview input[name="checkAll"]').click(function() {
|
|
$('table.preview .confirm input').prop('checked', this.checked);
|
|
});
|
|
|
|
$('table.preview td.confirm input').click(function() {
|
|
$('table.preview input[name="checkAll"]').prop('checked', !$('table.preview td.confirm input:not(:checked)').length);
|
|
});
|
|
$('table.preview input[name="checkAll"]').prop('checked', !$('table.preview td.confirm input:not(:checked)').length);
|
|
|
|
$('.form .row.sticky input:not(.error), .form .row.sticky select:not(.error), .form .row.sticky textarea:not(.error)').each(function(){
|
|
var value;
|
|
if(this.tagName=='SELECT')
|
|
value=this.options[this.selectedIndex].text;
|
|
else if(this.tagName=='TEXTAREA')
|
|
value=$(this).html();
|
|
else
|
|
value=$(this).val();
|
|
if(value=='')
|
|
value='[empty]';
|
|
$(this).before('<div class="value">'+value+'</div>').hide();
|
|
});
|
|
|
|
$(document).on('click', '.form.gii .row.sticky .value', function(){
|
|
$(this).hide();
|
|
$(this).next().show().get(0).focus();
|
|
});
|
|
|
|
|
|
$('.form.gii .row input, .form.gii .row textarea, .form.gii .row select, .with-tooltip').not('.no-tooltip, .no-tooltip *').tooltip2({
|
|
position: "center right",
|
|
offset: [-2, 10]
|
|
});
|
|
|
|
$('.form.gii .row input').change(function(){
|
|
$('.form.gii .feedback').hide();
|
|
$('.form.gii input[name="generate"]').hide();
|
|
});
|
|
|
|
$('.form.gii .view-code').click(function(){
|
|
var title=$(this).attr('rel');
|
|
$.fancybox.showActivity();
|
|
$.ajax({
|
|
type: 'POST',
|
|
cache: false,
|
|
url: $(this).attr('href'),
|
|
data: $('.form.gii form').serializeArray(),
|
|
success: function(data){
|
|
$.fancybox(data, {
|
|
'title': title,
|
|
'titlePosition': 'inside',
|
|
'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
|
|
return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();">close</a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + '</div>';
|
|
},
|
|
'showCloseButton': false,
|
|
'autoDimensions': false,
|
|
'width': 900,
|
|
'height': 'auto',
|
|
'onComplete':function(){
|
|
$('#fancybox-inner').scrollTop(0);
|
|
}
|
|
});
|
|
},
|
|
error: function(XMLHttpRequest, textStatus, errorThrown) {
|
|
$.fancybox('<div class="error">'+XMLHttpRequest.responseText+'</div>');
|
|
}
|
|
});
|
|
return false;
|
|
});
|
|
|
|
$(document).on('click', '#fancybox-inner .close-code', function(){
|
|
$.fancybox.close();
|
|
return false;
|
|
});
|
|
}); |