You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ofbiz.apache.org by "skip@theDevers" <sk...@thedevers.org> on 2007/09/15 09:09:45 UTC

Ofbiz and Dojo

Anyone have any comments on using Dojo with Ofbiz, especially the .9
release?

I see that the .9 release is like half the size of the .4 release

Skip


Re: ActiveGrid Was: Ofbiz and Dojo

Posted by guo weizhan <gu...@gmail.com>.
I do think so, as Ofbiz can integrat with dojo well, we can wait dojo grid
release in mid-to-late October and try to integrat this, I hope it can be
the smooth way.

2007/9/17, Walter Vaughan <wv...@steelerubber.com>:
>
> guo weizhan wrote:
>
> > I see, thanks for explain!
> >
> > Good news,the dojo grid is coming
> >
> > http://www.sitepen.com/blog/2007/09/16/the-dojo-grid/
>
> Okay, via a few links it lead me to http://www.activegrid.com/
> I just sat through the 18 minute "Active Studio in Action", and all I can
> think
> is "we really need a tool like this that would work with ofBiz".
>
> --
> Walter
>
>
>
>
>

ActiveGrid Was: Ofbiz and Dojo

Posted by Walter Vaughan <wv...@steelerubber.com>.
guo weizhan wrote:

> I see, thanks for explain!
> 
> Good news,the dojo grid is coming
> 
> http://www.sitepen.com/blog/2007/09/16/the-dojo-grid/

Okay, via a few links it lead me to http://www.activegrid.com/
I just sat through the 18 minute "Active Studio in Action", and all I can think 
is "we really need a tool like this that would work with ofBiz".

--
Walter





Re: Ofbiz and Dojo

Posted by guo weizhan <gu...@gmail.com>.
I see, thanks for explain!

Good news,the dojo grid is coming

http://www.sitepen.com/blog/2007/09/16/the-dojo-grid/



