Tagged Questions
The editable tag has no wiki summary.
5
votes
5answers
4k views
iphone UITextView does not support data detectors when the text view is editable
I am getting an interesting warning at build time (iPhone simulator) that gives the following:
EditView.xib:35:0 UITextView does not support data detectors when the text view is editable.
This is ...
4
votes
4answers
172 views
Java JTable - Make only one column editable
I was wondering how to make one column of a JTable editable, the other columns have to be non editable.
I have overwritten isCellEditable() but this changes every cell to non editable.
Thnx in ...
4
votes
1answer
384 views
Append Non-Editable String to EditText
Is there anyway to append a String to an EditText value, so that the string appended is not editable?
i.e. Say I have an EditText for Email Addresses, I want to treat an email address as a single ...
3
votes
1answer
94 views
jQuery Editable ID number
I am new to jQuery and I am trying to use editable. I want to use the id of the the div tag as the entries are taken from a database and I need the id of each so that when I save the info I can ...
3
votes
1answer
620 views
Set initial text when editing a QTableView cell
I've subclassed QAbstractTableModel and overrode the flags() method so that some of the table cells are editable. The problem is that when I start editing, the existing cell value is erased. I would ...
3
votes
3answers
2k views
Editable WPF treeview item on doubleclick? (with styles?)
I'm a bit of a WPF noob, so apologies for any inherent daftness in this question (!)
I'm trying to enable editing of WPF treeview labels with a doubleclick - I've googled around this, and it looks ...
3
votes
2answers
672 views
editable combo box
I have to create an editable combobox. The combobox contains name, age and city. The user can enter either name, age or city. The combobox has to filter all the list contain and should show relative ...
2
votes
2answers
175 views
JTextArea show Caret while setEditable is false
How can I put Caret in JTextArea while setEditable is disabled?
A sample code when I need Caret to be visible:
public void run(){
JFrame frame = new JFrame();
JTextArea text = new ...
2
votes
2answers
548 views
Ext-JS: How to disable cell editing for individual cells in a grid?
I am now building a web application with Ext-JS 4.0.2, and I am using a editable grid to control the data to be shown for a table on the same page.
To make the grid editable, I followed the API ...
2
votes
2answers
509 views
How to implement editable DataGridComboBoxColumn in WPF DataGrid
I want to enable the user to edit some data in WPF DataGrid ( from the .net Framework 4.0). The "instruments" column should allow the user to select an available intrument from a static list or to ...
2
votes
3answers
147 views
Make a JComboBox editable without affecting its width
I have a JComboBox object in my JFrame which behaves exactly as expected. However, I'd like to make it editable so that users can input alternative values if necessary. Unfortunately, using ...
2
votes
1answer
221 views
Web2py form field options
I am using web2py forms and i want to have some fields only visible to user (as fixed which cannot be edited). I tried making various combinations of editable, writeable, readonly but was of no use. I ...
2
votes
5answers
70 views
I want editables but without forms or Inputs
I want my users to be able to edit text on their page (not all) without showing them a form. At the same time, I do not want it to be to an editable, because there are too many of them and is not ...
2
votes
1answer
2k views
Ext.js Editable TreeNodes
Is is possible to make TreeNodes (i.e. folders) editable by the user? I see that there's an option called editable in TreeNode class but I couldn't get it working or find any examples on its usage.
...
2
votes
2answers
813 views
How to change default stop edit behavior in jtable
When you edit a cell in an jtable the value is made permanent only if the focus is changed or if one hits enter (for example if you change the cell value from "abc" to "xyz" and close the window the ...
1
vote
0answers
26 views
User editable template/view - Node.js, Mongodb
Has anyone here an experience with writting an application, where the user is allowed to edit a template of his "profile" online? I mean custom css, html and js - like Tumblr allows that.
What is ...
1
vote
3answers
32 views
trouble with converting an editable to a string (username/password test)
I'm trying to create a simple username/password login screen. I have the layout done, and right now, I'm trying to set it so when the username (EditText) == "crete", then it should do something. ...
1
vote
0answers
27 views
UITableView Editable Cell 'De-Selection'
My application has a UITableView which is editable to be able to delete items. When a user taps the red circle on the left of the cell it reveals a red 'Delete' button. When that 'Delete' button is ...
1
vote
1answer
96 views
How to customize jquery-datatables-editable select editors for individual row
I have been looking for some examples and solutions using the jquery-datatables-editable plugin and not had any luck. What I want to do is be able to set the editor for a column based on some ...
1
vote
2answers
67 views
jquery editable GUI textbox
Does anyone know of an jQuery (or anything) plugin that would allow for me to have an editable, GUI-like textbox that would allow my users to edit their text with things such as font, color, bold, or ...
1
vote
3answers
212 views
MVC3 Editable Grids
I have a requirement to use an editable grid in my MVC3 project. (i.e., the grid needs to add rows, delete rows, edit cells within each row). I've tried Telerik but the documentation seems to be ...
1
vote
2answers
422 views
asp net mvc 3 post IEnumerable Model
I found on post here, and it is exactly what I want: post IEnumerable to my controller.
here's the other post:
Foreach on IEnumerable property and CheckBoxFor in ASP.Net MVC
I tried something very ...
1
vote
1answer
431 views
EditText not updated after text changed in the TextWatcher
I have an EditText and a TextWatcher.
Skeleton of my code:
EditText x;
x.addTextChangedListener(new XyzTextWatcher());
XyzTextWatcher implements TextWatcher() {
public synchronized void ...
1
vote
0answers
216 views
Android editable spinner plus virtual keyboard - is it possible?
I have AlertDialog with editable Spinner which allow me to edit the selected value, but there is a problem. The edit control inside my spinner accepts the focus after tap and if the device has a ...
1
vote
2answers
253 views
Android Development: How To Replace Part of an EditText with a Spannable
I'm trying to replace part of an Editable returned from getText() with a span.
I've tried getText().replace() but that's only for CharSequences.
The reason I'm trying to do this is so I can ...
1
vote
1answer
314 views
Razor - editable grid - what approach?
I am very much wondering and don't know yet what to decide to use.
So I want to have grid and to edit its row's data.
I am working with MVC3 Razor, i know for these posibilities:
- jqGrid Razor
- ...
1
vote
1answer
240 views
How can I make a SWT table's cell editable in Eclipse RCP?
My question is that I have a SWT Table in Eclipse RCP project. I want its cells to be editable when I desire. How can I achieve such a functionality in Eclipse RCP, suggest me. Or, can we achieve ...
1
vote
1answer
203 views
Capture editable tree changes in XUL
I have a dynamically constructed editable XUL tree.
The problem is - how is one supposed to listen and capture the changed cells?
I detect the submitting of the edited value by capturing blur event ...
1
vote
1answer
98 views
WPF: Editable ComboBox that drops up?
Im trying to create a ComboBox thats both editable and drops up instead of down. The menu should also open when pressing the up-arrow-key (down by default).
I have tried modifying the default ...
1
vote
4answers
403 views
Make a form/div editable
Hello I have around 6 fields which are read only presently. I now would have to make them editable. So I am thinking of having one image/button, which onclick would trigger the edit functionality. So ...
1
vote
1answer
182 views
how to write on screen in AS3
So I am creating a module and I have a screen that I need to be able to allow the users to write questions that they have on their screens in a text box. Does anyone know how to do this?
This is the ...
1
vote
1answer
359 views
iTextSharp + How to handle the form button field click event in vb.net
I've have a editable pdf with button fields in it. I'm processing this editable pdf in my vb.net application using iTextsharp. How want to know how to catch and handle the Click event of button field ...
1
vote
1answer
563 views
Android: cannot convert from String to Editable
A quick question:
I am getting the error : cannot convert from String to Editable.
Here is the code :
Credential.getInstance().UserName = preferences.getString("UserName", "invalid value");
...
1
vote
2answers
887 views
Editable UITableViewCell - EditingStyleForRow() not invoked
I am trying to implement deletable UITableViewCells. My UITableView has 3 sections. The 1st section contains one cell for every element of a List (called items for simplicity). Various elements ...
1
vote
1answer
930 views
How to use update source trigger on Wpf Combobox which is editable?
I have a combo box (in my wpf-mvvm app). I have set IsEditable = true. But the "property changed event" is getting fired when I start typing.
How can I set "UpdateSourceTrigger = Propertychanged" ...
1
vote
1answer
500 views
TinyMCE Setting focus in text part
Consider the following HTML:
<div id="block-container">
<div id="some-background"></div>
<div id="text-div">Focus should be here when this HTML goes into the ...
1
vote
2answers
192 views
How can I prevent that visitors set fullcalendar (arshaw) to editable:true via firebug?
http://arshaw.com/fullcalendar/docs/event_ui/editable/
The option editable can be manipulatet by visistors of my site via firebug and change data in my database. Is there a solution?
...
1
vote
1answer
304 views
Switch between a TextView and EditText
Is this possible to interchange a TextView and an EditText. Like display the text when needed, but allow editing when needed. Is there a method (as in NON-XML) way of editing a TextView or non-editing ...
1
vote
1answer
577 views
Creating a floating, editable and scrollable list in Android
I want to show a list of items when the user clicks an overlay item on a map. The user should be able to select any of these items and edit them. The list can have many items (more than that can fit ...
1
vote
1answer
248 views
Dynamically Generate Editable PDF
Is there a way to create an editable PDF programmatically? By editable, I mean you can click in a text area and type in your name, that kind of thing.
I'm using Ruby and have found PrinceXML and ...
1
vote
2answers
1k views
HTML. Editable 'Select' element
I would like to have a select element in the form but besides the options in the dropdown, it would be useful to be able to edit it and add new option but not with another input text, I need all in ...
1
vote
2answers
2k views
Unbind jquery plugins
I'm sure this is simple but I'm banging my head!
I'm using the excellent jQuery plugin editable (http://www.appelsiini.net/projects/jeditable). Users can create a form on the fly, and click to edit ...
1
vote
2answers
1k views
ASP.NET Editable Tree View
I am trying to build an editable tree hierarchy similar to treeview control only with the ability to add, remove and rename documents aswell as the ability to view them.
Anybody recommend a good way ...
1
vote
1answer
1k views
Only one row editable on JTable
I am trying to make a special kind of jtable. I want the entire table to by default be NOT editable. But when the user clicks a row, then clicks the "Edit" jbutton, that specific row is editable. and ...
1
vote
3answers
1k views
Linq to Entities Binding, Filtering and Editing in WinForms
1) Binding to The following populates a READ ONLY WinFrms grid:
Dim query = (From profile _
In db.profile _
Where profile.employee.employeeId = employeeID _
...
1
vote
2answers
976 views
cell editing in JTable
Im doin a project using JTable, i want to make my table cells editable. I used,
public boolean isCellEditable(int row, int column)
{
return true;
}
My problem is, the cells are ediable but ...
0
votes
1answer
25 views
Send Data from Table Cell to database
I am trying to use a editable table to update the database without using the form. My
tag has contenteditable attribute so the use can edit the table cell. My problem is that I am using Codeigniter ...
0
votes
1answer
42 views
iOS - Editable Forms (Contact App style)
I'm in the process of creating an iOS5 application, what I'm after is the 'Edit' button functionality, specifically, taking a dynamically populated plain style TableView, and when the Edit button in ...
0
votes
0answers
12 views
Flash actionscript 3.0 Textbox [closed]
I want to make a program in flash wherein the text and image is draggable, resizeable and deleteable. I also want the text to be editable. I am trying to create something where you can manipulate the ...
0
votes
2answers
42 views
How client can edit Wordpress without breaking HTML?
Usually I set up pages in Wordpress by putting all the HTML in and the client will edit the content in the WYSIWYG editor
This is great, until they accidentally delete a div or break something.
What ...