This topic is locked
[SOLVED]

 dofferent defaut between edit and inline edit

5/13/2010 4:11:28 PM
ASPRunnerPro General questions
M
mfred author

I know that I can indicate a field default to apply to the edit page. But I have an applicate where it would be good to have one default for the edit page and another default for a field in the inline edit. Is there any way to do that?

A
ann 5/14/2010

Hi,
To make different default values for edit and inline edit create an alias on the Edit SQL query tab for this field:

SELECT field1,

field1 as field2,

...

FROM TableName



Thereafter proceed to the Choose fields tab, check Edit and uncheck Inline Edit for the field1 and inversely for the field2.

Finally on the Edit as dialog on the Visual Editor tab assign different default values for field1, field2.

M
mfred author 5/14/2010

That worked. Thanks.