editable

Editable Datagrid? Repeater?

I've got a list of items in an order to show in asp.net -- each item (row) will have 3 textboxes so the user can both view and change that piece of data (shipping cost, handling cost, price). What would be one "recommended" way to accomplish this? With a repeater, I assume I'd then have to loop through the form values on postback, and ...

cell editing in JTable

Hi, 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 once after entering data into one cell and move on to the next, the previous data gets erased... kindly any one help me... ...

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 _ Select profile.description) Me.DataGridView.DataSource = profileQueryList 2) Binding to the entity itself makes the WinForms gri...

How can I set "maxChars" of the TextInput in an editable ComboBox?

I want to set the maxChars property of the TextInput of an editable ComboBox. I am currently trimming the text to a set number of characters using a change Event: private function nameOptionSelector_changeHandler(event:ListEvent):void { nameOptionSelector.text = nameOptionSelector.text.substr(0, MAX_LENGTH); } This feels like over...

How to make a TextBox non-interactive in C#

Hey, I've got a TextBox on a form that I am using to just display data. I have set it to ReadOnly which stops the user from changing the data displayed in the TextBox. Although the user can still highlight the data in the TextBox, how do I disable this? NOTE: I know using a label would be much easier, although for some reason the lab...

editable combo box

hi, first i have to create a editable combo box.combo box contains name age city.user can enter name or age or city. combo box has to filter all the list contain and should show relative list. Eg: combo box contain : xxx 23 ny, yyy 24 London, zzz 25 delhi, uuu 25 columbo. here user enter 25 : combo box has to show zzz ...

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 edit is lost). How do i make the edit permanent when the user stops editing? I guess we have to update the cell value as the cell value ...

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 once they deslect the row its no longer editable. How would I go about doing this? ...

ASP.NET Editable Tree View

Hi, 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 of doing this? I am a PHP person, fairly new to .NET so any help would be greatly appreciated. Thanks, Sean ...

Editable Grid for Java web application

Does anybody know which editable grid available or java web application (struts/spring)? ...

how to make editable grid cell readonly + jquery

HI Everyone, Now i am use jquery editable grid, i want to make some cell readonly on basis of some checking Is it possible??? if posible plz reply this question BR~ Nazmul ...

Unbind jquery plugins

Hello, 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 the title, the body of the text, whatnot. Every time the user creates a new question, I rebind the plugin like so: $('.edit').edita...

jqGrid editing ONLY through form mode

Hi In my grids on the page, all of them need to not only have inline edit disabled, but ALSO should be editable via the modal form ONLY. However, turning editable : false, while preventing in-line edits, also prevents editing via the form (no columns can be seen on the form, just the Submit and Cancel buttons) How can I effect this be...

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 basically non existent on google and I would like to remove it. My editview.xib has a textview where I write notes into it. Is there any mo...

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 once. Is it possible? ...

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 Princely to be nice projects. I'm wondering if they could do that? ...

Making a ListBox item editable

I've got a plain-old WPF ListBox defined in my .xaml: ... <ListBox Name="foo"> </ListBox> ... In my matching .xaml.cs I programmatically add strings to this ListBox. I'd like to be able to edit these strings from the UI at runtime. I'm new to WPF, so my first thought was to dynamically replace the string in the ListBox's colle...

DataTrigger only works on first TabItem in TabControl

Hi! It seems like a bug in WPF, but maybe someone has an answers to this. I have a DataTrigger for an editable ComboBox. It works on the first TabItem of my TabControl, but not on the second. If you switch the first with the second TabItem, the "second" will work. The same effect happens when you give the style exactly to the ComboBox (C...

Editable grid with colorpallet

I am using extjs 3.0. I am using Ext.grid.GridPanel..I want to make one column of this grid as editable column such that i want to create colorpallet in each row of this perticular column. How can i do this? ...

Editable WPF treeview item on doubleclick? (with styles?)

Hi - 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 like the two ways of doing this are with a custom control or with a style which hides one of a TextBox/TextBlock. Using a style to set ...