moreButton

задает текст на кнопке "More comments"

string|function moreButton;

Example

webix.ui({
    view:"comments",
    url:"./common/comments",
    moreButton:"Load more"   
});


Default value:

webix.i18n.comments.moreButton
Details

Параметр moreButton может быть строкой или template-функцией.

Функция получает аргумент obj со свойством value, в котором хранится количество комментариев на сервере, которые еще не были загружены.

webix.ui({
    view:"comments",
    url:"./common/comments",
    moreButton:webix.template("Load more (#value#)")   
});
 
// или
 
webix.ui({
    view:"comments",
    url:"./common/comments",
    moreButton:function(obj){
        return "Load more (" + obj.value + ")";
    }
});
See also
  • API
  • Наверх