2007/9/17, skip@theDevers <sk...@thedevers.org>:
>
> I would like to hot-key searches.  For example, type some text in a field,
> press a hot key and get a pick list of the first 10 or less matches.
>
> -----Original Message-----
> From: guo weizhan [mailto:guo.weizhan@gmail.com]
> Sent: Sunday, September 16, 2007 7:05 AM
> To: user@ofbiz.apache.org
> Subject: Re: Ofbiz and Dojo
>
>
> 2007/9/16, Al Byers <by...@automationgroups.com>:
> >
> > Guo,
> >
> > I agree that having ScreenWidgets easily use ajax is a good goal and I
> > don't
> > see any problem with moving ahead on that front. But I think there is
> much
> >
> > more that can be done with the DHTML capabilities of Dojo, but I am not
> > sure
> > I know what they all are. I would like to ask for help from the
> community
> > in
> > suggesting ways in which a rich client could improve OFBiz. I will start
> a
> >
> > list.
> >
> > 1. Type ahead.
> > 2. Show detail data upon rollover.
> > 3. Popups that don't get hidden.
> > 4. Rich text editor.
> > 5. Tab, accordian and other containers.
> > 6. Better drill down techniques using embedded containers and/or trees.
> > 7.???
>
>
> I can accept this list, but can you explain the 1-3 more detail :), it not
> enough clear for me.
>
> and also I want to add some list, like:  Ajax datagrid, Ajax input
> validate
> ...
>
>
> These are the kind of things that I think need to be automated with a
> widget
> > system.
> >
> > Also, here is a snippet of code that I used to upload a file via Dojo.
> It
> > would not be needed to send standard form types, but I am not sure that
> it
> >
> > would hurt or not be a good idea to use this iframe method for all
> > postings.
> >
> >             function sendImage(){
> >                     var formId = "editimageForm";
> >                     dojo.io.iframe.send ({
> >                             form: dojo.byId(formId),
> >                             handleAs: "json",
> >                             content: {
> >                                     increment: callCount++,
> >                                     fileFields: "uploadedFile"
> >                             },
> >                             load: function(response, ioArgs){
> >                               var contentDataControl = dijit.byId
> > ('contentdatadetail');
> >                                contentDataControl.setContent("<img
> > src='/content/control/ViewSimpleContent?dataResourceId=" +
> > response.dataResourceId + "'/>");
> >                               var dialogObj = dijit.byId
> > ("editimageDialog");
> >                                dialogObj.hide();
> >
> >                             },
> >                             handle: function(response, ioArgs){
> >                             }
> >                     });
> >              }
> >
> > Also, see the DojoJSONServiceEventHandler class that I wrote to work
> with
> > form of Dojo ajax.
>
>
> I think it's fine as far as I know, although I use the
> JSONServiceEventHandler and the dojo.xhrGet
>
>
> > -Al
> >
> > On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
> > >
> > > That's greate, I would love to finish this with you, and what's your
> > > progress now? I just figure out how to start with this, and try to
> > extend
> > > some screenWidget classes, like the HtmlFormRenderer, but it's just
> the
> > > begining. My purpose it's to make the ScreenWidget can use the ajax
> > > easily.It'll be greate if there is any design that we could implement
> > > together.
> > >
> > >
> > > 2007/9/16, Al Byers < byersa@automationgroups.com>:
> > > >
> > > > Guo,
> > > >
> > > > I have been using Dojo for 3 weeks and am also impressed. If you are
> > > > thinking about integrating it with screen widgets, then we should
> > > > collaborate, as I was also thinking of doing the same thing. I work
> on
> > > the
> > > > original screen widget code so I have a pretty good feel on how
> things
> > > > work.
> > > >
> > > > I think we will want to extend the ScreenWidget classes and the XML
> > > > schema.
> > > > We should look at more than just forms - the dojo layout dijits are
> > also
> > > > very useful. Some thought has to be given to how we return screens
> > built
> > > > with widgets using AJAX and JSON.
> > > >
> > > > I think I will be in better position to talk about the design in a
> few
> > > > days,
> > > > but it won't hurt to discuss it here now.
> > > >
> > > > -Al
> > > >
> > > > On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
> > > > >
> > > > > I'm doing this for comple days, it's perfect to use dojo with
> Ofbiz.
> >
> > > one
> > > > > of
> > > > > the screen capture url: http://www.open-agile.com/dojo.bmp
> > > > >
> > > > > I want to make all the widget form element use the dojo type, and
> > have
> > > > > ajax
> > > > > function and look good:)
> > > > >
> > > > > But it just the begining now, it's  long term to finish.
> > > > >
> > > > >
> > > > >
> > > > > 2007/9/15, skip@theDevers <sk...@thedevers.org>:
> > > > > >
> > > > > > Anyone have any comments on using Dojo with Ofbiz, especially
> the
> > .9
> > > > > > release?
> > > > > >
> > > > > > I see that the .9 release is like half the size of the .4
> release
> > > > > >
> > > > > > Skip
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
> if we can agree with those, can you tell me how to collaborate with you? I
> want to give my effort for our goal, but I'm the fresh man in  collaborate
> in Ofbiz project, can you tell me how to start this? thanks.
>
>

RE: Ofbiz and Dojo

Posted by "skip@theDevers" <sk...@thedevers.org>.
I would like to hot-key searches.  For example, type some text in a field,
press a hot key and get a pick list of the first 10 or less matches.

-----Original Message-----
From: guo weizhan [mailto:guo.weizhan@gmail.com]
Sent: Sunday, September 16, 2007 7:05 AM
To: user@ofbiz.apache.org
Subject: Re: Ofbiz and Dojo


2007/9/16, Al Byers <by...@automationgroups.com>:
>
> Guo,
>
> I agree that having ScreenWidgets easily use ajax is a good goal and I
> don't
> see any problem with moving ahead on that front. But I think there is much
>
> more that can be done with the DHTML capabilities of Dojo, but I am not
> sure
> I know what they all are. I would like to ask for help from the community
> in
> suggesting ways in which a rich client could improve OFBiz. I will start a
>
> list.
>
> 1. Type ahead.
> 2. Show detail data upon rollover.
> 3. Popups that don't get hidden.
> 4. Rich text editor.
> 5. Tab, accordian and other containers.
> 6. Better drill down techniques using embedded containers and/or trees.
> 7.???


I can accept this list, but can you explain the 1-3 more detail :), it not
enough clear for me.

and also I want to add some list, like:  Ajax datagrid, Ajax input validate
...


