Questions tagged [checkmark]
149 questions
3
votes
1 answer
mPDF (PHP) does not recognize html check mark
I am showing a table in HTML on my web page where a check mark is shown properly (I am using ✔ for the bold check mark).
I am using classic-asp to display the HTML. The html buildup (tableOutput) is then posted to a PHP script ($output =…

Christian Caron
- 33
- 4
3
votes
1 answer
Selecting checkmarks after reloading view or reloadData in tableView issue
I'm trying to create an application to select/deselect rows in tableView, all data is loaded from coreData, and when I select an element that allows me to update it in coreData and vice versa,
at the beginning everything is OK, I load data from…

Godrix
- 33
- 3
3
votes
4 answers
Swift 3 tableView not updating on reloadData()
I am building a master detail app. I have a sections view controller (VC) which is a child of master VC. Clicking on rows in the sections VC brings up different detail VCs where users complete required information. Once the information in a detail…

Chris Bell
- 61
- 1
- 1
- 3
3
votes
2 answers
Checkmark accepted at all 23 countries at the same place. But how can I set it for one place
enter image description hereI have two UITableViews: one with countries and other with coins. When I select a country I can see inside the amount of coins of that country. When I tap the amount of coins, a checkmark is filled out as checked. But the…

Stas
- 87
- 8
3
votes
2 answers
UIActionSheet checkmark
I need to mark selected button in UIActionSheet.
How can I add checkmark in UIActionSheet button?
Is there some way specific for UIActionSheet, without standard adding image inside button.

Nikola Nikolic
- 61
- 1
- 3
3
votes
1 answer
UITableView-Swift: Checkmark in UITableViewCell
I'm using Xcode 6.0.1, iOS8 and Swift.
I have to reproduce in my UITableView the same behavior of the Auto-Lock option in Settings->General. In Objective-C, in the past, I wrote
- (UITableViewCell *)tableView:(UITableView *)tableView…

Giorgio
- 1,973
- 4
- 36
- 51
3
votes
1 answer
Android CheckedTextView - Set checkMark dynamically
Given this XML property of the CheckedTextView's checkMark:
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
How can you set the checkMark property dynamically (i.e. from code)?
Does Android have any documentation on this?
Using:…

Tawani
- 11,067
- 20
- 82
- 106
3
votes
1 answer
How to apply check marks on a table view cell
I'm developing an iOS application, using Xcode 4.6 to code in Objective-C. I want to know how to put on a selected table view cell a check mark, and then to access to those cells already marked to reuse them, for example saving them in an array.…

Johnny Dahdah
- 995
- 5
- 15
- 21
2
votes
2 answers
Spring data JPA Checkmarx vulnerability- Improper Resource Access Authorization for @Query annotation
We are currently working on web application with persistence layer implemented using Spring data JPA and its working out really well for us however while scanning our code using checkmarx it complains for "Improper Resource Access Authorization"…

Gautam
- 3,276
- 4
- 31
- 53
2
votes
1 answer
UiTableViewCell single selected checkmark for each section in the tableview
How to make checkmark single selection to Each Section , with custom cells , when I realize this code , cell doesn't marked
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
guard let it =…

Чингиз Куандык
- 35
- 7
2
votes
1 answer
UICollectionViewCell checkmark return nil
i tried to follow this
But when i do cell.checkmarkView.checked = true it returns nil so everything crash.
Here is my MyCollectionViewCell:
class MyCollectionViewCell: UICollectionViewCell {
@IBOutlet weak var myLabel: UILabel!
var checkmarkView:…

John
- 55
- 1
- 5
2
votes
2 answers
How to create check mark in the table view in iPhone?
I want to create a check mark in the table view. When I tap the particular row, the check mark is visible, so I want to display the check mark when selected at the particular row. Please guide me and give me some links.
Here my code is,
-…

Pugalmuni
- 9,350
- 8
- 56
- 97
2
votes
3 answers
How to Create Accept/Decline Buttons with Boolean?
I have accept/decline as a switch:
<%= form_for @dueler do |f| %>
<%= f.check_box :accept, class: 'someclass', :data => { 'on-text'=>'Decline', 'off-text'=>'Accept'} %>
<%=…

AnthonyGalli.com
- 2,796
- 5
- 31
- 80
2
votes
3 answers
WPF replace checkmark from original checkbox
I'm trying to replace the checkmark of the standard WPF checkbox by my own checkmark (actually a Path). The checkbox should look like the standard one.
Where can I find the Microsoft xaml template of the checkbox, so I could modify it in the xaml?…

BlackTuareg
- 160
- 1
- 11
2
votes
3 answers
How do you activate checkmarks in list activity?
I have a ListActivity with an array adapter declared like arrayAdapter = new ArrayAdapter (this, android.R.layout.simple_list_item_checked); This shows a bunch of rows with checkmarks on the far right. Can you tell me how to get a reference…

bmalicoat
- 2,508
- 3
- 24
- 23