Hello,
I persist all my data (including binary) in SQL Server database tables. On the client side, on occasion I add embedded components (images) to individual cells in a ListGrid via ListGrid.addEmbeddedComponent.
At present I ensure that the binary data is cached on the filesystem and uniquely identifiable so that I can specify an appropriate URL which I supply to the constructor of Img, but I would much rather make an instance of Img by supplying the raw byte stream which is already available on the client side. Is this or some alternative possible?
I persist all my data (including binary) in SQL Server database tables. On the client side, on occasion I add embedded components (images) to individual cells in a ListGrid via ListGrid.addEmbeddedComponent.
At present I ensure that the binary data is cached on the filesystem and uniquely identifiable so that I can specify an appropriate URL which I supply to the constructor of Img, but I would much rather make an instance of Img by supplying the raw byte stream which is already available on the client side. Is this or some alternative possible?
Comment