These are the kind of things that I think need to be automated with a widget
> system.
>
> Also, here is a snippet of code that I used to upload a file via Dojo. It
> would not be needed to send standard form types, but I am not sure that it
>
> would hurt or not be a good idea to use this iframe method for all
> postings.
>
>             function sendImage(){
>                     var formId = "editimageForm";
>                     dojo.io.iframe.send ({
>                             form: dojo.byId(formId),
>                             handleAs: "json",
>                             content: {
>                                     increment: callCount++,
>                                     fileFields: "uploadedFile"
>                             },
>                             load: function(response, ioArgs){
>                               var contentDataControl = dijit.byId
> ('contentdatadetail');
>                                contentDataControl.setContent("<img
> src='/content/control/ViewSimpleContent?dataResourceId=" +
> response.dataResourceId + "'/>");
>                               var dialogObj = dijit.byId
> ("editimageDialog");
>                                dialogObj.hide();
>
>                             },
>                             handle: function(response, ioArgs){
>                             }
>                     });
>              }
>
> Also, see the DojoJSONServiceEventHandler class that I wrote to work with
> form of Dojo ajax.


 I think it's fine as far as I know, although I use the
JSONServiceEventHandler and the dojo.xhrGet


> -Al
>
> On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
> >
> > That's greate, I would love to finish this with you, and what's your
> > progress now? I just figure out how to start with this, and try to
> extend
> > some screenWidget classes, like the HtmlFormRenderer, but it's just the
> > begining. My purpose it's to make the ScreenWidget can use the ajax
> > easily.It'll be greate if there is any design that we could implement
> > together.
> >
> >
> > 2007/9/16, Al Byers < byersa@automationgroups.com>:
> > >
> > > Guo,
> > >
> > > I have been using Dojo for 3 weeks and am also impressed. If you are
> > > thinking about integrating it with screen widgets, then we should
> > > collaborate, as I was also thinking of doing the same thing. I work on
> > the
> > > original screen widget code so I have a pretty good feel on how things
> > > work.
> > >
> > > I think we will want to extend the ScreenWidget classes and the XML
> > > schema.
> > > We should look at more than just forms - the dojo layout dijits are
> also
> > > very useful. Some thought has to be given to how we return screens
> built
> > > with widgets using AJAX and JSON.
> > >
> > > I think I will be in better position to talk about the design in a few
> > > days,
> > > but it won't hurt to discuss it here now.
> > >
> > > -Al
> > >
> > > On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
> > > >
> > > > I'm doing this for comple days, it's perfect to use dojo with Ofbiz.
>
> > one
> > > > of
> > > > the screen capture url: http://www.open-agile.com/dojo.bmp
> > > >
> > > > I want to make all the widget form element use the dojo type, and
> have
> > > > ajax
> > > > function and look good:)
> > > >
> > > > But it just the begining now, it's  long term to finish.
> > > >
> > > >
> > > >
> > > > 2007/9/15, skip@theDevers <sk...@thedevers.org>:
> > > > >
> > > > > Anyone have any comments on using Dojo with Ofbiz, especially the
> .9
> > > > > release?
> > > > >
> > > > > I see that the .9 release is like half the size of the .4 release
> > > > >
> > > > > Skip
> > > > >
> > > > >
> > > >
> > >
> >
>

if we can agree with those, can you tell me how to collaborate with you? I
want to give my effort for our goal, but I'm the fresh man in  collaborate
in Ofbiz project, can you tell me how to start this? thanks.


Re: Ofbiz and Dojo

Posted by guo weizhan <gu...@gmail.com>.
2007/9/16, Al Byers <by...@automationgroups.com>:
>
> Guo,
>
> I agree that having ScreenWidgets easily use ajax is a good goal and I
> don't
> see any problem with moving ahead on that front. But I think there is much
>
> more that can be done with the DHTML capabilities of Dojo, but I am not
> sure
> I know what they all are. I would like to ask for help from the community
> in
> suggesting ways in which a rich client could improve OFBiz. I will start a
>
> list.
>
> 1. Type ahead.
> 2. Show detail data upon rollover.
> 3. Popups that don't get hidden.
> 4. Rich text editor.
> 5. Tab, accordian and other containers.
> 6. Better drill down techniques using embedded containers and/or trees.
> 7.???


I can accept this list, but can you explain the 1-3 more detail :), it not
enough clear for me.

and also I want to add some list, like:  Ajax datagrid, Ajax input validate
...


