I was wondering if there is any way we can call extensions in expression attribs,
For Eg, here is some extension
fun String.parseServerDate():String{
...
}
To call while in kotlin, we use myTime.parseServerDate()
So, my problem is how can I call this extension within in expression language
Tried @{mydate.parseServerDate()}
which is not working
I tried importing my extension kt file in <import>
tag, but nothing seems to be happening