Jump to content

d.bernaert

uniGUI Subscriber
  • Posts

    370
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by d.bernaert

  1. Hi, I need to fill up a unistringgrid with projects and possible comments. I need to have the project name on the first line and below that a longer text with comments. How can I make the text of the comment word-wrap in the cell? Thx, Dominique
  2. Thank you, I will give it a try. Is there something simular for Android? Dominique
  3. Hi Peter, It was my intention to follow the 2 examples from Mohammed and go that way. I was just looking at PWA to combine the work from Mohammed and have the application installed with an icon, a loading screen, ... Dominique
  4. Hi, I'm starting with the mobile version of Unigui and I would like the mobile version to be as app-like as possible. Is there any project sample that shows how to do this? Thx, Dominique
  5. Hi, So there is no fix for this for the moment without going over all the controls and adding the extra code? I have around 300 forms... Dominique
  6. Hi, I use the property fieldlabel on all my input controls. Today I needed to a unitagfield component. Why is there not property fieldlabel? Thx, Dominique
  7. Hi, I've been using TsiLang for all my Unigui projects. Works great. Dominique
  8. Hi, I'm having an issue that I think did not have in the past. The date displayed in the field is dd/mm/yyyy which is correct. But when entering a date using the keyboard for instance 05072020, the date is transformed to 07/05/2020. Don't know why it does that now, don't think it did it before. On create of the servermodule I set : PFmtSettings.DateSeparator := '/'; PFmtSettings.ShortDateFormat := 'dd/mm/yyyy'; PFmtSettings.LongDateFormat := 'dd/mm/yyyy'; and the DateFormat on the component is also set to dd/MM/yyyy Thx, Dominique
  9. Hi, I have a question not directly related to Unigui but more to web development in combination with Unigui and Delphi. We have the request of customers that they can create letter templates easily, upload them to their account and mailmerge the letters with data from the database. The letter should be generated to a pdf-file that can be printed or send by mail. We normally use FastReport to generate reports, but in this case we want to give the user something easy to use to create the templates. In that regard I've been thinking to let the end-user create letter templates in Word. These templates can be uploaded to their account. The Unigui application would be responsable for the mail-merge of the Word template. Is there any Delphi component out there that would allow to do this? Other suggestions are also welcome off course. Thx, Dominique
  10. Hello, just a question if there is somebody out there that would have integrated reading the Belgi EId card. We would need to capture the data on the card (not confidential data) including the image that is stored also on the chip. I've looked all over the internet for javascript libraries that would support this, but without luck. Thx, Dominique
  11. Thank you these tutorials! This is the kind of things we need to effectively use Unigui. Much appreciated.
  12. Hi, thank you for your answer, but it does not seems to solve the issue. I've tried with the following code (removed the datasource and the listsource just to be sure) in the callback but I still get index out of bounds. procedure TQuotesAddFrm.CallBackInsertUpdateAccount(Sender: TComponent; AResult: Integer); begin if CrmAccounts.Active then begin ComboAccount.DataSource := nil; ComboAccount.ListSource := nil; CrmAccounts.Refresh; ComboAccount.ListSource := DsCrmAccounts; ComboAccount.DataSource := DsHeaderWork; if UniMainModule.Result_dbAction <> 0 then UniFinancialModule.HeaderWork.FieldByName('Account').AsInteger := UniMainModule.Result_dbAction; end; end;
  13. Hi Sherzod, Here included you can find a testcase. Just run the application, you will see the dropdown contains 2 customers. Click the button to create a new customer in the customers table. Click on the combobox and select the new customer in the list, you get index out of bounds. Dominique unidblookupproblem.zip
  14. Hello, I'm still having a problem with unidblookupcombobox when using the mode umNameValue. I have a unidblookupcombobox filled with customers with the mode umNameValue to be sure that the correct customer is selected. I also have a trigger on the unidblookupcombobox that allow the user to create a new customer if not present in the list. When the user clicks the button to create a new customer, he gets a popup where he can create the customer. When returning, in the callback I refresh the list linked to the unidblookupcombobox to have the new customer included in the list. When selecting the new customer, I always get index out of bounds. I don't have it when using mode umNameOnly. Anybody?
  15. Hi Farshad, I've found the cause. Here included you can find a simple sample application. It seems there is a problem with using OnFieldImage. This sample uses a firedac memory dataset and calculates the total amount in the beforepost. When the code in OnFieldImage is enabled, 1 out of 2 times the beforepost is not called. When the code is disabled, the beforepost is always called. Could you please take a look at this? Thx, Dominique TestOnPost.zip
  16. Here you can see the behavior. First click on save fires the event (gets back to the breakpoint). Send edit fires nothing, third fires again. Dominique Screen Recording 2020-06-23 at 19.52.00.mp4
  17. I will try to create a small testcase Farshad.
  18. Okay, but when pressing confirm the beforepost of the dataset attached to the grid is not fired. Dominique
  19. Hi, I'm facing a rather big issue. I've received a complaint of a big customer that when changing the price and quantity in the orders, prices are not calculated correctly anymore. I use a row editor in unidbgrid and have an event beforepost on the dataset that calculates the price of the line. The event is not called anymore in the latest version of Unigui. Has something changed here? I need to check with another dataset type as I also upgraded my IbDac components to be 10.4 compatible but if it's a Unigui issue, please look at it urgently because I'm having a few angry customers for the moment. Thx, Dominique
  20. Hello, tried to compile the packages for 10.3 in 10.4 but I get an error. When can we expect support for 10.4? All third party components I use already released updated versions. I suppose you had access to the beta releases? I did. Thx, Dominique
  21. d.bernaert

    News editor

    Hello, Hello, we have an online ERP-application written in Unigui. This application also a portal for end customers. We have the request to be able to show news items form the company the portal belongs to. So I'm looking for an easy way to draw full html documents in a visual way that can be displayed as news items on the portal. The html editor included with Unigui does not have the needed possibilities even witch some hacking for images. For instance, I need an editor that allows to insert images but also resize them if necessary and support for tables. Are there any suggestions for this? Thx, Bernaert Dominique
  22. Hello, my customers want to send mail using their own email signature, so I need to provide a way they can create their signature that is stored on the server. The standard html editor of Unigui does not support images, is there an alternative to create html files on the server with image support? Thx, Bernaert Dominique
×
×
  • Create New...