Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/13/19 in all areas

  1. Ok, you can check on this demo example: \FMSoft\Framework\uniGUI\Demos\Desktop\GridEditors 1. UniDBGrid1.ClientEvents.UniEvents function afterCreate(sender) { sender.addPlugin('gridfilters'); } 2. UniDBgrid1.ClientEvents.ExtEvents function beforereconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { columns[0].filter = 'number'; columns[1].filter = { type: 'string', itemDefaults: { emptyText: 'Search for...' } }; columns[2].filter = { type: 'string', itemDefaults: { emptyText: 'Search for...' } }; columns[4].filter = { type: 'date' }; columns[6].filter = { type: 'boolean' }; columns[5].formatter = 'usMoney'; columns[5].filter = 'number'; columns[8].filter = { type: 'list', // options will be used as data to implicitly creates an ArrayStore options: ['New York', 'London', 'Paris', 'Berlin'] }; }
    1 point
  2. Farshad was said, will turn this component. Remove Sourcemenu on designtime. OnFormCreate Add TUnimenuitem to TUnimenuitems, or what you want. after then add Sourcemenu in runtime. After onformcreate change TUnimenuitems not apply to unitreemenu. So if you make this, you have to do this on unitreemenu. find unitreemenu's node then change a few proprty. caption, tag etc.
    1 point
×
×
  • Create New...