Jump to content

delagoutte

uniGUI Subscriber
  • Posts

    587
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by delagoutte

  1. i don't see th feature in the new version v1.90.0.1533. is it an oversight ? or is it for the next , next, next ,next ..... release
  2. Hello Hayri ASLAN, Could you confirm me that this bug will be fixe in the next release ?
  3. oui on a mis en place cette méthode couplé avec loggerpro + un appender pour écrire dans une base de données. En rajoutant le numéro de session et autres infos sur le navigateur, l'OS... ca permet d'avoir de la data qui devrait être exploitable pour déterminer les fonctions utilisées dans notre logiciel. y a juste ce "bug" sur les popupmenu mais sinon pour le reste(bouton, grille, panel....) ca marche bien
  4. thanks, i'm waiting this with impatience
  5. Hello, Could you check the test case ? could you find the problem ?
  6. Hello Hayri ASLAN, Had you got any time to check my test case ? have you got a fix ?
  7. Test case join to this message. launch project : click on button : ok click on a item on the menu of menubutton -> ko the name of control is empty Logger.zip
  8. so i use this code : procedure TUniMainModule.UniGUIMainModuleHandleRequest(ASession: TObject; var aObject :TObject; OurComponent :TComponent; OurForm :TComponent; Event : string; begin if (ASession<>nil) then begin if (TUniGUISession(ASession).IsAjax) then begin try aObject:= TUniGUISession(ASession).FindObject(TUniGUISession(ASession).ARequest.Params.Values['obj']); Event := TUniGUISession(ASession).ARequest.Params.Values['evt']; if (aObject <> nil) then begin OurComponent:= TExtObject(aObject).AttachedComponent; // form name, control name, event name, classname of component addActivityLog(OurComponent.Owner.Name,OurComponent.Name,Event,OurComponent.ClassName); end; except end; end; end; end; i have a problem with UnimenuItem. with this code, for itemmenu, i have a OurComponent.name that is empty and classname = TUniMenuControl. how can i do for having the name of the items on the menu ?
  9. i think it is a very good idea
  10. Is it possible to create an appender for the unigui logger ? i would like insert my log in a database if yes, is it possible have a sample of an appender. if no, do you see any problem for integrate in my unigui project a logger as loggerpro (https://github.com/danieleteti/loggerpro ) or other if you know other i think create the this logger on the servermodule create. do you see a problem with this ?
  11. hum , there is a big problem with this method. the explorer file is opened but we don't enter in the method onCompleted. on network, with the unifileuploadbutton we can see HandleEvent?Evt=upload&IsEvent=1&Obj=O253&fileno=0&filename=WEB-02-2015.WEXD&filetype=&filesize=23104&_S_ID=dbeajsdOzW105819AAB after i select the file. but with the menu item there is no call to the server after the file is selected
  12. big thanks. just a little problem, there seem to have a bug. if you have the UniFileUploadButton1 in a UniHiddenPanel then the property "filter" of the UniFileUploadButton1 don't work. if you don't use hiddenpanel and you set UniFileUploadButton1.visible = false it works.
  13. delagoutte

    aide

    oui les appli unigui sont déployable sur IIS et apache en ISAPI, mais il est également possible de le déployer en standalone ou service si vous n'avez pas de serveur web déjà disponible
  14. is it possible to have an item menu that is a TUniFileUploadButton ?
  15. I see the versions scrolling without this new function.(today 1518) I will need this evolution during our next "agile sprint". Do you think this new function will be released soon and if not do you have a way to unlock me in the meantime?
  16. i see that there is the new version v1.90.0.1515 without this feature. Do you think that this feature could be in the next release
  17. unigui probably does this correspondence table somewhere but we don't have access to unigui's "low level" sources code. So, I can't search for myself, that's why I'm asking for help.
  18. ok i begin my test but when i receive this : Ajax=1 IsEvent=1 Obj=ODC1 Evt=click this=ODC1 _S_ID=d83z78cTeL105218AE6 _seq_=3a how can i find the relation between "ODC1" and my delphi object ?
  19. yes and no, i would like a generic method exposed by unigui that catch all click,etc and in this function i could apply a "filter " for log like that : if event = click on the unibutton and if this name is BtnSave in form MyOwnForm then log(....)
×
×
  • Create New...