johnp Posted March 21, 2015 Posted March 21, 2015 Questions for use.1. UnimDBSelect on a query.a). First the records do not seem to tag or go to the record of a selected item from the UnimDBSelect list.It tried two ways to add to my UnimDBSelectlist.I checked the autoadd properety as true. The autoadd property does not add all records at once.Onlty if I nagivate through each record one at a time with a navigaor then it will add to the UnimDBSelect list.B. I tried to add items to my UnimDBSelect as below wih the same result that once poplulated it does not seemto match or tag to the record after a selection is made.UnimEdit3.Clear; DataModule.QryNameList.Filter:= 'Receiver LIKE ''%'+UnimEdit3.Text+'%'''; while not DA3DataModule.QryRoutes.Eof do begin UnimList1.Items.Add(DataModule.QryNameList.FieldByName('Lastname').AsString); DataModule.QryNameList.refresh; end; What is the best way to populate? Do I have to create code to tag a record from a UnimDBSelect list and query?2. The size of EXe seems to has nearly tripled in size with adding mobile components to my application. From 9mb to 26mb Why is it so big, or can I configure the use of the librarys differently?3. What is the flex property on dbedits?
Administrators Farshad Mohajeri Posted March 21, 2015 Administrators Posted March 21, 2015 a) unimDBList works same as uniDBCombobox. It doesn't change the table cursor. Yes, AutoAdd adds new records when you navigate. unimDBList is not a navigator. I'm preparing a new mobile List component which will act as a Navigator. We will also have a mobile Grid in complete edition. 2. Mobile only adds a small footprint to binary size. Source of additional MBs must be something else. 3. Please see Clientside Alignment - Layouts and Flex demo.
Alysson_pp Posted May 13, 2021 Posted May 13, 2021 I'm going through the same problem, the "uniDBselect" is showing only 2 records, but the clientDataSet has 22. What is the component that entirely replaces UniBDLookupComboBox on mobile
Recommended Posts