Commit 95ca2d08361e79df89c3c260ffa9bf05127aaf65

Authored by totoro
1 parent 0f97a53e

manage WEB_Action_Name in view_table_renderer

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
view/view_table_renderer.anubis
... ... @@ -196,7 +196,7 @@ define HTML_Row(HTML_Off_Form) make_line
196 196 text(string) then cell((HTML_Off_Form)text(not_null_String(string))),
197 197 // link(id, string) then cell((HTML_Off_Form)actioner(same,same, link(string), action_name, [("table_name", table_name),("id",id)])),
198 198 link(id, string) then cell((HTML_Off_Form)literal(jq_dialog_open(string, dialog_id(_action_name+"_dlg_ajax"), "'id="+id+"'"))),
199   - link_id_action(id, name, action) then cell((HTML_Off_Form)actioner(same,same, link(name), action_name(action), [("id",id)])),
  199 + link_id_action(id, name, action) then cell((HTML_Off_Form)actioner(same,same, link(name), action, [("id",id)])),
200 200 icon(icon_path) then cell((HTML_Off_Form)image([], icon_path, ""))
201 201 },
202 202 make_line(table_name, _action_name, t, [cell . so_far])
... ... @@ -243,7 +243,7 @@ define HTML_Header_Row(HTML_Off_Form)
243 243 {
244 244 text(string) then header_cell((HTML_Off_Form)text(_T(string))),
245 245 link(id, string) then header_cell((HTML_Off_Form)actioner(same, same, link(string), edit_table,[])), //TODO
246   - link_id_action(id, text, action) then header_cell((HTML_Off_Form)actioner(same,same, link(text),action_name(action),[("id",id)])), //TODO
  246 + link_id_action(id, text, action) then header_cell((HTML_Off_Form)actioner(same,same, link(text), action,[("id",id)])), //TODO
247 247 icon(icon_path) then header_cell((HTML_Off_Form)image([], icon_path, ""))
248 248 },
249 249 make_header(_T, t, [cell . so_far])
... ...