Welcome to the Vue feedback portal. We’re happy you’re here! If you have feedback on how to improve the Vue, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

In the pivot view control the hierarchy of row/ columns are represented in the form 'Column1.Column2'. For the pivot grid shown below, the column 1 will have the header text - "FY2015.Q1.Units Sold". 

Empty


Now, I have a case where i am accessing this header text on the 

hyperlinkCellClick(args) 

event, where I have-

args.data.rowHeaders

args.data.columnHeaders

Both of these fields are defined in the same way as explained above. I need all the three values out of "

FY2015.Q1.Units Sold
" so I split this on dot (.) which will give me "
FY2015
","
Q1
" and "
Units Sold
".

But this fails if one of these values have a dot as well, that is "
FY.2015.Q1.Units Sold
" wont return 
"
FY.2015
", "
Q1
" and "
Units Sold
"  but it will return four different values
"
FY", "2015
", "
Q1
" and "
Units Sold


Is there a way to encapsulate individual fields in braces so that the header text is in a form like "{Column1}.{Column2}" or anything like this essentially which will help us in distinguishing the dot that represents hierarchy and the dot in the value?

I tried replacing dot in my result set but that's not an option right now because it messes up with decimal point values

Please let me know if you need more information on this.

Thanks a lot

Dhruv