2

Is there a way to change the text display on the submit and cancel button in a JQGrid Form editing?

BenMorel
  • 34,448
  • 50
  • 182
  • 322
LotuX
  • 374
  • 1
  • 11
  • 30
  • 2
    Look at [the answer](http://stackoverflow.com/questions/6971453/how-to-add-different-texts-to-save-button-in-edit-and-add-forms-in-jqgrid/6971820#6971820) to exactly the same question. It is important to use `recreateForm: true` option. – Oleg Nov 17 '11 at 09:50

1 Answers1

3

See here:

http://www.trirand.com/jqgridwiki/doku.php?id=wiki:form_editing

You have the options bSubmit and bCancel which can be changed to the labels you need.

user998692
  • 5,172
  • 7
  • 40
  • 63
  • You are right, but it's important to use `recreateForm: true` option (see [the answer](http://stackoverflow.com/questions/6971453/how-to-add-different-texts-to-save-button-in-edit-and-add-forms-in-jqgrid/6971820#6971820)) additionally. – Oleg Nov 17 '11 at 09:51