Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
45 views

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 ...
1
vote
2answers
63 views

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 ...
1
vote
4answers
1k views

How to uncheck all rows using UITableViewCellAccessoryCheckmark

I've got a UITableView with each row containing a checkbox using UITableViewCellAccessoryCheckmark. I can't figure out how to uncheck all the checkboxes using the didSelectRowAtIndexPath method. - ...
1
vote
1answer
717 views

Checkable UIPickerView in iPhone Safari

I try to custom my pickerview to be checkable like when you click dropdownlist on webview as in the picture (youtube website). http://img830.imageshack.us/img830/3747/screenshot20101004at606.png I ...
1
vote
1answer
3k views

UITableViewCell checkmark change on select

Am I correct in thinking that to change the checkmark for "on" to "off", I must change the CellAccessoryType between none and checkmark on the didSelectRowAtIndexPath? Because I have done this but I ...
1
vote
1answer
3k views

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 ...
0
votes
0answers
41 views

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 ...
0
votes
1answer
138 views

Table View Did Select Row

So i have a tableView with checkmark accessory type and I have such method: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { NSUInteger newRow = ...
0
votes
2answers
196 views

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 ...
0
votes
3answers
98 views

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 ...
0
votes
0answers
52 views

Grouped Table and Allowing Checkmark in each Section

I have looked and looked but cannot find assistance with creating a grouped table view that allows you to check just one selection from each section. There are many answers for selecting a cell from ...
0
votes
1answer
94 views

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 ...
0
votes
1answer
300 views

TableView Cell reuse and unwanted checkmarks - this is killing me!

Apples iOS TableView and cell reuse is killing me. I searched and searched and studied, but can't find good docs or good answers. The problem is that when the TableView reuses cells things like ...
0
votes
0answers
151 views

Exclusive UITableView list for checkmarks?

Can any one tell and give complete understanding and Sample code of Exclusive UITableView list for checkmarks? I have read sample code but it has the basic logic not complete sample. I also have ...
0
votes
1answer
128 views

How can I save array indexes corresponding to uitableview selected rows (in the described example)?

I have 3 object: A, B and C. A and C communicate through B via two protocols (say A1 and C1) implemented by B. In particular, the A's interface is: @interface A : NSObject { id <A1> ...
0
votes
0answers
165 views

Lesson Program … Tableview checkmarks updated from an array of bools

I am writing an app which contains lessons as a subview of a tableView and when the user completes the lessons it unhides a checkmark of my custom TableViewCell according to an array of BOOLs. My ...
0
votes
1answer
994 views

UITableView Checkmark Only Select One

I am using the code below to set a UITableViewCell's accessory to a checkmark and then write to NSUserDefaults. However it doesn't seem to be working properly. The NSUserDefault never seems to be set. ...
0
votes
2answers
667 views

How to preserve the index path value in the table view in iPhone?

I have created a table view and displayed the datas. When i click the data in the table view, i put the accessory mark (using UITableViewCellAccessoryCheckmark, Like, Check Mark). Now i want to ...
0
votes
1answer
2k views

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 ...
0
votes
1answer
373 views

How do I add a checkmark to a table view?

I've put in this code: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell * tableCell = [self.tableView ...
0
votes
1answer
389 views

ToDo-App Checkmark

Hey, each todo app has a empty box on the left handside, when you touch the box, it changes to a checked box. When you tap it again, the checkmark disappears. I think everybody knows what I mean. As ...
0
votes
4answers
2k views

How do you activate checkmarks in list activity?

I have a ListActivity with an array adapter declared like arrayAdapter = new ArrayAdapter<String> (this, android.R.layout.simple_list_item_checked); This shows a bunch of rows with checkmarks on ...