These are the kind of things that I think need to be automated with a widget
> system.
>
> Also, here is a snippet of code that I used to upload a file via Dojo. It
> would not be needed to send standard form types, but I am not sure that it
>
> would hurt or not be a good idea to use this iframe method for all
> postings.
>
>             function sendImage(){
>                     var formId = "editimageForm";
>                     dojo.io.iframe.send ({
>                             form: dojo.byId(formId),
>                             handleAs: "json",
>                             content: {
>                                     increment: callCount++,
>                                     fileFields: "uploadedFile"
>                             },
>                             load: function(response, ioArgs){
>                               var contentDataControl = dijit.byId
> ('contentdatadetail');
>                                contentDataControl.setContent("<img
> src='/content/control/ViewSimpleContent?dataResourceId=" +
> response.dataResourceId + "'/>");
>                               var dialogObj = dijit.byId
> ("editimageDialog");
>                                dialogObj.hide();
>
>                             },
>                             handle: function(response, ioArgs){
>                             }
>                     });
>              }
>
> Also, see the DojoJSONServiceEventHandler class that I wrote to work with
> form of Dojo ajax.


 I think it's fine as far as I know, although I use the
JSONServiceEventHandler and the dojo.xhrGet


> -Al
>
> On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
> >
> > That's greate, I would love to finish this with you, and what's your
> > progress now? I just figure out how to start with this, and try to
> extend
> > some screenWidget classes, like the HtmlFormRenderer, but it's just the
> > begining. My purpose it's to make the ScreenWidget can use the ajax
> > easily.It'll be greate if there is any design that we could implement
> > together.
> >
> >
> > 2007/9/16, Al Byers < byersa@automationgroups.com>:
> > >
> > > Guo,
> > >
> > > I have been using Dojo for 3 weeks and am also impressed. If you are
> > > thinking about integrating it with screen widgets, then we should
> > > collaborate, as I was also thinking of doing the same thing. I work on
> > the
> > > original screen widget code so I have a pretty good feel on how things
> > > work.
> > >
> > > I think we will want to extend the ScreenWidget classes and the XML
> > > schema.
> > > We should look at more than just forms - the dojo layout dijits are
> also
> > > very useful. Some thought has to be given to how we return screens
> built
> > > with widgets using AJAX and JSON.
> > >
> > > I think I will be in better position to talk about the design in a few
> > > days,
> > > but it won't hurt to discuss it here now.
> > >
> > > -Al
> > >
> > > On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
> > > >
> > > > I'm doing this for comple days, it's perfect to use dojo with Ofbiz.
>
> > one
> > > > of
> > > > the screen capture url: http://www.open-agile.com/dojo.bmp
> > > >
> > > > I want to make all the widget form element use the dojo type, and
> have
> > > > ajax
> > > > function and look good:)
> > > >
> > > > But it just the begining now, it's  long term to finish.
> > > >
> > > >
> > > >
> > > > 2007/9/15, skip@theDevers <sk...@thedevers.org>:
> > > > >
> > > > > Anyone have any comments on using Dojo with Ofbiz, especially the
> .9
> > > > > release?
> > > > >
> > > > > I see that the .9 release is like half the size of the .4 release
> > > > >
> > > > > Skip
> > > > >
> > > > >
> > > >
> > >
> >
>

if we can agree with those, can you tell me how to collaborate with you? I
want to give my effort for our goal, but I'm the fresh man in  collaborate
in Ofbiz project, can you tell me how to start this? thanks.

Re: Ofbiz and Dojo

Posted by guo weizhan <gu...@gmail.com>.
XMLHttpRequest Vs. iFrames
http://ajax.sys-con.com/read/188390.htm


