Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
1k views

UITableView in edit mode - 'Edit' button doesn't change status

I have a UIViewController class, with a tableView. In viewDidLoad: UIBarButtonItem *editIcon = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem: UIBarButtonSystemItemEdit ...
2
votes
1answer
94 views

Cell in editmode doesn't fire OnKeyDown event in C#

I've made own datagridview control which ovveride OnKeyDown event: public partial class PMGrid : DataGridView { protected override void OnKeyDown(KeyEventArgs e) { if ...
2
votes
2answers
3k views

How to set a custom edit-style icon in a UITableViewCell while in edit mode

Is there any way to have a custom edit-style icon (besides the green plus and red minus icons) when enabling edit-mode in a UITableView? I know I could simulate the the edit-mode animation and just ...
1
vote
3answers
3k views

How can I get the selected value from dropdownlist in edit mode of a gridview?

In my application, when I edit a row in the gridview I choose some new data from a dropdownlist. I am populating the dropdown like this: protected void GridView1_RowDataBound(object sender, ...
1
vote
1answer
462 views

How can I dynamically switch a UIBarButtonItem from a trash icon button and a 'Done' button?

I've got a UIToolbar with a button that I'd like to use for toggling Edit mode to enable deleting rows in my UITableView. I've got everything working perfectly if I settle for just changing the title ...
1
vote
2answers
1k views

How to determine whether a WPF DataGrid is in edit mode?

Is there a way to determine whether a WPF DataGrid is in edit mode / which row is currently edited? EDIT Duplicate: ...
1
vote
2answers
417 views

Edit Mode Delete Spinner Icon for Specific TableView Rows

I have a grouped tableview. Each section has three rows. I need to be able to delete one section at a time. Using the standard edit mode, I can make it work. However, the delete icon shows up to ...
1
vote
1answer
294 views

Using Excel VBA to capture edit mode through checking the standard tool bar

I'm using this code to check if the standard toolbar is deactivated in the edit mode. CommandBarControl oNewMenu = Application.CommandBars("Worksheet Menu Bar").FindControl(1, 18, 1, True, True) If ...
1
vote
3answers
513 views

How can I programmatically enter the edit mode in a Tree Control inside a Flex Application

I have a Tree Control inside my Flex Application which I want to edit on a doubleclick on a tree item. I found the properties doubleClickEnabled="true", doubleClick="startEditMode()", and ...
1
vote
2answers
616 views

WPF Editable Combobox IsFocused problem

I am developing a Watermarked ComboBox by modifying the ComboBox ControlTemplate. Everything is fine when the ComboBox is not in an editable mode, but when I change the edit mode to True, the ...
1
vote
1answer
539 views

Keep a UITableView section from showing up as editing while the table is in edit mode

I've got 2 sections in a UITableView. The tableview needs to stay in edit mode, but only the first section is editable. Specifically, I want the second section to display as it would if the table ...
1
vote
1answer
732 views

UITableView editing-mode problems (iPhone SDK)

I have a tableView populated with custom tableViewCells. The cells are not subclasses, they are merely tableViewCells which have had a lot of tweaking and "subview-adding"(done in the ...
0
votes
1answer
72 views

DataGridViewComboBoxCell with ComboBoxStyle Simple don't catch Enter key

In plain combobox when comboboxstyle is set as Simple and user something type in the field and then press Enter KeyUp event is fired. In datagridview when I have ComboboxColumn and style set as Simple ...
0
votes
0answers
39 views

DatagridviewComboBoxCell too many items in EditMode (MaxDropDownItems )

I use this instructions: Cell in editmode doesn't fire OnKeyDown event in C# and I've did combobox in datagridview. When row is selected and first cell is current cell, I press Tab and second ...
0
votes
0answers
38 views

Weird issue using updnValidatorCallout (the simplified jquery version) in gridview editmode

All: I'm using the updated updnValidatorCallout (http://www.updatepanel.net/?p=751) inside of an update panel. The use case scenario is this: a user can add new friends to a group (adding new ...
0
votes
1answer
76 views

Manipulations with user's selected text in editMode

I have this HTML code (it is located in contenteditable="true" block): <ol> <li>Mozilla Firefox 1.5+</li> <li>Internet <span>Explorer</span> 6+</li> ...
0
votes
0answers
95 views

Datagrid: Stop/Cancel the AddNew or the EditItem Transaction?

I use a datagrid to show coordinates of "selection rectangles" that the user can create on an image. I use databinding of the data grid to an observable collection, since the coordinates are also ...
0
votes
0answers
42 views

How to get a control by using Javascript in a DetailsView in edit mode

I am developing an ASP.NET Web Forms application in C#. I have a problem that I thought was quite common but I haven't found any solution on the Web. I need to perform Javascript validation on a ...
0
votes
1answer
39 views

TemplateField HeaderText ASP

I want HeaderText to be displayed only when Edit Mode is active <asp:TemplateField> <EditItemTemplate> <asp:FileUpload ID="fileUploadControl" runat="server" /> ...
0
votes
1answer
249 views

Display password char * in the password column in gridview in edit mode

I have a webform gridview. In that one columns is password. I want to allow the users to change the password. there are few issues. In the Edit template I have mentioned the password column TextMode ...
0
votes
2answers
289 views

UITableView Edit mode

I have UITableView and I am trying to load it by default in edit mode. The problem is when I this line table.editing=TRUE; my rows disappear, I implemented this methods: - ...
0
votes
1answer
249 views

Show all items in edit mode in RadGrid and save all changes by clicking on submit

I need to realize a WebSite with a grid that shows all items of my Collection in edit mode like this: On Apply the edited Collection should be saved. On changing selection in the Supplier combobox ...
0
votes
1answer
548 views

While in edit mode, advance to next cell and stay in edit mode for VB.NET DataGridView?

I have a DataGridView in which one column has data that the user needs to align by adding spaces. For example, the first two rows might contain: kumbu kuimbiu And the user needs to be able to line ...
0
votes
1answer
740 views

How to auto-focus RTE editor inside firefox?

We have a RTE editor based on htmlarea which consists of content with editmode enabled inside an iframe. The question is how to automatically bring the focus into the editor.