ich einen benutzerdefinierten x-editierbare Eingabetyp habe für eine Stadt eingeben und Auswahl eines Landes, das wie so macht:
X-editierbare benutzerdefinierter Feldtyp nicht respektiert überschriebene Standardwerte
Beachten Sie die Schaltflächen am unteren Rande; Dies ist so, weil der Initialisierungscode enthält showbuttons: 'bottom'
:
$('#location').editable({
url: '/post',
title: 'Enter city and country',
showbuttons: 'bottom',
value: {
city: "Napier",
country: "nz"
},
sourceCountry: [
{value: "af", text: "Afghanistan"},
...
{value: "zw", text: "Zimbabwe"}
]
});
Aber für dieses Widget macht es keinen Sinn, die Knöpfe an der Seite zu machen; also wollte ich, dass die Buttons standardmäßig vorhanden sind. Daher habe ich versucht, den Standard für diesen editierbaren Typ Einstellung:
Location.defaults = $.extend({}, $.fn.editabletypes.abstractinput.defaults, {
tpl: '' +
'<div class="editable-location">' +
'<label><span>City: </span><input type="text" name="city"></label>' +
'</div>' +
'<div class="editable-location">' +
'<label><span>Country: </span><select name="country"></select></label>' +
'</div>',
inputclass: '',
showbuttons: 'bottom',
sourceCountry: []
});
Aber die showbuttons
Schlüssel ignoriert wird; die anderen gelten gut, aber nicht diese. Wie kann ich den Standardwert für einen bearbeitbaren Typ festlegen?
Hier ist der editierbaren Code,
(function ($) {
"use strict";
var Location = function (options) {
this.sourceCountryData = options.sourceCountry;
this.init('location', options, Location.defaults);
};
//inherit from Abstract input
$.fn.editableutils.inherit(Location, $.fn.editabletypes.abstractinput);
$.extend(Location.prototype, {
render: function() {
this.$input = this.$tpl.find('input');
this.$list = this.$tpl.find('select');
this.$list.empty();
var fillItems = function ($el, data) {
if ($.isArray(data)) {
for (var i = 0; i < data.length; i++) {
if (data[i].children) {
$el.append(fillItems($('<optgroup>', {
label: data[i].text
}), data[i].children));
} else {
$el.append($('<option>', {
value: data[i].value
}).text(data[i].text));
}
}
}
return $el;
};
fillItems(this.$list, this.sourceCountryData);
},
value2html: function (value, element) {
if (!value) {
$(element).empty();
return;
}
var countryText = value.country;
$.each(this.sourceCountryData, function (i, v) {
if (v.value == countryText) {
countryText = v.text.toUpperCase();
}
});
var html = $('<div>').text(value.city).html() + '/' + $('<div>').text(countryText).html();
$(element).html(html);
},
html2value: function (html) {
return null;
},
value2str: function (value) {
var str = '';
if (value) {
for (var k in value) {
str = str + k + ':' + value[k] + ';';
}
}
return str;
},
str2value: function (str) {
return str;
},
value2input: function (value) {
if (!value) {
return;
}
this.$input.filter('[name="city"]').val(value.city);
this.$list.val(value.country);
},
input2value: function() {
return {
city: this.$input.filter('[name="city"]').val(),
country: this.$list.val()
};
},
activate: function() {
this.$input.filter('[name="city"]').focus();
},
autosubmit: function() {
this.$input.keydown(function (e) {
if (e.which === 13) {
$(this).closest('form').submit();
}
});
}
});
Location.defaults = $.extend({}, $.fn.editabletypes.abstractinput.defaults, {
tpl: '' +
'<div class="editable-location">' +
'<label><span>City: </span><input type="text" name="city"></label>' +
'</div>' +
'<div class="editable-location">' +
'<label><span>Country: </span><select name="country"></select></label>' +
'</div>',
inputclass: '',
showbuttons: 'bottom', //WHY ISN'T THIS WORKING!!!
sourceCountry: []
});
$.fn.editabletypes.location = Location;
}(window.jQuery));
Ich ging zu Ihrem Spiel und ich sah die Tasten an der Unterseite. Ist das nicht dein gewünschtes Verhalten? –
jede jsfiddle link? – bmscomp
Er hat einen gepostet, aber es war 404, also habe ich ihn entfernt. –