Hi Pallavi,
Well, the suggested workaround solution gives you approximatly better result.
I think you can modify it as you require
Let us understand how it works:
Scenario1:
current browser width : 1066
lv_broswer_width = ( 1066 / 10 ) = 107
Hence, setting alv width lv_alv_width = 107px
Now, to determine no. of columns for scroll.. roughly
lv_cols = ( 107 / 10 ) = 11
Scenario2:
current browser width : 830
lv_broswer_width = ( 830 / 10 ) = 83
Hence, setting alv width lv_alv_width = 83px
Now, to determine no. of columns for scroll.. roughly
lv_cols = ( 83 / 10 ) = 8
So, we are getting approximate optimized result but not exact 100%
Regards,
Rama