Tagged Questions
The strikethrough tag has no wiki summary.
5
votes
2answers
275 views
ReST strikethrough
Is it possible to strike text through in Restructured Text?
Something that for example renders as a <strike> tag when converted to HTML, like:
ReSTructuredText
5
votes
3answers
264 views
CSS: How to clear line-through for an element in a table row?
I'm having trouble "clearing" a line-through that I'm using on a table row. I don't want the line-through effect on the link. I'm changing the tr class dynamically with javascript so I would like to ...
5
votes
4answers
2k views
Linethrough/strikethrough a whole html table row
After some research, I couldn't find an answer to this question. There was this but it didn't really answer my question. I would like to "strikethrough" a complete html table row in CSS, not just the ...
3
votes
5answers
6k views
How to strike out inside LaTeX equations?
Please see the snippet below and tell me how can I achieve the same strike-out effect as in the main text. I am using the version of LaTeX from the latest Ubuntu repositories.
\documentclass{article}
...
2
votes
1answer
168 views
Mac OS X: strikethrough the text in a label (NSTextField)
Is it possible to strikethrough the text in a label (NSTextField)?
I have tried to use the Font Panel, but apparently these are ignored when I try to set them:
2
votes
1answer
268 views
Best way to set a strikethrough on individual cells of the WPF DataGrid?
What is the best (easy) way to set the font to a strikethrough style on individual cells of the WPF DataGrid?
...
Options that I'm aware of are inserting TextBlock controls in individual cells or ...
2
votes
3answers
782 views
How to strikethrough text of a selected row(having checkbox in first column) of JTable?
I have a Jtable with a checkbox in first column. I want to strikethrough text of a row when the checkbox is selected. (eg same as we do in microsoft outlook when our task is complete.) I have tried ...
2
votes
4answers
2k views
Is there an easy way to strike through text in an app widget?
I was wondering if there is an easy way to strike text within an app widget in Android. In a normal activity, it is pretty easy, using textview flags:
textView.setPaintFlags(textView.getPaintFlags() ...
1
vote
1answer
245 views
Is it possible to strikethrough text in a LabelField?
I've been able to style a LabelField with bold, underlined and italic text, but I have yet to find a way to specify strikethrough text. I haven't been able to find any documentation that it's ...
1
vote
1answer
202 views
How to make text strikethough in Sphinx
Is it possible to make text strikethrough in the sphinx documentation generator?
1
vote
4answers
920 views
CSS: Line-through with a color different from the text color?
I’d like to have gray text with a red strike-through, but this style doesn’t work:
color: #a0a0a0;
text-decoration: line-through 3px red;
What am I doing wrong?
1
vote
2answers
1k views
fPDF: how to strikeout/strikethrough justified text in multicell?
I am generating a PDF with fPDF.
I need to strikethrough a long text inside a MultiCell. The text is justified to left and right, which probably is the source of the problem.
Here is my code:
...
0
votes
1answer
57 views
make strikethrough text in listview item android
In my code, there is a listview and I have registed Context menu for this ListView
listView=(ListView) findViewById(R.id.ListView01);
registerForContextMenu(listView);
and this is my context ...
0
votes
3answers
114 views
Firebug CSS strike-through
I've made an global css that I used in two page (basic search and advance search page). I use it in advance search page, and the css script is running well. But when I move to basic search page (by ...
0
votes
2answers
32 views
Is it possible to display text in a console with a strike-through effect?
I have already looked into ANSI escape codes, but it looks like only underlining is supported.
Do I miss something or is there another option?
If it is not possible, is there something equivalent in ...
0
votes
2answers
103 views
format textview in Listview
I have a ListView with some items. I'd like to set ListView where some items are strikethrough. I know how to make it using onclicklistener, but I'd like to load ListView with already marked ...
0
votes
1answer
170 views
Android ListView strikethrough text
I'm doing a Shopping List in Android, for which I'm storing Products in SQLite Database.
The Products are Clickable so that they should get strikethrough. Updating Database works fine but the ...
0
votes
4answers
58 views
Clear the text style of the Element using Javascript
I need to clear the text decoration property of the element using java script.
Currently I am setting text decoration property of element to 'line-through'. In some point of time i need to undo the ...
0
votes
2answers
683 views
CoreText and strikethrough on iPhone
I'm currently struggling with the need to display strikethrough text in many UITableViewCells. Something that written in HTML would looke like
<strike>€99</strike> save 50% => now €49
I don't ...
0
votes
2answers
729 views
GridView Style based on bound data
I would like the rows of my GridView to have strikethrough based on a bound data value called IsObsolete. I tried to do this:
<RowStyle BackColor="#EFF3FB" Font-Strikeout='<%# ...