Jump to content

picyka

uniGUI Subscriber
  • Posts

    1048
  • Joined

  • Last visited

  • Days Won

    34

Everything posted by picyka

  1. picyka

    tms xdata

    Does anyone use UNIGUI WITH TMS XData?
  2. picyka

    Triggers

    Any suggestions or tips?
  3. picyka

    Triggers

    Attached is an example, I select more than one record, I can click on the red ball, which will change the color and will change an internal property, this one is in angularJs.
  4. picyka

    Triggers

    Good morning, in summary, I need a component where, I can filter more than one record storing in a list (it is important that the remotequery works) I need that component to have a checkBox next to it, so that the user can be checking the option , this markup will take effect in sql, example if component.CheckedExcept then Sql.Add (true) else Sql.Add (False) I like to customize my components, this gives a lot of agility in development.
  5. picyka

    Triggers

    I was unable to do what I need, attached a picture of the field. When I click on trigger 1 I need to change its color, and also change a new property in the component called property CheckExcept: Boolean
  6. picyka

    Triggers

    Hummm .. I will try.
  7. picyka

    Triggers

    I'm sorry, I don't have the code here, but to sum up, I need to change the data of a Triggers in rumtime, something like this: procedure TMainForm.UniButton1Click(Sender: TObject); begin UniDBLookupComboBox1.JSInterface.JSCall('getTriggers().t1.setImageIndex', [0]); //t1, t2, t3, ... UniDBLookupComboBox1.JSInterface.JSCall('getTriggers().t1.setHint', ['Test']); //t1, t2, t3, ... end;
  8. picyka

    Triggers

    When clicking on item 1 in the list of triggers I need to change the image and the tip, this would be in the Triggers event Example if AButtonId = 0 then start if Campo.Triggers [0] .ImageIndex = 0 then start Field.Triggers [0] .ImageIndex: = 1; Campo.Triggers [0] .Hint: = 'Check False'; end other start Field.Triggers [0] .ImageIndex: = 0; Field.Triggers [0] .Tip: = 'Check True'; end; end;
  9. picyka

    Triggers

    Good morning, how to change Campo.Triggers [0].ImageIndex: = 1; Campo.Triggers [0].Hint := ''test programmatically?
  10. I managed to solve this autocomplete in passwords, if so, I can send the code later.
  11. picyka

    RemoteQuery

    I trust your talent @Sherzod
  12. picyka

    RemoteQuery

    https://fiddle.sencha.com/#view/editor&fiddle/2ab6 It would be something like this, but it looks like there is a bug there.
  13. picyka

    RemoteQuery

    UniTagField component does not have the RemoteQuery event, for a large table it will be very slow.
  14. picyka

    RemoteQuery

    I once looked at it, but I didn't have the published remotequery, I'll check it, thanks!
  15. picyka

    RemoteQuery

    Good morning, could you give any suggestions?
  16. picyka

    RemoteQuery

    Is there such functionality?
  17. If you work with object orientation, where the rules are separate from the forms, you can easily reuse everything.
  18. picyka

    RemoteQuery

    In parts it worked, but I can't type in the field to search
  19. picyka

    RemoteQuery

    As far as I can remember, even configuring the component does not trigger the RemoteQuery event
  20. UniDBGridSearch.ClientEvents.ExtEvents.Values['beforerender'] := 'function beforerender(sender, eOpts) ' + ' { var pagingBar=sender.pagingBar; ' + ' if (pagingBar) { ' + ' pagingBar.add(0, {xtype: ''tbfill''}); ' + ' pagingBar.add({xtype: ''tbfill''}); ' + ' } ' + '} ';
  21. picyka

    Menu Mobile

    When I click on the show left menu button for example at that moment the menu is available, until then, but when I click on the menu item, I need that it no longer appears, only if I click on the show left menu button again, it would be the same functionality of a poupmenu http://prime.fmsoft.net/demo/touch/mdemo65.dll/m item Menu.
  22. picyka

    Menu Mobile

    It would be like in the mobile menu (TUning Menu) to function as a TUnin PopupMenu, that is, it will fire when clicking on a button, after the user clicks on the menu item it will no longer be available Displays: Self.UnimMenuOpServico.Visible: = True; Shouldn't show more Self.UnimMenuOpServico.Visible: = False;
×
×
  • Create New...