Richard Soeteman
04/23/2024, 8:32 AMKevin Jump
04/23/2024, 9:06 AMexportModel
is but if thats something that has been passed as a property, then you need to either dispatch and event so the parent item can set the value or if its from a context, you would call a method on the context to update the underling "observable" property ?Sebastiaan
04/23/2024, 9:08 AMjs
export type DropDownSelectorModel = {
selectedItem?: string | null;
dropDownItems?: Array<(NameValue)> | null;
};
Sebastiaan
04/23/2024, 9:09 AMRichard Soeteman
04/23/2024, 9:13 AM