Need sorting without Paginginfo

Hi ,

 

I have list of year in drop down which i want to sort without using paging info function ?

 

Can we do that ? 

 

 

 

  Discussion posts and replies are publicly visible

Parents Reply
  • But to use this paging info i have to convert data to dataset which i don't want.
    I just simply want to apply sorting on year on my local!year data which i am getting from different dataset where already one kind of sorting has been done in expression rule. So before or further i don't want to break any chain.

    Further i am using this local!year in below code where i am getting error so like that at different places i have to make changes if i convert this into dataset with paging info

    local!data: rule!get_Data(
    local!id,
    "address"
    ).data,

    local!years: reject(
    fn!isNull,
    union(
    local!data.year,
    local!data.year
    )
    ),

Children