Hello,
I have a grid which shows orders. If the order is archived then it it appends "<<Archived>>" at the start of order name.
E.g. if Order name is ABC it will be shown as <<Archived>> ABC.
Programmatically I append "<<Archived>>" at the start of it when it is archived and save it in db.
Now in my application after archiving I have to show this title at three places
1. In Grid : Which works fine. It shows it as "<<Archived>> ABC".
2. When I open my order in detailed view its title is shown in textbox; For showing it properly I use HttpUtility.HtmlDecode function.
3. I have a grid filter for each column. This column shows all the archived orders as "<<Archived>>OrderName".
What should I do to properly display it?
I have a grid which shows orders. If the order is archived then it it appends "<<Archived>>" at the start of order name.
E.g. if Order name is ABC it will be shown as <<Archived>> ABC.
Programmatically I append "<<Archived>>" at the start of it when it is archived and save it in db.
Now in my application after archiving I have to show this title at three places
1. In Grid : Which works fine. It shows it as "<<Archived>> ABC".
2. When I open my order in detailed view its title is shown in textbox; For showing it properly I use HttpUtility.HtmlDecode function.
3. I have a grid filter for each column. This column shows all the archived orders as "<<Archived>>OrderName".
What should I do to properly display it?