Jump to content

delagoutte

uniGUI Subscriber
  • Posts

    587
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by delagoutte

  1. How having a button on a TVCLStatusPanel in a Tunistatusbar and not text. what is style option "psownerDraw" how use it ?
  2. Hello, is it possible to have an explain for the ISAPIOptions asyncmode ?
  3. Hello, We have our unigui app deploy on a IIS server that works on http or https. How can i do in my app if it's working on http or on https ?
  4. Is it possible to set the width of column in percent of width grid ?
  5. any news ? I think farshad will not work on this new compoement before the v1 of unigui was released. But Farshad : could we have a aproximate date for the v1 ?
  6. delagoutte

    open pdf

    copy file from docs to the files directory and call UniServerModule.FilesFolderURL+filename
  7. delagoutte

    open pdf

    see this topic, it is use the lib pdf.js http://forums.unigui.com/index.php?/topic/4219-a-pdf-viewer-panel-no-browser-plugin-required-pure-javascript/?hl=pdf.js
  8. Hello, i need 2 application that could communicate between themself. I try create a prototype. I create a unigui app (salve app) with a memo and on mainForm i use onajaxEvent procedure TMainForm.UniFormAjaxEvent(Sender: TComponent; EventName: string; Params: TUniStrings); begin UniMemo1.Lines.Add(EventName+' : '+Params.Text); end; i create a second app(master app) with a uniurlframe with URL property : the adress of slave app i add a unibuton with this code procedure TMainForm.UniButton1Click(Sender: TObject); begin UniSession.AddJS('ajaxRequest('+UniURLFrame1.jsname+', "_CustomWEvt", ["Param1=Value1"])'); end; the slave app don't receive "_CustomWEvt" from master app. What is not correct? How can communicate from slave app to master app ? Projects code in join file
  9. I just noticed that there is a OnMulticolumnsort Event but the array of column contain only one column. How it's working ?
  10. the operation of the current sorting does not suit me. I wish I had the following behavior : exemple 1 : application start with a dbgrid click on first column title -> sort = col1 asc click on first column title -> sort = col1desc click on first column title -> sort = none click on first column title -> sort = col1 asc ... exemple2 : click on first column title ->sort = col1 asc click on first column title ->sort = col1 desc click on second column title ->sort = col1 desc , col2 asc click on first column title -> sort = col2 asc For do it, I need to change the image of the sort (the arrow) by code. i need to synchronize the images of sort with the current state of tri. How can i force display asc or desc arrow or none ?
  11. i must set a mask for a float field and date field. How can i automaticly adapt mask with the client regional settings ?
  12. there is not event onDrawColumnCell for mobile dbgrid. Could you add it ?
  13. I need a dbcombobox that display image and text with associeted value like this image In this image if green is selected value in db is 3 , yellow value is 5 ...
  14. Is it possible to have a unidbgrid with a unidbnavigator embedded like this image :
  15. Hello, actually i have vertical tabsheet with vertical title tabsheet vertical. i would have title horizontal. Actually : What i want : How could i have this result ?
  16. hi, it's working. but where do you find all this informations of components extjs property like btnInnerEl.setStyle ....
  17. Hello, i'm trying to set font color in red with this code UniSession.AddJS(tsDce.JSName + '.tab.btnInnerEl.setStyle(''font-color'', ''#FF0000'')') but it don't work .where can i find list of style property
  18. idem i'm curently port our app on web with unigui and i'm using devexpress treegrid. Actually we don't have equivalent of treegrid in unigui and so, i'm blocked. can we expect the addition of this component in the near future ?
  19. it is not seem the same minimum for unigui for exemple : extjs requirements are ie8+ but if i try my webapp on ie8 i have a warning message "Your browser is not supported,......" more there is not min version for other browser i don't think firefox 1.0 is compatible. What are the minimum version number used by unigui for display the warning message ?
  20. We develop a web app with unigui.(desktop webapp) our supprt ask me the minimum requirement on client side. Could you help me ? min version for : IE FireFox Chrome Opera Safari ..... what is the best according to you ? Computer configuration minimum for having good user experience ? core i5 +3Go + windows 7 what do you think ? Thanks for your help
  21. Hi, I did an activex. I put it in the form in an UniHTMLFrame. (with UniHTMLFrame1.HTML.Add(...) ) in the form i put 2 buttons : procedure TForm_Signature.Btn_SetClick(Sender: TObject); begin unisession.AddJS('document.getElementById("pActiveXTest").Property1 = "' + e_set.text + '";'); end; procedure TForm_Signature.Btn_GetClick(Sender: TObject); begin unisession.AddJS('alert(document.getElementById("pActiveXTest").Property1)'); end; All work fine. But instead of unisession.AddJS('alert(document.getElementById("pActiveXTest").Property1)'); i want to save the result in a string variable (or edit or memo ...) to use the result in my form. How cani do this ? Thank you
  22. With Tunitreeview , there is no function getnext and getnextsibling. (or i don't found it) Could you implement functions please ?
×
×
  • Create New...