widget/mendix/list_attribute

Types

pub type ListActionValue
pub type ListAttributeValue
pub type ListExpressionValue
pub type ListWidgetValue

Values

pub fn attr_filterable(attr: ListAttributeValue) -> Bool

필터링 가능 여부

pub fn attr_formatter(
  attr: ListAttributeValue,
) -> formatter.ValueFormatter

속성 포매터

pub fn attr_id(attr: ListAttributeValue) -> String

속성 ID

pub fn attr_sortable(attr: ListAttributeValue) -> Bool

정렬 가능 여부

pub fn attr_type(attr: ListAttributeValue) -> String

속성 타입 문자열 (“String”, “Integer”, “DateTime” 등)

pub fn get_action(
  action: ListActionValue,
  item: mendix.ObjectItem,
) -> option.Option(a)

특정 아이템의 액션 가져오기 (Option(ActionValue) 반환)

pub fn get_attribute(
  attr: ListAttributeValue,
  item: mendix.ObjectItem,
) -> a

특정 아이템의 속성 값 가져오기 (EditableValue 반환)

pub fn get_expression(
  expr: ListExpressionValue,
  item: mendix.ObjectItem,
) -> a

특정 아이템의 표현식 값 가져오기 (DynamicValue 반환)

pub fn get_widget(
  widget: ListWidgetValue,
  item: mendix.ObjectItem,
) -> react.ReactElement

특정 아이템의 위젯 렌더링 가져오기 (ReactElement 반환)

Search Document