Questions tagged [checkmark]

149 questions
0
votes
0 answers

Checkmarks - user input from element toByteArray

Getting the below exception in the checkmarks, Method update at line 108 of com.ibm.vch.vch-*\UpdateServiceImpl.java gets user input from element toByteArray . This element’s value flows through the code without being validated, and is eventually…
Anu
  • 37
  • 1
  • 7
0
votes
1 answer

How to delete (reset) all selected multiple checkmarks?

I have a tableView with a multiple selection with accessoryType checkmarks. Then i have a „Reset All“ Button in the Navigation Bar. I want to clear (remove/reset) ALL checkmarks with this Button. First the Struct and Array I made: struct Area { let…
0
votes
1 answer

Improper Resource Access Authorization error in checkmarx when reading a property

Checkmarx report is showing Improper Resource Access Authorization for the following line. String endPoint=prop.getProperty("endpoint"); As mentioned in this answer, I have added access control check before reading the property. But checkmarx…
din_oops
  • 698
  • 1
  • 9
  • 27
0
votes
3 answers

Checkbox input can't be unchecked in mobile view on chrome

Once I check the checkmark box I am not able to uncheck it when I am on mobile view in chrome and when I change to desktop the checkmark does not even stay and I am not able to check the box at all. What am I missing? Code : input[type=checkbox]…
0
votes
0 answers

how to disable other rows when select one of them in tableview?

I want to select only specific section, means suppose section 1 row is selected and if if I select section 2's any row then remove section 1 row. and how can I get row value from var selectedIngredients : Set = []…
Pinal
  • 23
  • 6
0
votes
0 answers

Tring to display a checkmark("✓") in a html report from a jsp page

I am trying to display checkmark in a html page from jsp file. But it is displaying as '?' I added '<%@ page contentType="text/html; charset=UTF-8" %>' to jsp page, but no luck, Action class: char checkMark =…
Shr
  • 31
  • 5
0
votes
1 answer

How to show checkmark and move button at a same time in a UITableViewCell

How can I show checkmark accessory and move accessory at a same time in a UITableViewCell, maybe the checkmark on the left and move button on the right of cell. I need it because I want to let user chose to enable/disable options and also reorder…
Son Nguyen
  • 3,481
  • 4
  • 33
  • 47
0
votes
1 answer

Using a checkmark to add value to a cell

im trying to create a macro for adding text to a field i want when i click the checkmark to add a specific text to a case i have 8 checkbox each one will add a different text to the same case right now my code look like this Private Sub…
A J
  • 5
  • 2
0
votes
1 answer

Getting DOM xss attack for input value

I have a class named eHelpDhtm.js, when I am scanning my whole project through checkmark, I am able to see vulnerability related to DOM XSS attack. I am getting below DOM XSS attack issue: Method PopupMenu_InvokeReady of User Guide\Help\eHelpDhtm.js…
0
votes
1 answer

Swift: Trouble with Accessories

in my project I was just adding this line of code to add a little checkmark next to the cell that the user selects. (In did select row at function) let currentCell = tblView.cellForRow(at: indexPath)! as UITableViewCell …
rarora25
  • 99
  • 9
0
votes
0 answers

How to get the Custom Check-marked rows in UITableView?

I have a tableview setup like shown below. I want the user to only select the checkmark on right side and not the row. User can select multiple checkmarks. Now I want to get the data of all the rows whose checkmark is selected when 'Add Listing' is…
Fahad Ali
  • 205
  • 1
  • 9
0
votes
0 answers

Unnecessarily a check / tick mark appearing in my button [ made of anchor tag i.e. link ]

I'm using the following code to display a button to clients: …
0
votes
1 answer

Splitting the sourcecode before passing to Quality gates

I have a build where the Checkmarx scan is taking more than four hours to scan the full source code. Is there any way to split the source code into three or four packages and scan separately. So that we can scan them parallelly and run the scans…
mystack
  • 4,910
  • 10
  • 44
  • 75
0
votes
1 answer

How to put a checkmark after search

Im trying to put checkmarks after doing a search. I've seen some answers here but it doesn't work for me. Ive tried some of the answers but it will only make an error. Here's the code that I wrote. struct finalCheckednames { var name: String; var…
Nick
  • 104
  • 11
0
votes
1 answer

How to get the value of Int in [Int : Bool]?

Im Trying to get the value of Int from [Int : Bool] so that i can remove the row value from the tableView. Here's my code. var checkmarks = [Int : Bool]() func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { …
Nick
  • 104
  • 11