Questions tagged [roweditor]

Row editors are tools used for editing a row in a grid.

Grids are often used for displaying records from a database. One row in such grid corresponds to one record. Row editors are tools used for editing one row at a time.

An alternative to a row editor is a form, which can be used to edit more complex records.

For simpler records, a row editor has an advantage that a user can see surrounding rows with stored values while editing a row.

39 questions
5
votes
1 answer

How can I make the rowediting plugin in extjs to not add a row when I hit cancel?

Currently the rowediting plugin gives the option of update/cancel. When I hit the cancel button if it is a newly added row, I would like it to not add the new row. How can I achieve this? Here is the FIDDLE. Currently, with the rowediting, I am just…
would_like_to_be_anon
  • 1,399
  • 2
  • 25
  • 45
3
votes
1 answer

show confirmDialog before rowEditor updates the model

I'm using PrimeFaces dataTable and rowEditor in pretty default way: ... I'd…
Oleg Efimov
  • 522
  • 1
  • 5
  • 13
2
votes
0 answers

ExtJs 6.2.1 classic restrain POST function from RoweditPlugin

i created a basic sencha project via cmd: sencha -sdk path/to/SDK generate app classic SandBox path/to/TARGET in addition i changed the the data to a Personel.json { "items": [ { "name": "Jean Luc", "email": "jeanluc.picard@enterprise.com", "phone":…
Veritaz
  • 23
  • 5
2
votes
3 answers

How can I get the current row in a grid with a combobox editor

I have an EditorGridPanel with a ComboBox in one of the columns. Within a 'select' event listener for that ComboBox, I'd like to know which grid row (not ComboBox row) it is on. The reason is that I'd like to update a different column in the grid…
Gerrat
  • 25,859
  • 8
  • 64
  • 94
2
votes
1 answer

How to undo the row added in the grid of extjs

I want to how can we undo the specific being added in the grid before actually saving it . Please have a look at this I 've added two rows but since for eg: for some validations failures the second row is not valid so I want to undo the second row…
user7569898
2
votes
3 answers

Update RowEditing Fields when change its value

I am using Extjs 4.2, so i have a grid with rowediting plugin. All works fine, I want to know how I can update one field value, depending on another field. I mean for example if in my grid I have field1, and field2, I need to update field3 value…
sonseiya
  • 478
  • 3
  • 13
  • 31
1
vote
0 answers

p:datatable - row editing - cell menu items not visible when selecting row to edit

I am new to JSF. I have a p:datatable in which I set to edit rows, but just editing one of the cells. I have the row selection icon, the one looking like a pencil, and then the icons for confirming the editing and for cancelling the editing. When I…
tcoddis
  • 21
  • 5
1
vote
1 answer

Extjs Date field Rowediting Losing It's Value

I have a grid with RowEditing enabled with some dateFields and when I try to edit, date field value gets blanked. Forcing the user to select the date again. Though upon cancel edit, old values are displayed. attached screenshot…
1
vote
1 answer

Trigger Update button in RowEditing

Is it possible to trigger the update button in a Row-editing by just clicking the row I want to edit ? I have this: plugins: [ Ext.create('Ext.grid.plugin.RowEditing', { clicksToEdit: 1, saveBtnText: 'Actualizar', …
001
  • 11
  • 4
1
vote
1 answer

Extjs 5 rowediting only in some conditions

Good day all, I have a table in which I use the rowediting feature, and I have this column: { text: 'CPL Object', dataIndex: 'CPLObj', flex: 1, editor: { allowBlank: false } } now, I'd like to make this column editable, only…
Matteo Bononi 'peorthyr'
  • 2,071
  • 7
  • 38
  • 87
1
vote
1 answer

Issue with Row Editing Plugin in Extjs

I have a fully working liveSearchGridPanel in ExtJs. Error occurs when I edit any row. What Happens is that if the the updated row has to be resorted like in my case when I change the age of user (I am sorting on basis of age) row goes up or down in…
Abdul Rehman Yawar Khan
  • 1,019
  • 2
  • 17
  • 37
1
vote
2 answers

onRowEdit(RowEditEvent event) in prime faces is not getting me updated value

I am trying to update the row using the jsf with primefaces here is my code for each files but when I debug I am not getting updated value it gives me an old value every-time and persist it same as an old one. user-type.xhtml
Gopal00005
  • 1,743
  • 3
  • 25
  • 49
1
vote
1 answer

How do I get ExtJS 5 AjaxProxy to save?

I'm upgrading an app to ExtJS 5, and I can't seem to get a grid using RowEditing to POST the edited record back to my server. Ext.define("MyRecordDef", { extend: "Ext.data.Model" }); var MyEditor = Ext.create('Ext.grid.plugin.RowEditing', {…
richardtallent
  • 32,451
  • 13
  • 78
  • 116
1
2 3