Questions tagged [editmode]

103 questions
0
votes
1 answer

Episever MapRequestHandler Returns wrong Physical Path

Im uploading a file with help of UnifiedDirectory in Episerver 7.1. The file is saved perfectly when browsed within episerver VPP file explorer. For instance the path could become something like: Path: XformFiles/xformdata/2015_04_24/file.jpg If i…
Marcus
  • 1
  • 3
0
votes
0 answers

How to set datagridview's cell value in edit mode while not valid data entered in it?

Look at this code - I am done on datagridview's CellEndEdit event private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e) { try { if (e.ColumnIndex == 1) { if…
0
votes
0 answers

Can't get DatGridView out of EditMode in some cases

After validating a user's entry in a cell, in the CellValidating event, if the entered value isn't valid, then I am setting the value back to what was in the cell initially, before entering Edit Mode. My problem is, for the three Date fields I have…
marky
  • 4,878
  • 17
  • 59
  • 103
0
votes
2 answers

How to override Default cell editor in a jTable?

I want to change the properties of DefaultCellEditor in a jTable so that I can customize the font type, size, color, background color etc of a cell in edit mode.
Arpan
  • 596
  • 2
  • 10
  • 29
0
votes
1 answer

Show re-order sign for one section while rest sections should not show any controls of a tableView, and enable swipe left delete in edit mode

I am working on an app where I need to reorder rows of section 1. I could achieve the reorder by implementing the tableView delegates. When the table is in editing mode I show reorder for section 1 and no controls for rest sections, but the rows of…
Dinakar
  • 1,198
  • 15
  • 37
0
votes
1 answer

How to highlight text in gridview for copy but set text not changeable in vb.net

I have a gridview which is filled by a query. I want to allow the user to highlight and copy text from the cell, which is double clicked. here is my event code: Private Sub datagridview2_CellDoubleClick(sender As Object, e As…
steve
  • 123
  • 1
  • 14
0
votes
1 answer

How to exclude the datagridviewtextboxcolumn from edit mode?

I have a grid view of type datagridviewtextboxcolumn with the following fields: SrNo | Description | HSNCode | Qty | Rate | Amount The SrNo and the Amount are calculated automatically from the code and both are in…
Mohemmad K
  • 809
  • 7
  • 33
  • 74
0
votes
1 answer

TableView Cell contents not shifting in editing mode iOS 6

I have subclass of UITableViewCell. Here is my setup I have used Autolayout. Now when user swipe on cell , I can see "Delete" button , but it overlaps my right side imageview. Cell contents are not shifting. Here is my code #pragma mark - Table…
iOSAppDev
  • 2,755
  • 4
  • 39
  • 77
0
votes
3 answers

Enter edit mode with single row/cell

I have a custom swipe recognition class from this example: How to detect a swipe-to-delete gesture in a customized UITableviewCell? - (void)cellSwiped:(UIGestureRecognizer *)gestureRecognizer { if (gestureRecognizer.state ==…
0
votes
2 answers

UITableView content of cell dont move on editing

I have a UITableView with some custom cells. In each cell, there is a ImageView and three labels and get the data from a string array. I have done the layout in my storyboard. The data source is a string array. This works. Now I have insert a…
ydnaso
  • 1
  • 3
0
votes
1 answer

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?
Ulf Jälmbrant
0
votes
3 answers

UITableView edit mode delete button padding-right

I want to give some space between UITableView edit mode delete button and cell left side (See screenshot below). Any idea? (source: mixdesign.kz)
Almas Adilbek
  • 4,371
  • 10
  • 58
  • 97
-1
votes
1 answer

How to put values from buttons in the edit mode of a DataGridView?

I've got a problem. I have a datagridview and one column which is editable, user can write a number by himself. But.... i need to write the number with the help of the buttons. So for example I have buttons 1,2,3,...9 and if user clicks on this…
user2455862
  • 585
  • 10
  • 26
1 2 3 4 5 6
7