|
Title: edatagrid pass extra data and the editors? Post by: catpaw on December 17, 2013, 08:42:59 AM hi, Im using edatagrid extension to update some values
but not how to get server side some extra data here my example: Code: $('#dg-ab').edatagrid({the entire row was edited updating scores of five players per game although not shown in Table I have the game id from the 'get_datagrid_data.php', I need to get in 'update_data.php' is $id_game = $_POST['id_game']; $score_game = $_POST['score_game']; $player_1_score = $_POST['player1']; $player_2_score = $_POST['player2']; $player_3_score = $_POST['player3']; $player_4_score = $_POST['player4']; $player_5_score = $_POST['player5']; then the question is how to get the field score_game which is not editable? Title: Re: edatagrid pass extra data and the editors? Post by: catpaw on December 17, 2013, 09:52:09 AM Hi, sorry I was not doing the right tests.
No need to add anything, as this works ok |