Customizable and embeddable search widget that works with app.zapiness.com
zAPI.SearchWidget.new({
mountPoint: "#zAPI-sw-root",
host: "https://rrsoft.zapiness.com",
endpoint: "books",
fields: [
"title",
"publisher",
"authors",
"page_count"
]
});
zAPI.SearchWidget.new({
mountPoint: "#zAPI-sw-root",
host: "https://rrsoft.zapiness.com",
endpoint: "books",
preview: true,
fields: [
"title",
"publisher",
"average_rating",
"rating_count",
"language",
"categories",
"authors",
"page_count"
]
});
zAPI.SearchWidget.new({
mountPoint: "#zAPI-sw-root",
host: "https://rrsoft.zapiness.com",
endpoint: "books",
label: "authors",
fields: [
"title",
"publisher",
"average_rating",
"rating_count",
"language",
"categories",
"authors",
"page_count"
]
});
zAPI.SearchWidget.new({
mountPoint: "#zAPI-sw-root",
host: "https://rrsoft.zapiness.com",
endpoint: "books",
label: "authors",
showSearchBar: false,
fields: [
"title",
"publisher",
"average_rating",
"rating_count",
"language",
"categories",
"authors",
"page_count"
]
});