Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF "Technology" (Ecore Tools, EMFatic, etc)  » EMF Forms on Web
EMF Forms on Web [message #1401853] Wed, 16 July 2014 07:07 Go to next message
serhat gezgin is currently offline serhat gezginFriend
Messages: 243
Registered: January 2013
Location: Izmir
Senior Member
Hi,

I want to use EMF Forms on my Web application. But i can't find any documentation or
description for render EMF Forms on web or mobile. But i just find tutorials about Desktop app.

is there any tutorial or documentation about this?
And i want to ask there is any documentation about rap with emf forms ?

Regards.

[Updated on: Wed, 16 July 2014 12:46]

Report message to a moderator

Re: EMF Forms on Web [message #1402638 is a reply to message #1401853] Thu, 17 July 2014 09:16 Go to previous messageGo to next message
Jonas Helming is currently offline Jonas HelmingFriend
Messages: 699
Registered: July 2009
Senior Member
Hi,

do you want to embed EMF Forms into a RAP application or a native Web
application?

best regards

Jonas

Am 16.07.2014 09:07, schrieb serhat gezgin:
> Hi,
>
> I want to use EMF Forms on my Web application. But i can't find any
> documentation or
> description for render EMF Forms on web or mobile. But i just find
> tutorials about Desktop app.
>
> is there any tutorial or documentation about this?
>
> Regards.
Re: EMF Forms on Web [message #1402936 is a reply to message #1402638] Fri, 18 July 2014 14:06 Go to previous messageGo to next message
serhat gezgin is currently offline serhat gezginFriend
Messages: 243
Registered: January 2013
Location: Izmir
Senior Member
I prefer native web app. (Based on my own experience) But if it is not to be done.

I need to learn rap app. Could you show me the way?

Regards.
Re: EMF Forms on Web [message #1403083 is a reply to message #1402936] Mon, 21 July 2014 09:02 Go to previous messageGo to next message
Ferhat Erata is currently offline Ferhat ErataFriend
Messages: 2
Registered: July 2014
Location: Turkey
Junior Member

Hi Jonas,

Thank you and other committers for such a great project.

Actually, we are in the inception phase of proposing a research & development project. We have been trying to embed EMF Forms into a RAP application to review the result and identify new features that we possibly need to meet the project requirements. Our secondary objective is to embed into a native web application after gaining enough competence.

We've reviewed all the examples and tutorials of you and maximilian but can not find a resource regarding how to render our EMF Forms views on RAP.

Your feedback is highly appreciated.

Ferhat
Re: EMF Forms on Web [message #1403269 is a reply to message #1402936] Mon, 21 July 2014 07:36 Go to previous messageGo to next message
Jonas Helming is currently offline Jonas HelmingFriend
Messages: 699
Registered: July 2009
Senior Member
We are currently implementing a native web renderer, but it is not
available yet. Using RAP with EMF Forms is mainly the same as writing an
SWT application. The RAP web site provides good getting started
tutorials: https://www.eclipse.org/rap/

Best Regards

Jonas

Am 18.07.2014 16:06, schrieb serhat gezgin:
> I prefer native web app. (Based on my own experience) But if it is not
> to be done.
>
> I need to learn rap app. Could you show me the way?
>
> Regards.
Re: EMF Forms on Web [message #1403270 is a reply to message #1403083] Tue, 22 July 2014 07:47 Go to previous messageGo to next message
Jonas Helming is currently offline Jonas HelmingFriend
Messages: 699
Registered: July 2009
Senior Member
Hi,

there is not really a difference in using EMF Forms in a RAP application
compared to a desktop application. Whereever you want to embed a form,
you call:
ECPSWTViewRenderer.INSTANCE.render(Composite parent, EObject domainObject);

Maybe you could describe the information you are missing more in detail?

Best Regards

Jonas



Am 21.07.2014 15:22, schrieb Ferhat Erata:
> Hi Jonas,
>
> Thank you and other committers for such a great project.
>
> Actually, we are in the inception phase of proposing a research &
> development project. We have been trying to embed EMF Forms into a RAP
> application to review the result and identify new features that we
> possibly need to meet the project requirements. Our secondary objective
> is to embed into a native web application after gaining enough competence.
>
> We've reviewed all the examples and tutorials of you and maximilian but
> can not find a resource regarding how to render our EMF Forms views on RAP.
>
> Your feedback is highly appreciated.
>
> Ferhat
Re: EMF Forms on Web [message #1403381 is a reply to message #1403270] Wed, 23 July 2014 11:21 Go to previous messageGo to next message
Ferhat Erata is currently offline Ferhat ErataFriend
Messages: 2
Registered: July 2014
Location: Turkey
Junior Member

Hi Jonas.

I guess we have limited RAP development skills. Anyway we will try to embed as you suggested using "ECPSWTViewRenderer.INSTANCE.render(Composite parent, EObject domainObject);"

Thanks for your help.

Ferhat
Re: EMF Forms on Web [message #1403389 is a reply to message #1403381] Wed, 23 July 2014 11:50 Go to previous messageGo to next message
Jonas Helming is currently offline Jonas HelmingFriend
Messages: 699
Registered: July 2009
Senior Member
Hi,

if you need developer support and/or a training, for RAP or EMF Forms,
just let me know.

Best regards

Jonas

Am 23.07.2014 13:21, schrieb Ferhat Erata:
> Hi Jonas.
> I guess we have limited RAP development skills. Anyway we will try to
> embed as you suggested using
> "ECPSWTViewRenderer.INSTANCE.render(Composite parent, EObject
> domainObject);"
>
> Thanks for your help.
>
> Ferhat
>
Re: EMF Forms on Web [message #1403532 is a reply to message #1403389] Thu, 24 July 2014 10:08 Go to previous messageGo to next message
akgun demirbas is currently offline akgun demirbasFriend
Messages: 7
Registered: October 2013
Location: izmir
Junior Member
Hi Jonas,

Actually we would like to render a .view file.

ECPSWTViewRenderer.INSTANCE.render(composite, domainModelObject, vView);


How can I create a VView object from .view file.

Thanks a lot.
Re: EMF Forms on Web [message #1403673 is a reply to message #1403532] Fri, 25 July 2014 08:38 Go to previous message
Jonas Helming is currently offline Jonas HelmingFriend
Messages: 699
Registered: July 2009
Senior Member
Just register the view file using the extension point )as described in
the getting started tutorial. The registration is automatically done by
the IDE tooling anyways. If the view model is registered, you do not
have to pass it, juts use the signature:
ECPSWTViewRenderer.INSTANCE.render(composite, domainModelObject)
and EMF Forms will pick up the view model for you.
You have to make sure, that the view model bundle is in your run
configuration, though.

Am 24.07.2014 12:08, schrieb akgun demirbas:
> Hi Jonas,
>
> Actually we would like to render a .view file.
>
> ECPSWTViewRenderer.INSTANCE.render(composite, domainModelObject, vView);
>
> How can I create a VView object from .view file.
>
> Thanks a lot.
Previous Topic:Guice Injection error
Next Topic:Howto setup EMFstore to only use my production server
Goto Forum:
  


Current Time: Wed Apr 24 23:55:26 GMT 2024

Powered by FUDForum. Page generated in 0.03772 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top