[flexcoders] Font Leading Problem in Browsers

2008-06-11 Thread jbeck_sound
I'm seeing different font rendering issues in various browsers.

Using the Arial system font, the leading (spacing between lines)
rendering is different across browsers. For example, Internet Explorer
is very relaxed in comparison to Firefox or Safari which makes laying
out text in the application extremely difficult to project.

Has anyone been seeing the same issue and what's best practice to work
around that?

Thanks,

JB



[flexcoders] Re: SQL Server and Flex 2

2006-10-03 Thread jbeck_sound
You may also want to check out WebORB for .NET, which implements a
Flex Data Services structure. You can write your business objects are
.NET classes and let WebORB to the data translating for you. This
allows you to work with primitives and with complex objects.

You can find WebORB for .NET at http://www.themidnightcoders.com

Jurgen







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Set Alignment of Repeater Items

2006-09-18 Thread jbeck_sound
I've been trying to come up with a way to change the default alignment
of a repeater control. By default, and this may be by specific design,
the repeater aligns all items on the left. However, what I am looking
for is a way to center and right align the items in the repeater.

All this is for using an itemRenderer in a dataGrid. I need to list
several items in a dataGrid column and dynamically change the alignment
of those items in the column.

Is there a better way to do this than with a repeater? If not, can the
repeater tricked into aligning items differently?

Thanks,

JB







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[flexcoders] Re: Data synchronisation tip and tricks?

2006-09-14 Thread jbeck_sound
Very good topic! I'm working on a RIA using Flex that deals with a
similar situation for an online ticketing system. Imagine two or more
folks selecting the same seat and wanting to purchase a ticket for it.
Essentially this is collision bound, unless it is being handled carefully.
 
I see two solutions:
 
a) Use Flex Data Services and it's real-time features of updating
clients with the latest status on a specific room (in your scenario).
This will not completely eliminate the possibility that both customers
want to book the room at the exact same time. However, it will cut it
down quite significantly. Of course, there is some additional stuff
going on that we would have to take into consideration.
 
b) Use flags in the database records for each room as to its
availability and return a response to a customer when the booking is
committed. If someone else has beat them to it, then an error would be
returned, eventually halting the rest of the transaction based on the
fact that the room now is no longer available.
 
This is a very birds-eye view of what would need to happen, at least
in my mind. There may be other approaches and solutions to this
problem and I would be interested to hear them!
 
Jurgen

--- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote:

 Most of the traffic conversation here seems to revolve around
applications
 that are essentially read-only or are behaving as though they are single
 user.
 
 Any tips and tricks to be found regarding the synchronisation of
data in a
 multi-user application involving a database.
 
 For example (since hotel booking is a prominent example in the RIA
world),
 lets suppose I have two customers (Customer A and Cust B) trying to
book the
 same hotel room on the same day. Both see it as free in the RIA, Cust A
 books it and now the other must know about it too, so effectively then
 that's a straight refresh of Cust B display and the aborting of the
booking
 in progress.
 
 Lets suppose my application allows Cust B to mark several days of room
 bookings and (s)he has to hit 'book now' to commit to the booking. While
 this is going on 'Cust A' has booked one of those days, so now I
must merge
 the updated database with the on-screen representation, so it's no
longer a
 straight replacement of the application display from the database, we're
 having to merge.
 
 Perhaps I'd best not even mention database locking and handling that
in a
 RIA.
 
 Get the idea? I appreciate this isn't entirely Flex specific.
 
 If there are tips and tricks/best practices in this area with regard to
 Flex, I'd like to know about them before I re-invent the wheel!
 
 Paul






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/