Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/catalog/document-card/src/model/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/catalog/document-card/src/model/model.js

export default class DocumentModel extends BX.UI.EntityModel
{
	constructor(id, settings) {
		super();
		this.initialize(id, settings);
	}

	isCaptionEditable()
	{
		return true;
	}

	getCaption()
	{
		var title = this.getField("TITLE");
		return BX.type.isString(title) ? title : "";
	}

	setCaption(caption)
	{
		this.setField("TITLE", caption);
	}

	prepareCaptionData(data)
	{
		data["TITLE"] = this.getField("TITLE", "");
	}
}