Questions tagged [editmode]
103 questions
1
vote
1 answer
Swiftui List Row Dynamic Height
I have a question about List Row Dynamic in SwiftUI;
how reset height of row when EditMode of List changed, For now, ui element of Row has changed, but height of row in the list not update to fit.
inactive editmode
active editmode
anyone know how to…

简素开发
- 11
- 1
- 3
1
vote
1 answer
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 shoud show the appropriated logo below.
(Is it…

Alexander Zwitbaum
- 4,776
- 4
- 48
- 55
1
vote
1 answer
VisJS on edit edge mode. How to allow just one side edition?
I have a VisJs network where the edges leaving the nodes are handled programatically. So, the user should not be able to change the node from where a edge comes from. However, the user is free to point the edge to any other node. More specifically,…

amccampos
- 171
- 6
1
vote
1 answer
It is possible to show the edit page of the record by clicking the custom button in netsuite?
I want to show the edit page of the record by clicking the custom button instead of the "standard edit button"
My Code:
Script Version: Suite Script 2.0
User Event Script:
function beforeLoad(context) {
log.debug('Test', 'Before Load…

Deepan Murugan
- 721
- 2
- 19
- 41
1
vote
1 answer
DataGridViewCell trap CTRL+Up or CTRL+Down
C# form has a datagridview. I need to trap an event when CTRL+UP Arrow or CTRL+Down Arrow is pressed in a cell in edit mode.
Not sure which event to handle and how it should be handled.

Rob
- 13
- 2
1
vote
0 answers
ui-grid edit mode with textarea
I have a ui-grid and one of the fields is editable. I have set the editableCellTemplate to be an html that has a TEXTAREA. There are 2 issues. Issue 1 is that I have set the textarea to show 4 rows but it shows only 1. Setting the height of the…

Scott
- 1,690
- 3
- 13
- 18
1
vote
1 answer
What are the limitation in EditMode for custom views in Android?
I know how to use the View.isInEditMode method.
What I don't fully understand is when should I use it. That is, what should I prevent from running in EditMode.
There are the obvious cases, where the custom view does all kind of crazy things like DB…

Avi Shukron
- 6,088
- 8
- 50
- 84
1
vote
2 answers
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 the left of each cell, not just the first row in…

Michael Bordelon
- 209
- 4
- 11
1
vote
1 answer
Different format for datagridview cell in edit mode
I have a text datagridviewcolumn displaying an integer.
I set the format property to colTextDefaultCellStyle.Format = "#,##0";.
So the number that is displayed gets a thousand separator.
When in edit mode I do not want to show the thousand…

Gerard
- 13,023
- 14
- 72
- 125
1
vote
1 answer
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 (IsNull(oNewMenu)) Then
MsgBox "Edit mode…

Srimal
- 11
- 1
1
vote
1 answer
Custom UITableView edit mode
I have a UITableView with custom cells, and I want to make an edit mode similar to what is in iOS Mail app.
My view looks like this:
and when I tap Edit in top right corner, it changes to this:
Those cats on the right are UIButtons. The problem is…

BartoszCichecki
- 2,227
- 4
- 28
- 41
1
vote
1 answer
disable right click on datagrid while in edit mode
I have ContextMenuStrip that on right click shows something to choose from. It's working perfect when the cell is not in edit mode but when it's in edit mode when I click the right mouse button it shows windows menu (copy,paste,delete, select…

Georgi
- 519
- 4
- 19
1
vote
2 answers
How to get the indexPath of a UITableView Row in edit mode
Is there a way to get a row that is in edit mode?
I know I can get it here - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
but how do I get it out…

Paul S.
- 1,342
- 4
- 22
- 43
1
vote
4 answers
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 editable="true". With these functions I can detect a double…

Markus
- 11
- 2
1
vote
1 answer
Set selected value or text for DropDownList in edit mode of gridview asp.net
In a gridview, to display data in view mode, I use a label.
In Edit mode I have a dropdownlist. So, How can I set text in that label as selected value for dropdownlist when gridview is in edit mode?
Here is my code in aspx page:
…

Anh Hoang
- 2,242
- 3
- 22
- 23