LiveBindings is a data-binding feature supported by both the VCL and FireMonkey in RAD Studio XE2.

learn more… | top users | synonyms

0
votes
0answers
99 views

Insert image in SQLite database. Delphi XE3

I have a question. How to insert an image in SQLite database with Delphi XE3 (FireMonkey project)? And can I link TMetropolisUIListBoxItem.icon with this BLOB field (use Visual LiveBindings)?
0
votes
0answers
80 views

ListItemStyle and LiveBindings in a TListBox - Firemonkey

I am trying to implement my own ListItemStyle within a TListBox using LiveBindings (and I orginally thought, a TStyleBook). However, I am unable to directly link my Layout defined in the StyleBook to ...
0
votes
1answer
99 views

How to access dataset from custom component linked with Live Bindings?

I am creating my own DBGrid that is derived from TMSFMXGrid. How can I find out which dataset is linked to this grid, if it is linked using Live Bindings? In design time you can see in object ...
2
votes
0answers
72 views

Bidirectional Livebinding of TRadioGroup in VCL

New to livebindings and so far it hasn't been a smooth journey. I'm trying to link a TRadioGroup.ItemIndex to a TObject property that's an Integer. So I know the bindinglist/adapter is ok as other ...
2
votes
1answer
159 views

Can I connect a Delphi TEdit (or similar) simply to a published property of a class?

I've had this problem for years but maybe it is now possible to easilty solve it. I need to lay out a panel with several TEdit controls, each should show, and allow editing of, a published property of ...
2
votes
1answer
273 views

XE3 Visual LiveBindings: bidirectional connection between TSpinBox and TTrackBar (FireMonkey)

I am using Delphi XE3 with SP1. I have created a FireMonkey Desktop Application and dropped a TSpinBox and a TTrackBar on the main form. I have now connected the "Value" property of the TSpinBox and ...
0
votes
0answers
97 views

How to switch to TBindSourceDB at runtime after design UI with TPrototypeBindSource?

I am trying the LiveBindings in XE3. I have design a form with some controls using TPrototypeBindSource. The controls are bounds to fields in TPrototypeBindSource using visual designer. I can see ...
0
votes
2answers
655 views

Firemonkey livebindings custom Grid columns

I've trying to add some custom columns to a TGrid, for example column that will consist of TCalendarEdit's and livebind it to DB. I came out with two ways of how to implement something like this. ...
0
votes
1answer
351 views

Delphi XE 3 LiveBindings AutoInc SQL Server

I have a Delphi XE3 Firemonkey app with LiveBindings to a SQL Server. I can connect and see all the data on a grid. I have a field ("id") which is an "identity field" on SQL (more commonly known as an ...
2
votes
0answers
234 views

Can we use boolean operator in Delphi XE2 LiveBinding expression?

I am planning to write a Live Binding source expression for TCheckBox: SourceExpression = '(Checked = False) and (Enabled = True)' When execute the code, an exception prompted: Expected EOF - ...
0
votes
1answer
202 views

Livebindings BindScope Notification

To get started with live bindings i am currently writing some demo code. But at one point i have a problem where i don't find any documentation on. I have a form with multiple TEdit's and want to ...
2
votes
1answer
689 views

How to write live binding expression that control TEdit.PasswordChar based on TCheckBox.Checked?

I have 2 controls on a form, TCheckBox and TEdit. I want to use Live Binding to perform this: When TCheckBox.Checked = True, set TEdit.PasswordChar = * When TCheckBox.Checked = False, set ...
6
votes
1answer
499 views

How to use live binding to bind blob field to TImage control?

I am using Delphi XE2 to write a VCL win32 application. Delphi XE2 support live binding. I load sample Biolife.xml into a TClientDataSet instance. I able to bind a TEdit control to dataset's string ...
2
votes
1answer
774 views

TDBLookupCombobox FireMonkey

TDBLookupCombobox Can anyone help me to reproduce TDBLookupCombobox functionality in FireMonkey?
0
votes
0answers
418 views

Livebinding interfaces in delphi

I created a small project using Delphi FireMonkey platform to try out the new live bindings feature. I want to populate TListBox with items TList<IFoo> and I use BOCollection example. ...
4
votes
2answers
1k views

How to show more than 200 rows in TStringGrid using LiveBindings?

I have a TDataSource that is backed by a TClientDataset bound to a TStringGrid. I did this by right-clicking on the grid, selecting "Link to DB Datasource...", and selecting the DataSource. This setup ...
3
votes
0answers
744 views

Firemonkey and Livebindings performance with databases

In Firemonkey, i found Livebindings engine extremely slow when binding grids with databases. It takes more than 30 seconds to fill up a grid with 5000 records and 10 columns. I tried both ...
2
votes
1answer
958 views

Livebinding Listbox in Delphi xe2

How can I sync two TListBox objects, by accepting any change on any of the listboxes to be available in both the listboxes. ===================== updated ...
4
votes
2answers
305 views

It is possible to do something like XE2 LiveBindings in D2010?

It's factible or it uses some compiler technology only available in XE2 ? I just want to bind (bidirectional) a TEdit.Text property to a object function that returns a string in code (I don't need ...
4
votes
2answers
753 views

Is it possible to bind (using live-bindings) multiple components to an (non component) object?

I've got an object, let's call it Controller which is NOT a component, it has an enabled property. Can I use live-bindings to say bind it to the enabled properties of some components on a form? i.e if ...
8
votes
1answer
2k views

LiveBindings - TList<TMyObject> bound to TStringGrid

I have the following example set of code, how can I bind the Data list elements to the TStringGrid using LiveBindings. I need bi-directional updates so that when the column in the grid is changed ...
13
votes
1answer
2k views

Need bidirectional LiveBindings between a control and an object

In Delphi XE2 LiveBindings, I need to bind a VCL control of any type to a property of any type on an arbitrary (non-component) object. I can do this unidirectionally. But I need to do it ...
2
votes
1answer
2k views

DB Lookup field with Firemonkey and Delphi XE2

I can't find a way to bind a TCombobox with a lookup field in Firemonkey. In VCL you have a TDBLookupComboBox that just needs a TDatasource component and the lookup field name to populate the combobox ...
7
votes
2answers
849 views

Monitoring lists using LiveBindings

I've been trying to find a generic way to notify a UI control of changes in a list. For example, when an object is added to a list I want it added automatically to the listbox. If an object is removed ...
11
votes
2answers
875 views

Observers property in TComponent

Hi Delphi XE2 TComponent has a new "Observers" property. Unfortunately the help entries for this are empty. Does anybody know what this new property is good for and how to use it? Edit: Well i know ...