2007/9/16, Al Byers <by...@automationgroups.com>:
>
> Guo,
>
> I agree that having ScreenWidgets easily use ajax is a good goal and I
> don't
> see any problem with moving ahead on that front. But I think there is much
> more that can be done with the DHTML capabilities of Dojo, but I am not
> sure
> I know what they all are. I would like to ask for help from the community
> in
> suggesting ways in which a rich client could improve OFBiz. I will start a
> list.
>
> 1. Type ahead.
> 2. Show detail data upon rollover.
> 3. Popups that don't get hidden.
> 4. Rich text editor.
> 5. Tab, accordian and other containers.
> 6. Better drill down techniques using embedded containers and/or trees.
> 7.???
>
> These are the kind of things that I think need to be automated with a
> widget
> system.
>
> Also, here is a snippet of code that I used to upload a file via Dojo. It
> would not be needed to send standard form types, but I am not sure that it
> would hurt or not be a good idea to use this iframe method for all
> postings.
>
>             function sendImage(){
>                     var formId = "editimageForm";
>                     dojo.io.iframe.send({
>                             form: dojo.byId(formId),
>                             handleAs: "json",
>                             content: {
>                                     increment: callCount++,
>                                     fileFields: "uploadedFile"
>                             },
>                             load: function(response, ioArgs){
>                               var contentDataControl = dijit.byId
> ('contentdatadetail');
>                                contentDataControl.setContent("<img
> src='/content/control/ViewSimpleContent?dataResourceId=" +
> response.dataResourceId + "'/>");
>                               var dialogObj = dijit.byId
> ("editimageDialog");
>                                dialogObj.hide();
>
>                             },
>                             handle: function(response, ioArgs){
>                             }
>                     });
>              }
>
> Also, see the DojoJSONServiceEventHandler class that I wrote to work with
> form of Dojo ajax.
>
> -Al
>
> On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
> >
> > That's greate, I would love to finish this with you, and what's your
> > progress now? I just figure out how to start with this, and try to
> extend
> > some screenWidget classes, like the HtmlFormRenderer, but it's just the
> > begining. My purpose it's to make the ScreenWidget can use the ajax
> > easily.It'll be greate if there is any design that we could implement
> > together.
> >
> >
> > 2007/9/16, Al Byers <by...@automationgroups.com>:
> > >
> > > Guo,
> > >
> > > I have been using Dojo for 3 weeks and am also impressed. If you are
> > > thinking about integrating it with screen widgets, then we should
> > > collaborate, as I was also thinking of doing the same thing. I work on
> > the
> > > original screen widget code so I have a pretty good feel on how things
> > > work.
> > >
> > > I think we will want to extend the ScreenWidget classes and the XML
> > > schema.
> > > We should look at more than just forms - the dojo layout dijits are
> also
> > > very useful. Some thought has to be given to how we return screens
> built
> > > with widgets using AJAX and JSON.
> > >
> > > I think I will be in better position to talk about the design in a few
> > > days,
> > > but it won't hurt to discuss it here now.
> > >
> > > -Al
> > >
> > > On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
> > > >
> > > > I'm doing this for comple days, it's perfect to use dojo with Ofbiz.
> > one
> > > > of
> > > > the screen capture url: http://www.open-agile.com/dojo.bmp
> > > >
> > > > I want to make all the widget form element use the dojo type, and
> have
> > > > ajax
> > > > function and look good:)
> > > >
> > > > But it just the begining now, it's  long term to finish.
> > > >
> > > >
> > > >
> > > > 2007/9/15, skip@theDevers <sk...@thedevers.org>:
> > > > >
> > > > > Anyone have any comments on using Dojo with Ofbiz, especially the
> .9
> > > > > release?
> > > > >
> > > > > I see that the .9 release is like half the size of the .4 release
> > > > >
> > > > > Skip
> > > > >
> > > > >
> > > >
> > >
> >
>

Re: Ofbiz and Dojo

Posted by Jacques Le Roux <ja...@les7arts.com>.
If I understand well, type ahead is a sort of fields auto-completion. Firefox already provides this feature. I have seen cases where
you were provided the same completion strings by different means, sometimes annoying (but a very minor issue)

Jacques

De : "guo weizhan" <gu...@gmail.com>
> What' s the features collide with firefox? Is it the key features?
>
> 2007/9/16, Jacques Le Roux <ja...@les7arts.com>:
> >
> > De : "Al Byers" <by...@automationgroups.com>
> > > Guo,
> > >
> > > I agree that having ScreenWidgets easily use ajax is a good goal and I
> > don't
> > > see any problem with moving ahead on that front. But I think there is
> > much
> > > more that can be done with the DHTML capabilities of Dojo, but I am not
> > sure
> > > I know what they all are. I would like to ask for help from the
> > community in
> > > suggesting ways in which a rich client could improve OFBiz. I will start
> > a
> > > list.
> > >
> > > 1. Type ahead.
> >
> > Will this not collide with Firefox (or other Browsers) already existing
> > features ?
> >
> > I can't wait for others options !
> >
> > Maybe this thread should better be on dev ML ?
> >
> > Jacques
> >
>


Re: Ofbiz and Dojo

Posted by guo weizhan <gu...@gmail.com>.
What' s the features collide with firefox? Is it the key features?

