Jump to content

Sherzod

Moderators
  • Posts

    19811
  • Joined

  • Last visited

  • Days Won

    643

Everything posted by Sherzod

  1. Hello, Thank you for your interest in UniGUI! Yes, Trial edition has some limitations which are listed below: http://unigui.com/download/docman
  2. Hello, Sorry for the late reply First you should use Ext.XTemplate And secondly, to some extent you have already solved this:
  3. Sherzod

    Chart Fix

    Hello, Can you please specify first which edition and build of UniGUI are you using ?
  4. And use this config for tips: getTip: function(value, metadata, record, row, col, store) { // }
  5. OK, You can try to use getClass config 1. In DesignTime: YourActionColumnButton -> ImageIndex = -1 2. UniDBGrid -> ClientEvents -> ExtEvents -> function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts): function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { dataColIndx = 0; actionColIndx = 6; actionItemsIndx = 0; columns[actionColIndx].items[actionItemsIndx].isActionDisabled = function (grid, rowIndex, colIndex, items, record) { return (record.data[dataColIndx] > 1500); }; columns[actionColIndx].items[actionItemsIndx].getClass = function(value, metadata, record) { if (record.data[dataColIndx] > 1500) { return "x-fa fa-home" } else { return "x-fa fa-user" } }; }
  6. Can you try... ? procedure TMainForm.UniButton1Click(Sender: TObject); var ImgIndx, ActionColIndx, ActionItemIndx: Byte; begin ImgIndx := 1; ActionColIndx := 6; ActionItemIndx := 0; with UniDBGrid1 do begin JSInterface.JSAssign( 'icon', [UniNativeImageList1.GetImagePngUrl(ImgIndx)], //[UniNativeImageList1.GetImageIconUrl(ImgIndx)], //[UniNativeImageList1.GetImageBitmapUrl(ImgIndx)], Columns[ActionColIndx].ActionColumn.Buttons.Items[ActionItemIndx].JSMenuItem ); JSInterface.JSCall('view.refresh', []); end; end;
  7. Hi, Can you try to use this approach for now? UniDBGrid -> ClientEvents -> ExtEvents -> function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts): function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { dataColIndx = 0; actionColIndx = 6; actionItemsIndx = 0; columns[actionColIndx].items[actionItemsIndx].isActionDisabled = function (grid, rowIndex, colIndex, items, record) { return (record.data[dataColIndx] > 1500); } }
  8. OK, I will try to give you a solution a bit later
  9. You can try this approach I think: function chart.beforeInit(sender, config) function chart.beforeInit(sender, config) { config.series[0].renderer=function(sprite, config, rendererData, index){ return {label: ""} } }
  10. Sorry, are you using a cracked version?! Where did you download it?
  11. http://forums.unigui.com/index.php?/topic/6291-new-users-please-adjust-your-forum-email-address/
  12. First of all, please adjust your forum email address
  13. Hello, Which edition and build of UniGUI are you using ?
  14. Hello, Which edition and build of UniGUI are you using ?
  15. Hi, Sorry for the late reply, I also could not find a solution then...
  16. Hi, Can you try this approach (even without CustomCSS) ?!: function beforeInit(sender, config) { var _height = 30; config.itemConfig = { height: _height }; config.headerContainer = { height: _height }; }
  17. Hi, Whether you prefer Disabled/Enabled instead of Hide/Show ?
  18. Can you try this approach for now?: function beforecellkeydown(sender, td, cellIndex, record, tr, rowIndex, e, eOpts) { if (e.keyCode == 13) { e.ctrlKey = true; } }
  19. Hi, Sorry for the late reply. I'm also not sure is this normal behavior or not?
  20. uniGUI - v1.70.0.1485: [UNG-2720] - TUnimMenu Scrollable property
  21. Hi, Please see the documentation: http://unigui.com/doc/online_help/synch-and-asynch-operations.htm
×
×
  • Create New...