Is it possible to show the contour form entries in the member section?
Basically I dont want access to the Contour section in the backend.
However, the entries table along with the functions would be useful in the members area so that editors with access to the members section can activate an entry from there.
renamed a copy of the forms dashboard and modified it so it only shows an edit button of the specific form I want them to have access to the entries for.
Just looking how to actually have the submitted option selected by default in the drop down list now and that should be it!
Is there any way of getting around the function in the editFormEntries.aspx where it writes selected to the approved option? I really need it to default to Submitted.
function approveSelected(){ jQuery.each(arr, function(){ var cb = jQuery("input", this); var stateTd = jQuery("td.stateCol", this);
Show Contour entries in Member section
Hi all,
Is it possible to show the contour form entries in the member section?
Basically I dont want access to the Contour section in the backend.
However, the entries table along with the functions would be useful in the members area so that editors with access to the members section can activate an entry from there.
Thanks
Roger
Comment author was deleted
Hi Roger,
Try adding an entry to the members dashboard that adds the contour component (where it lists the forms)
Thanks Tim,
something like this?
<section alias="StartupMemberDashboardSection">
<areas>
<area>member</area>
</areas>
<tab caption="Get Started">
<tab caption="Registration Entries">
<control>/plugins/umbracocontour/editFormEntries.aspx?guid=<%# ((Umbraco.Forms.Core.Form)Container.DataItem).Id %>"></control>
</tab>
<control showOnce="true" addPanel="true" panelCaption="">
/umbraco/members/membersearch.ascx
</control>
</tab>
</section>
Comment author was deleted
Think you can just move the current dashboard component from contour section to member section
Sorted,
renamed a copy of the forms dashboard and modified it so it only shows an edit button of the specific form I want them to have access to the entries for.
Just looking how to actually have the submitted option selected by default in the drop down list now and that should be it!
Is there any way of getting around the function in the editFormEntries.aspx where it writes selected to the approved option? I really need it to default to Submitted.
function approveSelected(){
jQuery.each(arr, function(){
var cb = jQuery("input", this);
var stateTd = jQuery("td.stateCol", this);
jQuery.get(webserviceUrl + '&record=' + cb.attr("id") + '&mode=approve');
cb.attr("checked", false);
this.removeClass("selected");
stateTd.html("<span class='Approved'>Approved</span>");
});
arr = new Array();
is working on a reply...