surekha
December 6, 2014, 11:19am
#1
I have a grid where i have a columns displaying text, but with an underlying link loaded from xml, see example:
<![CDATA[
]]>
<![CDATA[
Bedrijfsdoelstellingen
]]>
0.3
Hoofdproces
Goedgekeurd
06/04/2009
06/04/2009
Marc Steentjes MFP
<![CDATA[
]]>
Now I want to order on the text, but it orders on the text in the cdata.
How can i have this working correctly?
sematik
December 8, 2014, 2:24pm
#2
You may try to create your own custom sorting function:
docs.dhtmlx.com/grid__sorting.ht … ngfunction
or create your own custom column type, so that the value of your cell will be the required text:
docs.dhtmlx.com/grid__columns_ty … olumntypes
or you may use the “link” column type:
dhtmlx.com/docs/products/dhtmlxG … _grid.html
surekha
December 11, 2014, 3:32pm
#3
Hi,
<![CDATA[
"+15+" ]]>
mygrid.attachHeader(#text_filter );
Now I want to filter on the text, but it filters on the text in the cdata.for example if i serch for 6 it’s dispalying which suppose to.Could you please help me out to filter the data which user can see.
sematik
December 16, 2014, 6:08pm
#4
in this case you also need to create your own custom filtration.
Here you can find a tutorial:
docs.dhtmlx.com/grid__filtering. … ilterlogic