Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
240
Sorting Issue in Single Page App (Durandal)
posted

I am working with igniteUI 13.1 and rendering a grid in a SPA (single page app).    The grid is rendering perfectly and works well with all features that I have tested to this point with the exception of SOrting.   I can click on the column header and get the grid to sort properly as long as I don't click on the actual header text.  If I click on the actual header text, it routes me back to the start page of the App.   I tracked this down in the rendered HTML code to an Anchor tag that surrounds the headertext.   

Such as

<a href='#'>
  <span class=ui-iggrid-headertext"  style="width: 100%;" > First Name <span>
</a>

 

If I click on the words First Name it routes back to the home page,  If I click on the blank space in the header after those words, it sorts properly.

 

Is there a  way to get around this issue?