[Progress Communities] [Progress OpenEdge ABL] Forum Post: Grid Editor - custom html with combobox

  • Thread starter Thread starter jts-law
  • Start date Start date
Status
Not open for further replies.
J

jts-law

Guest
Hello, I am creating a custom editor for 1 field in my grid. The datasource has 2 fields ("account" and "account_title") and I want to display both in the dropdown. Currently the data field is "account" and the text field is "account_title". I see a lot of examples of how to set headerTemplate and template, but I just can't figure out how to do this within the KUIB architecture. Current code: let fld = this.$components.gridAccounts.options.columns.find((value, index) => { return value.field === "account"; }); if (fld !== undefined) { fld.editor = (el, options) => { el.html(' '); }; } Thoughts? Louis

Continue reading...
 
Status
Not open for further replies.
Back
Top