[Geomoose-users] [Geomoose-developers] Hyperlinking issue and search issue

Fischer, Brian bfischer at houstonengineeringinc.com
Sun Jun 29 17:01:14 EDT 2008


Hi Adam,

Currently this is not possible to link the search div to a search tab.
Dan and I were discussing this today.  We would like to make it more
generic than this.  Essentially to be able to define any tabs you want
and associate content with those tabs some way.  This will probably be a
feature enhancement for GeoMOOSE 2.0, but some funding would bump it up
on the priority list if some were available.

Thanks,
Brian 


Brian Fischer
Houston Engineering, Inc.
Maple Grove, MN
(763) 493-4522

-----Original Message-----
From: geomoose-developers-bounces at lists.sourceforge.net
[mailto:geomoose-developers-bounces at lists.sourceforge.net] On Behalf Of
Adam Feidt
Sent: Thursday, May 22, 2008 9:20 AM
To: geomoose-developers at lists.sourceforge.net;
geomoose-users at lists.sourceforge.net
Subject: [Geomoose-developers] Hyperlinking issue and search issue

Hey guys just a couple of things...

To avoid using multiple pop-ups when doing queries and hyperlinking I
ended up switching all my code to php.  I tried doing some AJAX stuff
with ASP, but because of the cross-server issues couldn't get it done.
Once all my code was in php the AJAX stuff worked smoothly.  I now have
an extra tab that I send all my responses to.  Switching ASP to php was
fairly simple once you learn the syntax.

Also, I have a search div created that I want to associate with a tab.
For example when my page opens I want the first tab to be a Search tab
that will display this multi-criteria search.  If the user clicks off
the search tab and back on I want to be able to do a search again.  I
have the search working as a service and the tab created, but can't get
them associated together.  Do you guys have any ideas what I can do?
Below is the div my search service calls...

	<div id="GenericSearch">
		<font color="black"><b>Search By:</b></font><br/>

		<input type="radio" id="type_address" name="type"
value="address"
checked="checked"onclick="javascript:document.getElementById('searchtype
').value='address';"/>Address<br />

		<input type="radio" id="type_pid" name="type"
value="pid"
onclick="javascript:document.getElementById('searchtype').value='pid';"/
>PID<br />

		<input type="radio" id="type_owner" name="type"
value="owner"
onclick="javascript:document.getElementById('searchtype').value='owner';
"/>Owner<br />

		<input name="id"/>
		<input type="submit" value="Search"/>
		<input type="hidden" name="mode" value="nquery"/>

		<input type="hidden" name="searchtype" value="address"/>
	</div>

Adam M. Feidt
GIS Coordinator
City of Eden Prairie
8080 Mitchell Rd
Eden Prairie, MN 55344
phone# 952-949-8443
fax# 952-949-8334

-----Original Message-----
From: geomoose-developers-bounces at lists.sourceforge.net
[mailto:geomoose-developers-bounces at lists.sourceforge.net] On Behalf Of
geomoose-developers-request at lists.sourceforge.net
Sent: Thursday, May 22, 2008 8:52 AM
To: geomoose-developers at lists.sourceforge.net
Subject: Geomoose-developers Digest, Vol 7, Issue 7

Send Geomoose-developers mailing list submissions to
	geomoose-developers at lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.sourceforge.net/lists/listinfo/geomoose-developers
or, via email, send a message with subject or body 'help' to
	geomoose-developers-request at lists.sourceforge.net

You can reach the person managing the list at
	geomoose-developers-owner at lists.sourceforge.net

When replying, please edit your Subject line so it is more specific than
"Re: Contents of Geomoose-developers digest..."


Today's Topics:

   1. Re: [Geomoose-users] Tables and hyperlinks (Dan Little)


----------------------------------------------------------------------

Message: 1
Date: Thu, 22 May 2008 06:51:33 -0700 (PDT)
From: Dan Little <danlittle at yahoo.com>
Subject: Re: [Geomoose-developers] [Geomoose-users] Tables and
	hyperlinks
