hello,
Sorry to bother you,
When we are a table state, I want to hide the row and column Numbers (the attachment indicates the position),How do we do that?
I am looking forward to your reply. Thank you very much.
Hello, Yen,
Thank you for writing to us.
There is a showHeaders
option capable of hiding the row and column numbers. Check out the demo on JSFiddle: http://jsfiddle.net/flexmonster/fe2k6m8y/75/.
Also, a lot of other useful options are available in our docs: Options Object.
Please let me know in case of any other questions.
Regards,
Tanya
This is nice, BUT the showHeaders=false option is NOT effective until the pivot received data. If we have a screen with a pivot that we refresh later than initialization of the page, we will still see the ugly column headers when we launch the page. Also, it would be nice if we could hide the individual column filter icons (the gears), along with hiding the column headers. That way our pivot, in case we want to show one row only (as a slim summary record) becomes a very useful tool. Can you please reply if these are possible options for us?
Hello, Vasile,
Thank you for reaching out to us.
For such cases, we kindly advise setting the showHeaders
option in the global
object. The options that are defined in the global
object have a higher priority and, therefore, they shouldn't get reset when Flexmonster is refreshed.
For more information about the global
object, please see our guide.
Regarding hiding the filter icons and the column headers, this can be achieved by setting the showFilter
and showHierarchyCaptions
grid options to false
, for example:
global: {
options: {
grid: {
showHeaders: false,
showFilter: false,
showHierarchyCaptions: false
}
}
}
Please see the following JSFiddle examples we have prepared for you:
showHierarchyCaptions
grid option to false
: https://jsfiddle.net/flexmonster/1ept8b7q/
We hope this helps.
Please let us know if this works fine for you.
Looking forward to your reply.
Kind regards,
Vera