Regarding Microflow

0
Hi Mendix Team, Is that Possible to Call a CSS Property in Microflow in Mendix? Thanks in Advance
asked
3 answers
0

Hello Prashanth,

 

No this is not possible.

But I'm also not sure of the usecase that would be useful for.

What are you trying to achieve?

answered
0

You could create a javascript action and call it from a nanoflow. 

answered
0

Hi Prashanth M,

 

Add your Data grid inside a container and add a class for it. In my case it is test and in your scss file add the below class. 

.test{

    .table .tr:last-child > .td {

       

        background-color: #f21c1c;

        position: sticky;

        bottom: 0;

        z-index: 1;

    }

}

 

Enable virtual scrolling property in your Datagrid 2. 

 

Hope it helps!!

answered