To: Jay Kapalczynski <jkapalczynski at ci.maple-grove.mn.us>,
"Fischer,
	Brian" <bfischer at houstonengineeringinc.com>,
	geomoose-users at lists.sourceforge.net,
	geomoose-developers at lists.sourceforge.net
Message-ID: <278325.12234.qm at web51405.mail.re2.yahoo.com>
Content-Type: text/plain; charset="windows-1252"

Actually, it would require some more javascript programming than
anything else.  What you use to generate the HTML content really
wouldn't matter.

As an aside, I think there is a better capability to do this with
GeoMOOSE 1.4.0 (Vis-a-vis a call-service functionality that was added).

Brian is finishing up the migration documentation, but the code is
available for download right now from sourceforge.

http://sourceforge.net/project/showfiles.php?group_id=160935&package_id=
181132&release_id=600465

-Duck


----- Original Message ----
From: Jay Kapalczynski <jkapalczynski at ci.maple-grove.mn.us>
To: "Fischer, Brian" <bfischer at houstonengineeringinc.com>;
geomoose-users at lists.sourceforge.net;
geomoose-developers at lists.sourceforge.net
Sent: Thursday, May 22, 2008 8:10:24 AM
Subject: Re: [Geomoose-users] Tables and hyperlinks

 
That makes sense?I am passing the
PID to an ASP page right now and it pops up and allows for the user to
input data to a database?
I think Adam and I are in a
similar position here?we are looking to get the return values placed
back into the info tab inside GeoMoose not a popup?.
from what Adam has told me that
is going to require PHP to keep the returned data inside the into
tab????
 
 
From:Fischer, Brian
[mailto:bfischer at houstonengineeringinc.com]
Sent: Wednesday, May 21, 2008 9:40 AM
To: Jay Kapalczynski; geomoose-users at lists.sourceforge.net;
geomoose-developers at lists.sourceforge.net
Subject: RE: [Geomoose-users] Tables and hyperlinks
 
Jay,
 
This is pretty easy to do and I
do it all the time.  All you need to do is right a script in (PHP or ASP
or whatever serverside language you want) that takes the PID as the
input parameter.  The your script would query the database and display
the fields in a popup window.  In GeoMOOSE all you need to do is
construct a hyperlink to that script.  It would look something like 
 
<a
href=?yourscript.php?PID=[PID]? target=?_blank?>Related Data</a>.
 
Hope that helps,
Brian
 
From:geomoose-users-bounces at lists.sourceforge.net
[mailto:geomoose-users-bounces at lists.sourceforge.net] On Behalf Of Jay
Kapalczynski
Sent: Tuesday, May 20, 2008 10:29 AM
To: geomoose-users at lists.sourceforge.net;
geomoose-developers at lists.sourceforge.net
Subject: [Geomoose-users] Tables and hyperlinks
 
I have my parcel dataset in my Geomoose App When I use the identify
button I am returning a few fields, one of them being hyperlink to an
image Everything is working great?.
 
I want to take the next step and link to a table in a database (SQl and
Access) When I indentify the parcel I want to link to these tables and
return field values from the tables?.
join or relate by PID value
 
Maybe have another Red Bar Like below called "REALTED DATA" with the
fields from the tables.
 
Anyone have thougths on how to do this?  I would like to figure this out
for SQL and Access Database.
 
THanks,


      
-------------- next part --------------
An HTML attachment was scrubbed...
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/png
Size: 18437 bytes
Desc: image001.png

------------------------------

------------------------------------------------------------------------
-
This SF.net email is sponsored by: Microsoft Defy all challenges.
Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

------------------------------

_______________________________________________
Geomoose-developers mailing list
Geomoose-developers at lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geomoose-developers


End of Geomoose-developers Digest, Vol 7, Issue 7
*************************************************


------------------------------------------------------------------------
-
This SF.net email is sponsored by: Microsoft Defy all challenges.
Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Geomoose-developers mailing list
Geomoose-developers at lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geomoose-developers




More information about the Geomoose-users mailing list