Questions tagged [checkmark]
149 questions
2
votes
1 answer
How to implement checkmark buttons in iPad out side of tableview
How to implement custom checkmark buttons depends on array count, and need to allow multiple selection in those buttons. Currently I'm used like this,
int YAxis = 300;
for (int x=0; x< [myResultArray count];x++)
{
checkmarkButton = [UIButton…

Friend
- 43
- 1
- 7
2
votes
1 answer
CheckedTextView checkmark in ListView row not showing up
I have a problem with the Checkmark of my ListView row layout. The checkmark doesn't show up when the ListItem is clicked even though the ListView works (the interaction works). How can i fix this problem?

user1617102
- 61
- 2
- 9
2
votes
3 answers
How to save tableView cell's checkmark after reload view use NSUserDefaults?
I'm new to ios development, and I'm using checkmark for cells in a UITableView.
I want storing checked cell in a NSUserDefaults database, When I reload the app, the checked cell that previously selected will be display, I'm try to defferent ways,…

Andy_24
- 1,353
- 2
- 12
- 20
1
vote
3 answers
Checkmark to exclusive item in Javascript
Hi I am using Titanium to create a table of row that can be checked.
I need to write some code in Javascript that allows only one row to be checked and when one is checked the other ones are unchecked.
I am not worried about Titanium part but more…

Leonardo Amigoni
- 2,237
- 5
- 25
- 35
1
vote
0 answers
add checkmark in 1 row in 2 sections
if i use this code it's ok i can add 1 checkmark in only 1 row but in 2 sections but i need to add 1 checkmark in each section.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
int newRow =…

XcodeMania
- 305
- 5
- 20
1
vote
2 answers
iOS - how to set a checkmark in a UITableView the first time the table is loaded
I am an iOS newbie. I am using a checkmark to in a UITableView, and storing the checked value in a local database. When I load the app for the first time, I want to set the value of the checkmark depending on which value exists in the db. How would…

Suchi
- 9,989
- 23
- 68
- 112
1
vote
3 answers
Cell accessorytype doesn't reload on [tableview reloadData]
I'm very new to iPhone programming, so my problem might be caused by total lack of knowledge of very basic principles.
I'm developing an iPhone app that has two Views. The first view has two buttons, when one of the buttons is pressed, a modalview…

AndHeiberg
- 1,029
- 1
- 10
- 29
1
vote
1 answer
How do I add a checkmark on my form fields?
I'll start with a confession; I'm very new with HTML and CSS. Nonetheless, I haven gotten the task from work to customise and optimise the Microsoft Dynamics forms with HTML and CSS.
The request is to add checkmarks to the field that are filled in…

RLV2525
- 13
- 3
1
vote
2 answers
UITableViewCellAccessory check
I have an array which loads in table view, and if users taps a certain cell it changes to UITableViewCellAccessoryCheckmark.
How can I check what object in array is checked and add all objects that are checked to another array?

vburojevic
- 1,666
- 5
- 24
- 34
1
vote
1 answer
Checkmarx: Unsafe object binding
We are using Java Spring framework. We have an endpoint for passing email object.
@RequestMapping(method = RequestMethod.POST, path = "/api/messaging/v1/emailMessages/actions/send")
String sendEmail(@RequestBody Email email);
Here checkmarx…

kandarp
- 991
- 1
- 14
- 35
1
vote
0 answers
How to position the checkmark in the center of the checkbox?
I'm struggling with the position of my checkmark from my checkboxes.
This is the code for the checkbox:
/* Style the tick */
.container .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width:…

Zaraa
- 13
- 2
1
vote
1 answer
How do I change the bool value of an item that comes from a struct and hence update a checklist?
Background
I am trying to build a list with a checkmark/tick box next to it. A struct is used to create the "data" for each item. This is then passed on to a class which holds an array of the items created by the struct. From here I used the…

Murray Gordon
- 43
- 5
1
vote
1 answer
Swift - Allow ONLY one checkbox selected inside a UITableViewCell
I am trying to achieve to make my TableView only accept one checkbox per cell.
I have used this solution to save User Defaults for the checkmarks which works fine but it allow multiple selections.
I have tried so many solutions on Stack overflow but…

Broski
- 75
- 9
1
vote
1 answer
Unsafe Object Binding in Checkmarx scan
I have tried adding null check and try catch blocks but I am not able to solve this issue.
Error :
The DeleteConfirmed at VCSSource/Web/Controllers/EnvController.cs
in line 180 may unintentionally allow setting the value of SaveChanges in…

Jay
- 1,317
- 4
- 16
- 40
1
vote
4 answers
Save the state of checkmarked cell in table view in swift 4.2
I have made a table view in a view controller and populating it programmatically. I am able to checkmark on cell at a time as i wanted but when i come back to that screen, it is not there.
These are my arrays:
let devCourses =…

Shubh9718
- 63
- 12