Jump to content

d.bernaert

uniGUI Subscriber
  • Posts

    370
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by d.bernaert

  1. +1, need this for a major project...
  2. Hi, like a hyperlink, not a real hyperlink. I want to simulate the functionality of an action column. For instance a grid with the name of the customer, his address, and invoice number. When clicking on the customer name I want to open the customer details in pop-up form. When clicking on the invoice number i want to show the invoice details in pop-up form. Dominique
  3. Hi, I have several columns in my unidbgrid which is connected to a table. Now I would like to display certain columns in the grid as a hyperlink, so the text value coming from the table should be converted to a hyperlink. When the user clicks a certain field which is a hyperlink, I would like to execute an action. It is my intention to avoid using an action column this way. How can this be achieved? Thx, Dominique
  4. Thx! works perfectly. Dominique
  5. Strange, here is a screenshot of the settings. I've included this in a regular website without any problems. Dominique
  6. Thx Sherzod, got this one working. I have another one for chat. I tried the same, but that does not work. Could you have a look? Head section: <script src="https://wchat.freshchat.com/js/widget.js"></script> Body section: <script> window.fcWidget.init({ token: "e53250f6-030b-49cb-8b99-fb80642172fd", host: "https://wchat.freshchat.com" }); </script> Thx, Dominique
  7. Hello, I would like to include a script for support. This is the script, how can I integrate this in my application? <script type="text/javascript" src="http://assets.freshdesk.com/widget/freshwidget.js"></script> <script type="text/javascript"> FreshWidget.init("", {"queryString": "&widgetType=popup", "utf8": "✓", "widgetType": "popup", "buttonType": "text", "buttonText": "Support", "buttonColor": "white", "buttonBg": "#006063", "alignment": "1", "offset": "100px", "formHeight": "500px", "url": "https://adm-concept.freshdesk.com"} ); </script> Thx. Dominique
  8. Sherzod, works perfectly. Thx, Dominique
  9. Hi Gerhard, thx, for the grids I know, but it's the initial loading icon when starting the application. I would find it more elegant not to show anything on startup. Dominique
  10. Hello, I would like to disable the loading message completely when starting the application, but just when loading for the first time, not when loading data, ... Is that possible? I could not find a property in de servermodule or mainmodule. Thx, Dominique
  11. Solved this way, thx Sherzod. Dominique
  12. Hi Sherzod, here included a small testcase. Grtz. Dominique TestReturn.zip
  13. d.bernaert

    Flexcel

    Solved.. sorry. Dominique
  14. d.bernaert

    Flexcel

    Hi, I'm trying to use Flexcel to export data to Excel. Everything works fine when compiling as a standalone executable. When trying to distribute as an ISAPI dll, the dll won't even start in IIS. Does anybody have experience with this. There are 2 procedures to be called because Flexcel uses GDI+ but I don't know where to call them. Thx, Dominique
  15. Hi Sherzod, I have the property on the form set to 13 -> submit. When I'm in a unidbmemo and I press enter, it fires the submit, posting the record in the database. I've added the following function in the Keydown in extEvents: { if (e.getKey() == e.ENTER) { e.stopPropagation(); } But it still executes the submit. Thx, Dominique
  16. Hello, I would like to trap the enter key for saving a record in an update screen. This works fine when trapping the #13 key. But I would also like to be able to keep using the enter key in a memo or html edit control without invoking the #13 key on form level. Is that possible? Thx, Dominique
  17. Sherzod, solved this way! Would you mind to share how you get all this knowledge? I would like to study all this stuff and get more knowledge. Do you have suggestions concerning this? Thx, Dominique
  18. Hi Sherzod, thx, but that's not what I am looking for. I want the right of the popup to align with the right of the button. This is the actual situation (screenshot), but I would like the right of the pop-up to align with the right of the button, so if the text of one of the pop-up menu items is large, it should expand to the left. Thx, Dominique
  19. Hello, I have a button and in the onclick event I show a popup menu with the following code: PopupMenuMore.Popup(0, 36, Sender); This shows the popup menu aligned to the left side of the button. I would like to align it to the right side of the button. Therefore I would need to have the width of the pop-up. Is that possible? Thx, Dominique
  20. Hello, I would like to create the following effect. When showing a modal form for more details, I would like to show it on the right side of the screen. Also if possible, i would like it to slide out from the right. Is that possible? Thx, Dominique
  21. Indeed. But sometimes the user is working in a screen and from there he goes to another form which replaces the currently visible form. When finished, he wants to find the first screen again in the same state as it was before going to the second screen, only modified with the modifications done in the second screen. For instance, I'm in an data entry screen and the user has a field with a search button, I want to open the search form replacing the entry screen and after selecting the wanted data, I want to return to the first screen only changing the form with the selected data. Dominique
  22. Gerhard, thx, I was thinking in that direction. But how do i inform the first tab the second tab has completed and a refresh is needed? The update form can be used from different basic forms for instance. Also my second question, I've been using embedded forms on the tabs. Reason for this is that with frames I don't have a focus property or am i missing something? I would like to put the focus on the field i want when opening a tab with controls. Thx, Dominique
  23. Hi, thx, I now the megademo and created already quite a few applications using this strategy but always displaying the list of data in the mainform and updating in a modal form as I can trace the changes on the callback of the modal display. I will look into the observer pattern. Thx, Dominique
×
×
  • Create New...