what else can I control in D2W

2013-05-10 Thread Theodore Petrosky
I have been controlling column width in D2W with classes in my CSS. Sometimes things are not obvious and some parent setting gives me grief. Is this doable as a rule (or rules)? I keep looking at the source, but a lot of this is not table based (which is great) how can we control the width of

Re: what else can I control in D2W

2013-05-10 Thread David LeBer
I you are using Modern look, each column should have a CSS class so you can style them uniquely. i.e: class=AttrColumn Col1AttrColumn IMHO, your css is the appropriate place for the styling info. D -- David LeBer Codeferous Software On 2013-05-10, at 10:47 AM, Theodore Petrosky

Re: [Wonder-disc] ERJQuery

2013-05-10 Thread Johnny Miller
Cool. Thanks Ken. I tried out some stuff last night. Basically I formatted the HTML for the AjaxUpdateContainer to be something like this: div data-wonder-id=AUC data-wonder-options = {'someKey': 'someValue'}.../div Then I create an on load statement: $(window).load(function() {

Re: [Wonder-disc] ERJQuery

2013-05-10 Thread David LeBer
Some suggestions: Use something like: $j = JQuery.noConflict(); So there is absolutely no problem with mixing JQ and other libs. You can also replace $(window).load(function(){... etc with $j(function(){... I'd suggest namespacing your stuff: var WOjax = WOjax || {}; WOjax.AUC = {... Don't

Re: [Wonder-disc] ERJQuery

2013-05-10 Thread Johnny Miller
Hi David, Thanks a lot that is really good input. I really like the idea of using delegation and definitely creating the no conflict variable and the self invoked function for the on load event is a must. It would be cool to create a set of prefabricated delegates (like your example) - that

Re: [Wonder-disc] ERJQuery

2013-05-10 Thread Johnny Miller
Hi David, Question about $caller - do you mean the xhr? And the same for target do you mean the element that is being updated? Thanks On May 10, 2013, at 12:18 PM, David LeBer dleber_wo...@codeferous.com wrote: Some suggestions: Use something like: $j = JQuery.noConflict(); So