Questions tagged [editablegrid]

EditableGrid is an open source Javascript library to manage grid component

The official site is http://www.editablegrid.net/en/

The source are available from gihub editablegrid

44 questions
4
votes
1 answer

AJAX update to multiple database tables

I have an ajax table that reads data from two mysql tables, the tables are project_ownerships - id_own, project, code, own_current, own_future projects - id, project, location, type, type2, area, transport, stage the data reads into the web page…
Ben
  • 85
  • 10
3
votes
2 answers

EditableGrid datatypes: double

I'm using the editablegrid library to make a table editable so I can later edit and update the database I'm pulling data from. I'm having some issues with the metadata header in the jsp. I've got:
Twinhelix
  • 165
  • 2
  • 14
2
votes
1 answer

EditableGrid, "addcolumn" loop

Trying to make a loop for EditableGrid code. This is how it looks now. $grid->addColumn('id', 'ID', 'integer'); $grid->addColumn('site', 'Site', 'string'); So if I need to add a new column to the page, I add a new column in MySQL database and also…
V. K
  • 21
  • 4
2
votes
2 answers

manually create spinning activity indicators

I apologize if this question is answered somewhere, but I couldn't find it. I am working on editable javascript grid for MS Dynamics CRM and I am trying to display loading screen when user clicks "Save" button on the grid (the loading spinner should…
ddelic
  • 89
  • 13
2
votes
0 answers

EditableGrid+mysql with add/delete

Soo.. i got an example of EditableGrid (http://www.editablegrid.net/) a pretty cool grid that lets me load data from mysql table to a html grid with sorting, inline editing + mysql database updates. I added filtering functionality from another…
CptAhab
  • 23
  • 2
  • 6
2
votes
1 answer

Grid not rendering in firefox

I am working with EditableGrid to generate and manipulate column models dynamically. Everything has gone according to the plan, except for just one compatibility issue with Firefox (..yes not IE -_-). I understand this is some sort of Closure issue…
faizanjehangir
  • 2,771
  • 6
  • 45
  • 83
2
votes
1 answer

multiple mysql linked grids with EditableGrid

I am working through the EditableGrid demos modifying the code to understand it and reach a working example of multiple grids with the write-to-db example. I am a non-programmer and vba-hack. Creating multiple grids in non-db examples is simple…
Ben
  • 85
  • 10
1
vote
0 answers

add save for each row inaddition to double click edit behaviour in editable datagrid

I am using editable datagrid (https://www.jeasyui.com/extension/edatagrid.php) in which I have used double click editable and it is working fine but I want an 'edit' button for each row when user clicks on 'edit' then 'save|cancel' should be…
Prasad Patel
  • 707
  • 3
  • 16
  • 53
1
vote
1 answer

How to update a different column/cell's value based on current column selected value - editable grid Syncfusion(Javascript es5)

I am trying to create an editable grid where I can add TransactionItems. Each TransactionItem will have a product (combobox), rate (textbox), quantity(textbox), total(textbox) and IsTaxable(checkbox) field. When I select Product, I want to update…
Prabesh
  • 353
  • 1
  • 6
  • 20
1
vote
1 answer

Disable column in Dynamics CRM editable subgrid based on a condition

Disable column in Dynamics CRM editable subgrid based on a condition I need to disable (make read-only) a column from an editable subgrid in a Dynamics CRM 365 form. In MS doc…
1
vote
0 answers

Issue Custom Editable dropdown in Yii2 Gridview

I'm trying to set Kartik Editable in my Gridview. I'm trying to use Editable::INPUT_DROPDOWN_LIST that has options depends data from another column This is the view I set the Editable in column ID Ket., and the options of dropdown list depend on…
Blackjack
  • 1,016
  • 1
  • 20
  • 51
1
vote
2 answers

Autofocus on editable gridview field

How can I add the autofocus and select on the editable gridview field? I want to make editacle field autofocus and autoselect. Here's my gridview code : $dataProvider, …
adn
  • 430
  • 2
  • 7
  • 20
1
vote
2 answers

Calculation logic within editable table row

I have a table like this:
Akmal Salikhov
  • 818
  • 3
  • 12
  • 25
1
vote
1 answer

Editablegrid - JSON init + hide columns

I have a php file that generates the following valid json string: { "metadata": [ { "name": "change_id", "label": "changeId", "datatype": "string", "editable": false, "hide":…
laloune
  • 548
  • 1
  • 9
  • 26
1
vote
3 answers

EditableGrid fails to load inline json data

I'm trying to use EditableGrid with data in json format that is inside the script itself, but I'm getting error messages. This is using the latest code from Github so it's supposedly version 3.0 Any ideas? Thanks in advance. Code sample: var…
isapir
  • 21,295
  • 13
  • 115
  • 116
1
2 3