html tag in dhtmlxGrid header

Hi ,
I want to use HTML tag in XML as attachHeader function? Some thing like following :

    <afterInit>
        <call command="attachHeader"><param><input type='text' value ='a'>,<input type='text' value ='a'>,<input type='text' value ='a'></param></call>
    </afterInit>

Thank you

Please, try to use the CDATA:

<afterInit> <call command="attachHeader"><param><![CDATA[<input type='text' value ='a'>,<input type='text' value ='a'>,<input type='text' value ='a'>]]></param></call> </afterInit>

thank you so much
Now , Whenever I click on any element, grid sort is lunched and It’s not suitable
Do you have any solution for me?

Please, try to add the cancelBubble event to your input:

Thx