Questions tagged [displayfield]

5 questions
0
votes
0 answers

How to export displayfield contents to an excel sheet in extjs?

I have a set of displayfield contents as shown in the picture. I need to create a button when on clicking should export the contents to an excel sheet. Please guide me through this. Note, I don't have the content as grid and hence, I want an…
Rev
  • 13
  • 2
0
votes
1 answer

Display value of textfield in displayfield

I have a text field and a displayfield. I want the user value of the text field to displayed in the display field. how do i do that? My code is as follows: { xtype: 'textfield', fieldLabel: 'Textfield', allowblank: false },…
user4475435
0
votes
2 answers

Get value of DisplayField beforeRender

I have a displayfield as follows { fieldLabel: 'Designation', name: 'designation', xtype: 'displayfield', listeners: { beforerender: { fn: function (v) { // get value…
Microsoft DN
  • 9,706
  • 10
  • 51
  • 71
-1
votes
1 answer

ExtJS Turn combobox to displayfield

I have a grid with RowEditing that has a combobox. When certain conditions are met, I want to turn that combo to a displayfield (I want the combo to just display its value, no button and not editable). For now, when the conditions are met, I just…
alexandre1985
  • 1,056
  • 3
  • 13
  • 31
-3
votes
2 answers

SQL query to CakePHP translation

I have been trying to figure out this (I guess really simple) thing for several days: I have three tables with these fields: alumnes: id, nomcognoms grups: id alumnesgrups: id, alumne_id (related to Alumnes.id) and grup_id (related to Grups.id).…