This topic is locked

Adding new records using InlineAdd

11/18/2009 9:02:41 PM
PHPRunner General questions
R
remo author

Hi,

i m a new comer for the PHPRunner app,

and i want to add multiple records at once.

Inline add is a great option for thia and i need to do some modification on that.
1 - how can i hide current records in the list view page?

2 - how can i create a direct inline add page, without clicking the inline add button? (this should be similar to the ordinary record adding page,which accept records at a glance)

3 - is there any possibility to create a multiple record entry in PHPRunner without using inline add?
those are my questions,

pls help me,

thanks,

remo

J
Jane 11/19/2009

Hi,
please see my answers below:

  1. check off No records on the first page option on theMiscellaneous tab.
  2. to run InlineAdd add custom JavaScript code on the Visual Editor tab in HTML mode.

    Here is a sample:

<script>setTimeout('inlineEditing.inlineAdd(flyid++,null,'TableName_add.php');',1000);</script>


3. unfortunately no.

R
remo author 11/19/2009



Hi,
please see my answers below:

  1. check off No records on the first page option on theMiscellaneous tab.
  2. to run InlineAdd add custom JavaScript code on the Visual Editor tab in HTML mode.

    Here is a sample:

<script>setTimeout('inlineEditing.inlineAdd(flyid++,null,'TableName_add.php');',1000);</script>


3. unfortunately no.


Thanks jane...

i have solved my question no 1,

but i dont know how to manipulate the javascript code in the visual editor and where to put the code.

pls advise.

tks.

remo

J
Jane 11/20/2009

Hi,
to add JavaScript switch to HTML mode on the Visual Editor tab and add your code at the end of the page.