SMART datagrid v.1 > Classes > OperateOptions

Back  Forward

DataLudi.OperateOptions.filteringToast  property

The setting information Object which is displayed when filtering the column. 

This setting object is created internally when initializing grid. 

If specify as string, the value will be set in message and visible will be set as true at the same time. If specify as Boolean value, visible will be set as true. When specify as Object, only the specified properties will be set. 

Getter
function filteringToast(): ToastOptions
Setter
function setFilteringToast(value: ToastOptions|Object)
Code -1
    grid.setOptions({
        operate: {
            filteringToast: {
                visible: true,
                message: "Filtering...", 
                styles: {
                    background: "#ffff00",
                    fontSize: "20px"
                }
            }
        }
    });
Code -2
    grid.setOperateOptions({
        filteringToast: {
            visible: true,
            message: "Filtering...", 
            styles: {
                background: "#ffff00",
                fontSize: "20px"
            }
        }
    });
Code -3
    grid.operateOptions().setFilteringToast({ 
        visible: true,
        message: "Filtering...", 
        styles: {
            background: "#ffff00",
            fontSize: "20px"
        }
    });
See Also
sortingToast
groupingToast
ToastOptions
Examples
Toast View
Column Filtering
Tree Filtering