91
jegelstaff
Re: Home link with Mastop page

Quote:

carlos1426 wrote:
Another question:
I'm using formulize module to have a players list. Is it possible to show a formulize's page from mastop?.

It can be viewed a formulize's form, from its url
http://muyite.com/modules/formulize/index.php?fid=2


Hi there,

You can embed pageworks pages in other code, by doing something like this:

$page=12;
include XOOPS_ROOT_PATH ."/modules/pageworks/index.php";

So then in Pageworks, you just need to make a page that looks like you want it do. The easiest way to do this might be the displayForm function, but there are other approaches. displayForm might be as simple as this:

displayForm(2);

That would display a blank form 2, with whatever the default permissions and options are for that form. You can control the options through the other parameters.

We are working on some admin pages that will let you specify different versions of a form as different "screens" and then you could access them through the URL with a "screen ID" like this:

http://www.yoursite.com/modules/formulize/index.php?sid=4

Screen four could be a blank version of form 2, or a multi-page version of form 2, or a particular saved view from the "list of entries" page.

Anyway, that's for the future, but I hope something here is helpful to you now.

--Julian
Technical Architect - Freeform Solutions
Formulize - custom registration forms, ad hoc forms and reports



92
jegelstaff
Re: I look for a module to use a self design table with filter citeria

Hello, thanks for your interest in Formulize and Pageworks.

The "Using Formulize..." PDF is really intended for developers, rather than regular XOOPS users. Some real docs for regular users would be a very nice addition! We are working on some reporting docs at the moment, but nothing general about creating forms, etc.

If you have specific usage questions, please post in our area on dev.xoops.org. Responses have been slow lately, but we do always reply to everything eventually.

--Julian
Technical Architect - Freeform Solutions
Formulize - custom registration forms, ad hoc forms and reports



93
jegelstaff
Re: I dont get Notification after add entry in Formulize 2.2

FYI...for future readers, there is more information about this here:

http://dev.xoops.org/modules/xfmod/forum/forum.php?thread_id=3053&forum_id=746

--Julian
Technical Architect - Freeform Solutions
Formulize - custom registration forms, ad hoc forms and reports



94
jegelstaff
Re: How to set a counter for Formulize 2.2 And I don't get Notification after add entry.

FYI for future readers...there are more details about this here:

http://dev.xoops.org/modules/xfmod/forum/forum.php?thread_id=3054&forum_id=746
and
http://dev.xoops.org/modules/xfmod/forum/forum.php?thread_id=3053&forum_id=746

--Julian
Technical Architect - Freeform Solutions
Formulize - custom registration forms, ad hoc forms and reports



95
jegelstaff
Does the cache folder get cleaned out periodically?

We have a site where we had been storing some cached information in the /cache folder off the root. However it seems that at some point recently, the cached files there were erased (not by us).

Is there some XOOPS process that runs one out of every 100 page loads or something which removes files from that folder?

Thanks for any insights,

--Julian
Technical Architect - Freeform Solutions
Formulize - custom registration forms, ad hoc forms and reports



96
jegelstaff
Re: formulize: how to correct quizzes automatically?

Hi there,

Formulize can't do this for you automatically, but with a couple Pageworks pages ontop of your Formulize form, you can do this with very, very little PHP code. I have written up an outline here:

http://dev.xoops.org/modules/xfmod/forum/forum.php?thread_id=3076&forum_id=745

I hope this helps,

--Julian
Technical Architect - Freeform Solutions
Formulize - custom registration forms, ad hoc forms and reports



97
jegelstaff
Re: Formulize 2.2, is it possible to add an element that only admin can edit and user can only view.

Sorry for the delay. I think a similar question came up on dev.xoops.org? Anyway, would allowing PHP code as the contents of a "Text for display" element solve this issue? ie: you could check to see what groups a user was a member of using PHP, and then print out different text accordingly?

--Julian
Technical Architect - Freeform Solutions
Formulize - custom registration forms, ad hoc forms and reports



98
jegelstaff
Re: Question about Formulize & WFDownloads Patch

Hello, thanks for your interest in the patch. I'm glad it has (mostly) worked out for you.

I'm not sure I understand your question. Can you please provide a sample URL so we know which file/page you're talking about?

Thanks, take it easy,

--Julian
Technical Architect - Freeform Solutions
Formulize - custom registration forms, ad hoc forms and reports



99
jegelstaff
Re: Searching for module

Thanks for your interest in Formulize. Our demo site (http://demo.freeformsolutions.ca) shows some basic things, but is not a showcase of the really fancy and complex things you can do. There are several discussion threads in our area on dev.xoops.org that discuss creating some fairly complex applications. Here's a link to a couple recent ones:

http://dev.xoops.org/modules/xfmod/forum/forum.php?thread_id=3036&forum_id=745
http://dev.xoops.org/modules/xfmod/forum/forum.php?thread_id=3004&forum_id=745

The second one is lengthy, but has code sample for Pageworks in it. Also, the "Using Formulize..." PDF available from our dev.xoops.org area contains a lot of examples and conceptual information.

If you want the really quick and dirty overview of what simple code you can write in Pageworks to do cool things....

// assume you have a form where multiple people have submitted
// some kind of profile information (could be the actual user
// profile form if you are using Reg Codes + Formulize)

// get the profile information from the database (assume 12 is
// the ID number of your form)
$data getData(12);

// loop through all the profiles and display summary info in a list
foreach($data as $entry) {
  
$name display($entry35); // 35 is ID number of the name question in the form
  
$age display($entry36); // 36 is ID of age question
  
print "$name is $age<br>";
}


That code outputs a list of names and ages based on the data submitted in that form. There are also single functions that you can use to display forms inside Pageworks pages, and that function handles all saving and retrieving of data.

That example is no substitute for the detail in the threads linked above, but hopefully gives you a basic idea of what's possible.

There's also a lot of power and control in terms of the permission options that you can hand out on a form by form basis. When you have a complex structure of groups of users in your site, you can do neat things like have volunteers fill in data in forms and only access their own info, but simply through permission controls you can open up a view of all the data to the volunteer coordinators, or you can even subdivide by region or city if your groups of users are organized that way.

There's also a whole series of "data browsing" options in the standard "list of entries" view (which you can see in the demo site). It's been described (not by me) as MS Access on the web. Any summary information that can be presented in that list can also be published automatically to other groups of users.

We always respond to all forum postings in our area on dev.xoops.org, though not necessarily very quickly depending on the complexity of the issue, and how busy we are.

Good luck,

--Julian
Technical Architect - Freeform Solutions
Formulize - custom registration forms, ad hoc forms and reports



100
jegelstaff
Re: Summer of Code

Each mentoring organization is expected to provide several things:

http://code.google.com/support/bin/answer.py?answer=60291&topic=10732

I would be very happy to assist with mentoring a student. I think the most important thing is for the core developers to put their ideas on the table for what work needs to get done.

I have a ton of ideas for what could/should be done in the 2.0.x branch, since we use that all the time right now. But I don't know 2.3 and I'd be interested to hear what skalpa and phppp see as the priorities.

--Julian
Technical Architect - Freeform Solutions
Formulize - custom registration forms, ad hoc forms and reports




TopTop
« 1 ... 7 8 9 (10) 11 12 13 ... 38 »



Login

Who's Online

248 user(s) are online (163 user(s) are browsing Support Forums)


Members: 0


Guests: 248


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits