Kodlar
Asp.NET Webform snippets
// KAYIT KONTROL var SablonAra = (from x in db.VY_Sablonlar where x.unvan == drpUnvan.SelectedItem.Text && x.bolum == drpBolum.SelectedItem.Text select x); ... Read More
Select2 width problemi
if ($('.select2').length) { // $('.select2').select2(); $(".select2").select2({ width: '100%' }); } ... Read More
auto saving a draft
// jquery setInterval(function() { $('#theFormToSave').ajaxSubmit({ url : 'SaveDraft', success: function (data, textStatus) { if (data.success) { alert('form successfully saved'); } ... Read More