Jump to content

delagoutte

uniGUI Subscriber
  • Posts

    587
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by delagoutte

  1. Hello, i'm using the column checkbox for selection and multiselect. Is it possible to lock this column so that it is always visible even if you use the horizontal scrollbar ?
  2. hello, If i would do the same thing but for each item of unipopupmenu. how can i do this ? I would define different iconcls for my item menu
  3. New graphical version of our app with svg icon old version : http://forums.unigui.com/index.php?/topic/8298-screen-examples-of-youre-application-designs/&do=findComment&comment=42471 new version
  4. i'm not sur but i think you are blocked because you try to do cross protocol. try to see in your console, i think your webbrowroser say you why the iframe is not displayed. So i don't think there is an issue... or i don't know it
  5. show console, i think you must have the reason of this block frame. try this if possible uniurlframe1.url := TranslateUrlToCurProt('http://www.skyfalcon.com.br/...'); function TUniMainModule.TranslateUrlToCurProt(aUrl : string):string; begin if UniSession.SSL then begin result:= stringreplace(aUrl, 'http://','https://',[rfignorecase]); end else begin result:= stringreplace(aUrl, 'https://','http://',[rfignorecase]); end; end;
  6. I try to use svg but i have some problem with Internet explorer and edge.(not display, fill property...) Do you think that if i use sprite i'll have less problem ? where do you write your "extsj sprite" code ? in a custom js file ? when you say MainForm.window.add(sprite); After how do you call this for display the icon in a label for example ?
  7. actually if i want include a js library, i could use servermodule.customfiles or UniAddJSLibrary('assets/svgxuse/svgxuse.min.js', False, [upoPlatformDesktop]); in mainmodule initialization. How can i do for add defer params ? i need to produce a script line like this : <script src="svgxuse.js" defer></script>
  8. After, how do you use sprite in uni application ?
  9. I think you d'on't understand what i want. I would the user can not collaps the node. I would like the tree always to be expanded.
  10. Up, Is it possible to have a column for selection in unidbtreegrid as for uinidbgrid ?
  11. For a Column you set a control (Tuniedit if is a text field) on a hidden panel on column.filtering.editor set the control that is on the hidden panel on column.filtering.enable set to true
  12. i tried to use clientevent->extevents->Ext.form.Panel function form.activate(sender, eOpts) { alert('Formactivated'); } But nothing : no message box
  13. Sorry, http://forums.unigui.com/index.php?/topic/8651-forcefit-on-unidbtreegrid/&do=findComment&comment=44441
  14. How can we have the options for having checkselect/multiselect. i can't set to true
  15. I would lke my unidbtreegrid was always expanded. how can i disable collapsible property ?
  16. There is not option ForceFit on TUniDBTreeGrid. Can i do activate this option via clientevents and if yes how can ido ?
  17. it is not specially for the activate event but for all extevent. I have a problem in this ticket : http://forums.unigui.com/index.php?/topic/4154-azzurra-theme-from-unigui/&do=findComment&comment=44737 And i try to understand why it is not working in mfpage mode. I think the reason is that the mainform is not a Ext.window object but what does the ext.window object replace in mfpage?
  18. for sample , if i add on my mainform the extevent mainform.ClientEvents.ExtEvents Ext.window.Window : function window.activate(sender, eOpts) { alert('activated'); } if i am in mode mfWindow i have the messagebox but if i am not in mode mfPage i do'net have the messagebox. How can i do for having the messagebox in mfpage when my mainform is activate ?
  19. You could use scalabium import suite : http://www.scalabium.com/smi/ it Work fine and without excel so you won't have all problem that can exist with OLE
  20. Hello fenix, I see your job for adapt button of bootstrap https://github.com/bopoda/ace. Do you think is it possible that you could adapt the menus that are present in this library ( http://ace.jeka.by/top-menu.html ) and pagecontrol http://ace.jeka.by/elements.html
  21. it is not free but it is not very expensive. http://www.scalabium.com/sme/ i don't know if there is an esay way
  22. it is correct. if you set addtitle to false you won't have title in your export
  23. it is not the client that write on database. your client send the request like "demo:1234@192.168.xxx.1:8077/?luxs=46&onoff=0" the web server (unigui app)receive the request and do " if UniApplication.Parameters.Values['luxs'] <> '' then SaveParamLuxsInDB". For other client, i don't konw if you want a big reactivity but you could have a timer that read luxs value in database. so if you want more reactivity you could uses event of database (exemple with firebrd : POST_EVENT)
×
×
  • Create New...