Jump to content

fraxzi

uniGUI Subscriber
  • Posts

    264
  • Joined

  • Last visited

  • Days Won

    4

fraxzi last won the day on March 14 2025

fraxzi had the most liked content!

Profile Information

  • Gender
    Male
  • Location
    -- Asia Pacific

Recent Profile Visitors

5377 profile views

fraxzi's Achievements

Advanced Member

Advanced Member (4/4)

30

Reputation

  1. I used only treeKeyField=cust_name not "idField" and "IdParentField"
  2. HI @Sherzod It has no effect.
  3. Hi @Sherzod, I put it in ClientEvents->UniEvents->Ext.tree.Panel->afterCreate. With .1608 and previous version, it did not take effect. any hint?
  4. Hi! In this TUniDBTreeGrid: How to hide 2nd column value (in RED) if the row is "Branch" and retain value if "Leaf". Thanks in advance. Frances
  5. this solves it: function afterrender(sender, eOpts) { var view = sender.getView ? sender.getView() : sender.view; if (!view) return; var exp = view.rowExpander || (view.findPlugin && view.findPlugin('rowexpander')) || (view.findFeature && view.findFeature('rowexpander')); if (!exp) return; exp.collapseRow = function (rowIdx) { var node = view.getNode(rowIdx); if (!node) { var rec = view.getStore().getAt(rowIdx); if (rec) this.recordsExpanded[rec.internalId] = false; return; } var row = Ext.get(node); if (!row) return; var nextBd = row.down(this.rowBodyTrSelector); // may be null; guard if (row.hasCls(this.rowCollapsedCls)) return; row.addCls(this.rowCollapsedCls); if (nextBd) nextBd.addCls(this.rowBodyHiddenCls); var record = view.getRecord(node); if (record) this.recordsExpanded[record.internalId] = false; if (record && nextBd) view.fireEvent('collapsebody', node, record, nextBd.dom); }; }
  6. Hi @Sherzod, Issue still persisted even on .1607
  7. Hi @All, Any update? Still the same with the .1607
  8. Hi @Sherzod, Any update?
  9. Hi @Sherzod, I adapted this. It works on my side. Thanks!
  10. Hi @Sherzod, Using .1599 Here is a gif of Hypergrid. Used in button click is either hyperdbRequest.AppendRows or hyperdbRequest.InsertRows. Same error message. Regards,
  11. Hi @Sherzod, Unfortunately not.
  12. By-the-way, I am appending/inserting from a blank dataset.
  13. Hi Everyone, I am receiving this error when hypergrid.InsertRows or hypergrid.AppendRows executed on button clicked. What to do or any suggestions? Thanks in advance.
  14. Dear @Sherzod, I also experienced this with HyperGrid (.1598) when InsertRows. Any solution?
  15. Hi @Sherzod, Using 1.95.0.1594
×
×
  • Create New...