2007/9/16, Jacques Le Roux <ja...@les7arts.com>:
>
> De : "Al Byers" <by...@automationgroups.com>
> > Guo,
> >
> > I agree that having ScreenWidgets easily use ajax is a good goal and I
> don't
> > see any problem with moving ahead on that front. But I think there is
> much
> > more that can be done with the DHTML capabilities of Dojo, but I am not
> sure
> > I know what they all are. I would like to ask for help from the
> community in
> > suggesting ways in which a rich client could improve OFBiz. I will start
> a
> > list.
> >
> > 1. Type ahead.
>
> Will this not collide with Firefox (or other Browsers) already existing
> features ?
>
> I can't wait for others options !
>
> Maybe this thread should better be on dev ML ?
>
> Jacques
>

Re: Ofbiz and Dojo

Posted by Jacques Le Roux <ja...@les7arts.com>.
De : "Al Byers" <by...@automationgroups.com>
> Guo,
> 
> I agree that having ScreenWidgets easily use ajax is a good goal and I don't
> see any problem with moving ahead on that front. But I think there is much
> more that can be done with the DHTML capabilities of Dojo, but I am not sure
> I know what they all are. I would like to ask for help from the community in
> suggesting ways in which a rich client could improve OFBiz. I will start a
> list.
> 
> 1. Type ahead.

Will this not collide with Firefox (or other Browsers) already existing features ?

I can't wait for others options ! 

Maybe this thread should better be on dev ML ?

Jacques

Re: Ofbiz and Dojo

Posted by Al Byers <by...@automationgroups.com>.
Guo,

I agree that having ScreenWidgets easily use ajax is a good goal and I don't
see any problem with moving ahead on that front. But I think there is much
more that can be done with the DHTML capabilities of Dojo, but I am not sure
I know what they all are. I would like to ask for help from the community in
suggesting ways in which a rich client could improve OFBiz. I will start a
list.

1. Type ahead.
2. Show detail data upon rollover.
3. Popups that don't get hidden.
4. Rich text editor.
5. Tab, accordian and other containers.
6. Better drill down techniques using embedded containers and/or trees.
7.???

These are the kind of things that I think need to be automated with a widget
system.

Also, here is a snippet of code that I used to upload a file via Dojo. It
would not be needed to send standard form types, but I am not sure that it
would hurt or not be a good idea to use this iframe method for all postings.

             function sendImage(){
                     var formId = "editimageForm";
                     dojo.io.iframe.send({
                             form: dojo.byId(formId),
                             handleAs: "json",
                             content: {
                                     increment: callCount++,
                                     fileFields: "uploadedFile"
                             },
                             load: function(response, ioArgs){
                               var contentDataControl = dijit.byId
('contentdatadetail');
                                contentDataControl.setContent("<img
src='/content/control/ViewSimpleContent?dataResourceId=" +
response.dataResourceId + "'/>");
                               var dialogObj = dijit.byId
("editimageDialog");
                                dialogObj.hide();

                             },
                             handle: function(response, ioArgs){
                             }
                     });
              }

Also, see the DojoJSONServiceEventHandler class that I wrote to work with
form of Dojo ajax.

-Al

On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
>
> That's greate, I would love to finish this with you, and what's your
> progress now? I just figure out how to start with this, and try to extend
> some screenWidget classes, like the HtmlFormRenderer, but it's just the
> begining. My purpose it's to make the ScreenWidget can use the ajax
> easily.It'll be greate if there is any design that we could implement
> together.
>
>
> 2007/9/16, Al Byers <by...@automationgroups.com>:
> >
> > Guo,
> >
> > I have been using Dojo for 3 weeks and am also impressed. If you are
> > thinking about integrating it with screen widgets, then we should
> > collaborate, as I was also thinking of doing the same thing. I work on
> the
> > original screen widget code so I have a pretty good feel on how things
> > work.
> >
> > I think we will want to extend the ScreenWidget classes and the XML
> > schema.
> > We should look at more than just forms - the dojo layout dijits are also
> > very useful. Some thought has to be given to how we return screens built
> > with widgets using AJAX and JSON.
> >
> > I think I will be in better position to talk about the design in a few
> > days,
> > but it won't hurt to discuss it here now.
> >
> > -Al
> >
> > On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
> > >
> > > I'm doing this for comple days, it's perfect to use dojo with Ofbiz.
> one
> > > of
> > > the screen capture url: http://www.open-agile.com/dojo.bmp
> > >
> > > I want to make all the widget form element use the dojo type, and have
> > > ajax
> > > function and look good:)
> > >
> > > But it just the begining now, it's  long term to finish.
> > >
> > >
> > >
> > > 2007/9/15, skip@theDevers <sk...@thedevers.org>:
> > > >
> > > > Anyone have any comments on using Dojo with Ofbiz, especially the .9
> > > > release?
> > > >
> > > > I see that the .9 release is like half the size of the .4 release
> > > >
> > > > Skip
> > > >
> > > >
> > >
> >
>

