The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
13 views

Grid view edit mode- pop up to confirm data save

I have asp.net web page with multiple controls. One of the control is gridview with edit,update, delete options. How can I restrict user to access any other control on page if my grid view is in edit ...
1
vote
1answer
23 views

Reload UITableView in edit mode

I have a dictionary that holds every item in a list. I then have a plist that holds user information for each item in the list, including if the item has been collected or not. Then I load a ...
0
votes
1answer
36 views

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

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

How do I prevent a DataGridTemplateColumn from going into edit-mode based on some condition?

I have a DataGridTemplateColumn that is editable. I only want the user to be able to edit the content of a cell in this column if the business object satisfies some criterion. Suppose my business ...
0
votes
3answers
48 views

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

SharePoint 2010: Link to open Excel file in edit-mode mode

I have an application with a button. This button refers to an Excel document I have on a SharePoint. However, it will download the file which means it's read-only. Now, there's an option in the ...
0
votes
0answers
78 views

Enter to cell edit mode after press tab and then alternate shortcut (eg. rAlt + L)

Begin entering data in a cell DataGridView new row, then use the TAB to move on to the next cell. If at this point, press any of the alphanumeric keys, the cell automatically switches to edit mode and ...
0
votes
2answers
311 views

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

Placing ASP.Net DetailsView into Edit mode and Update mode

We are working with an ASP.Net DetailsView with a VB.Net code-behind file. We are trying to allow the user to edit and save changes in the DetailsView by allowing the user to click the Edit button and ...
2
votes
1answer
109 views

telerik grid edit with validators seems overlapped

i have a telerik grid for asp.net ajax with AllowAutomaticxxxx properties set to true and EditMode="EditForms". The mastertableview is for Divisions and detail table is for functions. Currently am ...
2
votes
1answer
383 views

Calling a macro from a button in edit mode while in PowerPoint

I'm trying to write a vba macro that can be called in edit-mode in PowerPoint 2007-2010. I can easily add a Command Button to a presentation. However, this button can only be clicked to trigger the ...
1
vote
0answers
167 views

Exit edit mode from a control hosted in a cell

I have a custom datagridviewcolumn, a custom control hosted in a cell. I want to programmatically exit edit mode and validate the current value in the cell (this value is correct). I have checked ...
1
vote
1answer
902 views

datagridview beginedit on new row automatically

i'm trying to set a cell to edit mode. The cell is in the new row (NewRowIndex). Everwhere else it works well, but if i try to set the edit mode in the NewRowIndex, it doesn't get into edit mode as ...
1
vote
1answer
161 views

masked text time(HH.mm.ss) in gridview edit mode

I need to restrict to enter only time(HH:mm:ss) in gridview edit mode how can i do it ? <asp:GridView runat="server" ID="gvListele" Visible="False" CellPadding="4" ForeColor="#333333" ...
1
vote
1answer
666 views

Android lock checkboxes when not in edit mode in custom array adapter

I have a Activity that displays a list of check boxes (Focus Areas) that can be assigned to an activity event in my application. However I want to be able to prevent the user form editing these values ...
0
votes
1answer
431 views

WPF dataGgridCell Edit Mode

I have requirement to keep datagridcell always in edit mode. I dont find any option to make datagrid cell edit mode so I took TextBox under datagrid cell using control template. I am able to write in ...
0
votes
3answers
1k views

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?
1
vote
0answers
453 views

How to put GridView into edit mode while nested in two Repeaters?

I have a Gridview inside a Repeater inside another Repeater. The declarative code looks like this: <asp:Repeater id="parentRepeater" runat="server"> <itemtemplate> ...
0
votes
1answer
490 views

ASP.Net gridview always enters edit mode after an upgrade from platform 3.5 to 4

I have a long-term project (approx 9 years of continual use so far) that uses gridviews in several pages. The gridviews are used to display abbreviated summary details only, each with separate ...
0
votes
1answer
1k views

How to store uploaded images via portlet preference view in Liferay

I'm gonna develope banner rotator porlet in Liferay, that will have preference view (Configuration view), from where admin could manage banner rotate images, uploading them from computer and setting ...
5
votes
1answer
829 views

Unwanted scrollbars in WebBrowser control when in IE9 mode

Using the WinForms WebBrowser control in edit mode (as described here), I am experiencing unnecessary scrollbars when switching the control into "IE9 mode". I'm using the meta tag <meta ...
0
votes
1answer
607 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 ...
3
votes
1answer
1k 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 ...
0
votes
1answer
221 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> ...
1
vote
0answers
403 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 ...
1
vote
1answer
787 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
838 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 ...
8
votes
2answers
9k 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: - ...
2
votes
3answers
10k 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
549 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 ...
1
vote
1answer
2k 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 ...
3
votes
3answers
5k 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 ...
0
votes
1answer
1k 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 ...
2
votes
1answer
3k views

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

Possible Duplicate: Code to check if a cell of a DataGrid is currently edited Is there a way to determine whether a WPF DataGrid is in edit mode / which row is currently edited? EDIT ...
1
vote
2answers
625 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
484 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
802 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 ...
4
votes
2answers
6k 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 ...
4
votes
1answer
1k 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
613 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
1k 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
844 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.