Skip to content

MobileCRM.UI.HomeForm.updateHomeItems

rescocrm edited this page Aug 2, 2024 · 10 revisions

[v10.3] Updates specified home items.

Arguments

Argument Type Description
items Array A list of home item that has to be changed. Each home item is an object with following properties: path, title, subTitle, badge, isVisible.

This example demonstrates how to update title, subtitle, badge and visibility for a list of home items

MobileCRM.UI.HomeForm.updateHomeItems([
	{
		path: "@Dashboard",
		title: "Sales Summary",
		subTitle: "Monthly statistics",
	},
	{
		path: "contact",
		isVisible: false,
	},
	{
		path: "opportunity",
		isVisible: true,
	},
]);
Clone this wiki locally