-
Content Count
203 -
Joined
-
Last visited
Everything posted by sjordi
-
Hi, I'm using a TTabControl and the TTabItems show very very small fonts just on iOS. If you compile the MultiView demo they provide, you may see this as well, so I guess I'm not doing anything wrong. Here is an example of how it looks like on Windows, macOS and Android (fine) and then on iPad and iPhone... From top to bottom: Android, macOS, Windows, iPhone, iPad The "All" and "Needed" texts are about the same size to the item (toothpaste here). On iOS the TabItem font size it's about 20-30% of the regular one. I tried Platform behavior or styled to no success Any idea? Thanks for your lights
-
The Interbase ChangeView feature is really appealing to me but I was wondering whether you can use this without servers. Mainly, I would be interested to use IBToGo on my mobile device apps and the desktop equivalent, which would also have IBToGo. All databases embedded only on each device (mobile or desktop). Is it still possible to use Change Views between two IBToGo databases with zero IB Server? Just talking from iOS to a Mac or Android to Windows, Android to iOS? In one word IBToGo <--> IBToGo. Or do ChangeViews work only via a server tier? What they call the "central database" (reference)... Thanks for any clarification.
-
Ok for those of you wondering the same thing I got an email from Embarcadero. You need a IB Server to have change view. It's on the server that lies the mechanism and where the data is processed. You can't use change views between, say, two IBToGo, like one on a smartphone and one embedded on a desktop. They both would ask to connect to the Server to process the changes. Too bad.
-
Hi, I have aTListView hooked to an underlying Database where one of the values is a currency, a price. My ListView is bound to the DB via a PrototypeBindSource and an adapter to switch from dummy values to the DB content. In that Prototype field I have the one field set a currency and its CustomFormat property set to #.00 I tried any kind of formatting without success. The format is ignored. I need 2 decimals, but zeros ( 0 ) are skipped. No matter what, trailing zeros are ignored. 12 is shown as 12 instead of 12.00 12.6 is shown as 12.6 instead of 12.60 etc Any idea? Should I get that value from the DB and format it as a string myself? In that case, what's that CustomFormat field worth for? Thanks for any clarification. Steve
-
Yes. Why did I write DisplayFormat? But this didn't change anything though. That did it. Funny! Works on macOS now. Thanks a lot Crazy bug though.
-
Ok that did it...Almost I probably screwed something somewhere in my steps replicating your instructions. It works for Windows, iOS and Android but not for macOS-64 where all values are 0.00. Any idea why? Is the FilleControlToField behaving differently for macOS? For those facing number formatting I have a BindSourcePrototype with the field names matching exactly the Database fields linked to the app (via an Adapter). So in LiveBindings, I hooked it from the Prototype to the TListview. Then, as suggested, I selected the link between the prototype and listview in the LiveBinding Window. Then you can edit the link properties (the TGeneratorFieldDefs property) and set its CustomFormat to DisplayFormat Then, in the structure window, select the same field in the LinkFillControlToField branch, open the FillExpressions one, select your field (the one to format) ControlMember and SourceMemberName should be hooked to your field. But the CustomFormat should be set to Format('%%.2f', %s) Then it works. Thanks a lot.
-
Ok I will investigate this in the coming days and come back with success/failure as soon as possible 🙂
-
Euh ben non, il est pas content. Adding DisplayText is refused. It complains about that info to be unknown. Also if I right-click on the LinkListControlToField object and edit the expressions, all fields are grayed out and DisplayText is actually shown in the disabled fields (in the dialog box)... Now where do I specify the format itself, because I guess I still have to do this somewhere? Thanks
-
Hi, It seems that the MultiSelection property has disappeared from the TListView component. It was available in XE4 if I'm correct. Any quick and smart way to allow the user to touch/click any TListView item and mark it as selected? And then be able to access the list of the selected item? I'd like the list to draw each selected item's background in, say, light blue! Thanks for any light on the technics. Steve
-
Ok I checked now. My problem is I want to skip the checkboxes. I just want to touch/click an item to select/unselect it. Both OnItemClick or OnItemClickEx seem to be triggered, but I don't find a way to update/refresh the listview. My guess is I actually have to hook the click to the underlying database. This way, when data is changed it should update. I'm not sure whether there is a way to force a refresh: for testing purpose only I was using the Item.Tag to set it on/off, but obviously it's not enough.
-
I'm going to check once back home and let you know
-
I confirm that it also works on macOS and iOS YEAH You will be in my thanks in the about box of the app.
-
Did you try TurboPower Lockbox ? It's free
-
Great, I confirm that it now works on iOS... Probably on Android as well but my device is at home. Good workaround. I use it to actually change the background for multi-selected items... for i := 1 to 1000 do ShowMessage('Thanks a lot Serge !');
-
Ok, I won't throw a stone if you don't have Apple devices. I tried on my Android system, same thing: Gray interface. Now I made sure not to have any styles, and also tried the ControlType of the ListView to be set to Styled or Platform. No change. Smartphones are gray. macOS, Windows are colorful with the color I picked... Very strange.
-
Mhh, @Serge_G I implemented your code and it works fine except... on iOS. Nothing happens. Then I downloaded your code from the website you mention, compiled. Same thing. Ok on macOS, Windows, but not iOS. Don't have my Android device here, so I can't say. Any idea why damn iOS won't colorize? Steve
-
Honte à moi, en plus j'avais le document quelque part et ne l'ai pas vu!!! Argh! Merci ! (Translated: shame on me, I had that document somewhere and didn't notice it! Argh!)
-
Thanks, I'm going to check this. French is my mother tongue, so no problem. Interfaces are a must go anyway in good practices. Steve
-
Yes, Just tried on an "old" iPhone 6S under iOS 12.4.1 Xcode 10.3 RADStudio Rio 10.2.3 iOS SDK in RADStudio: iPhoneOS 12.2 and 12.4 as well. Here are screenshots of the breakpoint in RADStudio and the "frozen" splash screen of the app at launch, just waiting for me to continue into the code.
-
You might have to open Xcode. Go to Windows > Devices & Simulators. Then unlock and connect your device. It will do its magics and after a while. after the little wheel stops spinning, you should try again. Is it better this way?
-
Did not try on iPhone yet, but the Mac deployment works without problems.
-
I found an example from Rahiche Raouf, an excellent MVP in Algeria. He has an example on how to colorize a list view by adding a TListItemTextButton But unfortunately it seems that it doesn't work in Rio anymore. Modifying text, etc... works fine, but not the TintColor. procedure TForm1.ListView1UpdateObjects(const Sender: TObject; const AItem: TListViewItem); var textRect : TListItemTextButton ; begin textRect := AItem.View.FindDrawable('Rectangle') as TListItemTextButton ; textRect.TintColor := TAlphaColorRec.Green ; textRect.Text := 'Hello' ; end; This doesn't seem to work anymore 😞 I'll investigate further and post back once (because it will!) it works!!!
-
Ok after tinkering with it, it seems that there is no way to multi select except when in Edit mode. Problem is I absolutely don't want it to be in Edit mode, and I don't want the check boxes to be shown... Hard to believe that such a basic feature is not implemented in TListView. I tried to work around this by implementing a CustomDraw mechanism, but even that seems not to be available, rendering ListViews useless in my case...
-
I think that the free FMX TurboPower Lockbox offers AES encryption and it works on any platform. Did check whether AES256 is supported, but it's worth a look. Install it via GetIt
-
Hi Dave, Yes I have seen this and it works, but I'm not sure I can escape the "Edit" mode. I'll study this. I just want to achieve a click or touch on any item and set it as selected/not selected... But I guess that it works the same way under the hood. Steve