Jump to content

Mohammed Nasman

uniGUI Subscriber
  • Posts

    340
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Mohammed Nasman

  1. رمضان كريم، وكل عام وأنتم بخير
  2. Hello, I'm trying to use Sweetalert library to show better alerts, but when I try that, it became behind the form, as following: function click(sender, e, eOpts) { swal("Good job!", "You clicked the button!", "success"); } I'm using build 1421
  3. But as I saw, starting mobile app will show only mobile layout, or can I adjust it to build desktop too?
  4. Hi Farshad, I'm not sure yet, if we can use one toolkit (Modern or Classic) to work on both platforms(Mobile or Desktop) as I saw on latest trial (build 1450) when start project as mobile, you have the layout of mobile, and you star with classic, the mobile view isn't good fit. so the question, if I want to start new project that fit the two platforms(desktop & mobile) what should I use, and how to work with them properly?
  5. Very nice BTW, they website is off now, it says "Secure Connection Failed".
  6. The current version isn't built with Unigui, it has asp for pages, but if you look at html source, you will be sure it's not built with Ungui neither extjs
  7. That's really great one David, Thanks for your effort. If you want to create it as a real Book, I will BUY It
  8. You still young even with $ :-) I'm 51 OCT ;-)
  9. Wow, so you wrote your first project when you were 5 years old :blink2:
  10. If I'm not wrong, ExtJS 6 make developing responsive design is easy, and I think Farashad said he will add this feature later after finish the ExtJS migration from 4 to 6
  11. You can use System.hash to hash passwords, as: uses System.Hash; .... MyHashedPassword = THashSHA2.GetHashString('MyPassword',THashSHA2.TSHA2Version.SHA256) so you can store it to database as hashed, and when user login, you will hash the password and compare it to the one on database, and for more secure, please follow what Delphi Developer suggested.
  12. Have you looked at the Demo folder, there are two demos: - LoginForm - LoginForm Cookies Now these demos aren't related to authenticate users from database, but it's not hard to change that to check from database, are you using database users, or users stored on table?
  13. +1, I'm 41, glad to see devs who below 30 and using Delphi
  14. I used it for two days, then switch back to normal Delphi theme, it made the IDE slower, specially when navigating the code, and got many times freezing, when uninstall it, everything back to normal.
  15. PDF is a better to get the concept. while Video is better to get used how to do things quickly So both are good, and if you did both it will be great BTW, layout with extjs driving me crazy, plz do it ASAP.
  16. There's another project from Free Pascal team, with RTL written in JS http://wiki.freepascal.org/pas2js
  17. I have modified the title of the post, because the older was not clear.
  18. Hi All, I have multiple projects that share same images, I can view images without problem giving the physical path to the UniImage. The only problem I have with event OnFieldImageURL isn't accepting the physical path, it's convert any path to full URL with the path giving, which lead to not viewing the image. for example using GridImage Demo: if (Column.Tag = 255) and SameText(AField.FieldName, 'shift') then begin if AField.AsBoolean then OutImageURL := 'files/sun.jpeg' else OutImageURL := 'files/moon.jpeg'; end; Changing any OutImageURL to looks like this: OutImageURL := UniServerModule.StartPath + 'files/moon.jpeg'; it will be converted on runtime to the following This can works fine with TuniImage.picture.Loadfromfile(UniServerModule.StartPath + 'files/moon.jpeg'); Is there any way to override this behavior of OnFieldImageURL? Regards, Mohammed
  19. I'm not good at Android development, but if I'm not wrong, when you rotate the phone, the activity recreated, and that cause it to reopen the link again so switch to the login screen. it may require you to save state for the activity, so it will resume it, or if there's something to prevent the activity to not be created when rotating the phone
  20. حياك الله ابو ريان نورت الفورم
  21. Delphi Developer, Thank you very much, that's did it :D
×
×
  • Create New...