Select to view content in your preferred language

Advanced Editing tools - Split by polyline

936
3
Jump to solution
07-12-2012 02:47 PM
BrettElliot
Deactivated User
Hi,

Does anyone know of advanced editing tools using the flexviewer api or the ArcGIS for flex API?  We are looking to split polygon features though the web interface.

Basically, the web version of the desktop "cut polygon tools".

Thanks!

Brett Elliot
GIS Technician
Tags (2)
0 Kudos
1 Solution

Accepted Solutions
SarthakDatt
Frequent Contributor
Hey Brett,

You don't have to create a new(advanced) widget. Just update the out-of-the-box Edit widget's config to have this:

<toolbarvisible>true</toolbarvisible>
<toolbarcutvisible>true</toolbarcutvisible>
<toolbarmergevisible>false</toolbarmergevisible> <!-- true, if you want 'merge/union' capability-->
<toolbarreshapevisible>false</toolbarreshapevisible> <!-- true, if you want 'reshape' capability-->

View solution in original post

0 Kudos
3 Replies
BrettElliot
Deactivated User
Found this sample here:
http://resources.arcgis.com/en/help/flex-api/samples/index.html#/Editor_with_full_toolbar/01nq000000...

Has anyone built a similar advance editor widget?

- Brett Elliot
0 Kudos
SarthakDatt
Frequent Contributor
Hey Brett,

You don't have to create a new(advanced) widget. Just update the out-of-the-box Edit widget's config to have this:

<toolbarvisible>true</toolbarvisible>
<toolbarcutvisible>true</toolbarcutvisible>
<toolbarmergevisible>false</toolbarmergevisible> <!-- true, if you want 'merge/union' capability-->
<toolbarreshapevisible>false</toolbarreshapevisible> <!-- true, if you want 'reshape' capability-->
0 Kudos
BrettElliot
Deactivated User
Hey Brett, 

You don't have to create a new(advanced) widget. Just update the out-of-the-box Edit widget's config to have this: 

<toolbarvisible>true</toolbarvisible> 
<toolbarcutvisible>true</toolbarcutvisible>
<toolbarmergevisible>false</toolbarmergevisible> <!-- true, if you want 'merge/union' capability--> 
<toolbarreshapevisible>false</toolbarreshapevisible> <!-- true, if you want 'reshape' capability-->


Thanks! i'll try it out.
0 Kudos