Search Results for

    Show / Hide Table of Contents

    October 2019

    Web Client

    Icon and Tooltip in ActionCell

    It is now possible to add icons and tooltips to action cells with three new properties:

    web:Icon (default: null) - specifies the name of an icon (https://www.telerik.com/kendo-angular-ui/components/styling/icons/#toc-list-of-font-icons)

    web:HideContent (default: false) - specifies if the text (Content Property) should be displayed

    web:Tooltip (default: null) - the tooltip to display

    <List ...
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="web"
    xmlns:web="http://www.timecockpit.com/2016/web/controls">
    ...
    <ActionCell EntityObject="=Current.Me" Action="USR_ModifyDescriptionWithoutParameterWithSave" Content="Timesheet with save ..." web:Icon="star" Foreground="#ffcc00" Header="Icon with Text" />
    
    <ActionCell EntityObject="=Current.Me" Action="USR_ModifyDescriptionWithoutParameterWithSave" Content="Content Full-Client" web:Icon="star" web:HideContent="True" Foreground="#ffcc00" Header="Icon" web:Tooltip="='Tooltip for Icon: ' + Current.Description" />
    
    <ActionCell EntityObject="=Current.Me" Action="USR_ModifyDescriptionWithoutParameterWithSave" Content="=:Iif(Current.Description = 'test', 'star', 'apply-format')" web:Icon="=:Iif(Current.Description = 'test', 'star', 'apply-format')" web:HideContent="=:Iif(Current.Description = 'test', True, False)" Foreground="#ffcc00" Header="Icon with Expressions" />
    ...
    </List>
    

    Bug Fixes & Improvements

    • Url cells in forms with absolute path did not work
    • Performance improvement for remaining vacation calculation in time sheet calendar
    • Improve this Doc
    In This Article
    Back to top Copyright © 2020 software architects gmbh