Re: Ofbiz and Dojo

Posted by guo weizhan <gu...@gmail.com>.
That's greate, I would love to finish this with you, and what's your
progress now? I just figure out how to start with this, and try to extend
some screenWidget classes, like the HtmlFormRenderer, but it's just the
begining. My purpose it's to make the ScreenWidget can use the ajax
easily.It'll be greate if there is any design that we could implement
together.


2007/9/16, Al Byers <by...@automationgroups.com>:
>
> Guo,
>
> I have been using Dojo for 3 weeks and am also impressed. If you are
> thinking about integrating it with screen widgets, then we should
> collaborate, as I was also thinking of doing the same thing. I work on the
> original screen widget code so I have a pretty good feel on how things
> work.
>
> I think we will want to extend the ScreenWidget classes and the XML
> schema.
> We should look at more than just forms - the dojo layout dijits are also
> very useful. Some thought has to be given to how we return screens built
> with widgets using AJAX and JSON.
>
> I think I will be in better position to talk about the design in a few
> days,
> but it won't hurt to discuss it here now.
>
> -Al
>
> On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
> >
> > I'm doing this for comple days, it's perfect to use dojo with Ofbiz. one
> > of
> > the screen capture url: http://www.open-agile.com/dojo.bmp
> >
> > I want to make all the widget form element use the dojo type, and have
> > ajax
> > function and look good:)
> >
> > But it just the begining now, it's  long term to finish.
> >
> >
> >
> > 2007/9/15, skip@theDevers <sk...@thedevers.org>:
> > >
> > > Anyone have any comments on using Dojo with Ofbiz, especially the .9
> > > release?
> > >
> > > I see that the .9 release is like half the size of the .4 release
> > >
> > > Skip
> > >
> > >
> >
>

Re: Ofbiz and Dojo

Posted by Al Byers <by...@automationgroups.com>.
Guo,

I have been using Dojo for 3 weeks and am also impressed. If you are
thinking about integrating it with screen widgets, then we should
collaborate, as I was also thinking of doing the same thing. I work on the
original screen widget code so I have a pretty good feel on how things work.

I think we will want to extend the ScreenWidget classes and the XML schema.
We should look at more than just forms - the dojo layout dijits are also
very useful. Some thought has to be given to how we return screens built
with widgets using AJAX and JSON.

I think I will be in better position to talk about the design in a few days,
but it won't hurt to discuss it here now.

-Al

On 9/15/07, guo weizhan <gu...@gmail.com> wrote:
>
> I'm doing this for comple days, it's perfect to use dojo with Ofbiz. one
> of
> the screen capture url: http://www.open-agile.com/dojo.bmp
>
> I want to make all the widget form element use the dojo type, and have
> ajax
> function and look good:)
>
> But it just the begining now, it's  long term to finish.
>
>
>
> 2007/9/15, skip@theDevers <sk...@thedevers.org>:
> >
> > Anyone have any comments on using Dojo with Ofbiz, especially the .9
> > release?
> >
> > I see that the .9 release is like half the size of the .4 release
> >
> > Skip
> >
> >
>

Re: Ofbiz and Dojo

Posted by guo weizhan <gu...@gmail.com>.
I'm doing this for comple days, it's perfect to use dojo with Ofbiz. one of
the screen capture url: http://www.open-agile.com/dojo.bmp

I want to make all the widget form element use the dojo type, and have ajax
function and look good:)

But it just the begining now, it's  long term to finish.



2007/9/15, skip@theDevers <sk...@thedevers.org>:
>
> Anyone have any comments on using Dojo with Ofbiz, especially the .9
> release?
>
> I see that the .9 release is like half the size of the .4 release
>
> Skip
>
>