Jump to content

fraxzi

uniGUI Subscriber
  • Posts

    237
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by fraxzi

  1. code hard but eat well.. code hard but take lots of fluids .. code hard but take lots of rest .. code hard but engage in sports .. work life balance .. it's unigui.
  2. Hi, I tried it with TUniFrame but it didn't worked.. @Sherzod, could you please help. I want to determine if certain Frame is open so I can locate an object/component using "FindComponent" Thanks in advance. Frances
  3. fraxzi

    Advanced Tab

    Hi @Sherzod, Can you please share how the pagecontrol tabs position on the right as exactly shown.. Thanks, Frances
  4. fraxzi

    Clear Button

    Hello @Sherzod, I tried this: ... if Self.Components[i].ClassType = TUniDBDateTimePicker then with TUniDBDateTimePicker(Self.Components[i]) do if ClearButton then with JSInterface do begin JSAddListener('afterrender', 'function(cmp){cmp.getTrigger("clear").hide()}'); JSAddListener('focus', 'function(cmp){if (cmp.getValue()!="") cmp.getTrigger("clear").show()}'); JSAddListener('blur', 'function(cmp){cmp.getTrigger("clear").hide()}'); JSAddListener('dirtychange', 'function(cmp){cmp.getTrigger("clear").hide()}'); //<-------- end; ... But got this: I would like to implement "dirtychange" for the field with "ClearButton = True" is this possible with DateTimePicker? Thanks, Frances
  5. Hi All Gurus, How about sending email via Office 365? -Frances
  6. Hi Everyone, How to change from this (default) accordion icons: to something like this (fontawesome): Thanks in advance. Frances
  7. Hi @Sherzod, The Guro strikes again! ... you always amaze me (us). works perfectly. Thanks, Frances
  8. Hi @Sherzod I'd like to change from this: (Collapsible, CheckboxToggle) To this: (no more CheckboxToggle) -> programmatically like if I chick a button. I tried fieldset.checkboxtoggle := false or with fieldset.collapsible := false, but not success. I hope you can suggest how to do it. Thanks, Frances
  9. Hi @Sherzod, How Can I set UniFieldSet1.CheckboxToggle programmatically? Thanks in advance. Frances
  10. You're the Man! @Sherzod, Works superbly! Thanks much, Frances
  11. Hi @Sherzod, I confirmed that: function reconfigure(sender, store, columns, oldStore, oldColumns, eOpts) { var widgetColIndx = 2; columns[widgetColIndx].onWidgetAttach = function(column, widget, record) { widget.setDisabled(record.get(widgetColIndx) != "0"); }; } Doesn't work if dgbrid.Options.dgRowNumbers := true ... works only of set to false.. I need the row number. What is the alternative? I tried widgetColindx = 3 with row number but it didn't work as well. Thanks, Frances
  12. Hi, I'm learning the chart.. How can I change legend inside the chart to the actual value (percentage)? Thanks, Frances
  13. Hi, I tried the pentest-tool and got this: How to update the jQuery of uniGUI or is it possible? Thanks, Frances
  14. Oh, one more thing.. How can I pass the cell value to ajaxRequest and get it? Thanks, Frances
  15. @Sherzod Eureka! It works!! 🤩 from now on I will use "ajaxRequest(this," ... Thanks much!
  16. Hi Sherzod, Based on the above if "Row.childNodes = 0" then ShowMessage('clicked'); I want to click on the child node and do something. I do this: function cellclick(sender, td, cellIndex, record, tr, rowIndex, e, eOpts) { if (!record.hasChildNodes()) { ajaxRequest(sender, 'nodeclicked', {value: b}, false); } } and this: procedure TLogs.dbGridPrjsAjaxEvent(Sender: TComponent; EventName: string; Params: TUniStrings); begin if EventName = 'nodeclicked' then begin ShowToast('node clicked!'); end; end; but not working.. i know I did something not right.
  17. Hi @Sherzod, Going back .. Unfortunately i don't know how to implement this. Can you help? Thanks, Frances
  18. Hey @Sherzod, another SuperMan Job!! I have no Idea where you get this ability but... Man, I'm a Fan Thanks much, Frances
  19. Hi Sherzod, Sorry at the moment I don't have a test case ... All I know is from above I got it scrolled.\ Thanks, Frances
  20. Hi @Sherzod, I have two fieldset.. How can I sync scroll on the other fieldset when I scroll with another? Is it possible? Thanks, Frances
  21. fraxzi

    Clear Button

    YES! You're the Man @Sherzod!! "dirtychange" works like a charm. Thanks much with your superb support. -Frances
×
×
  • Create New...