Hi,
I thought finding this property would require no thought of my own, but I have not been able to find the setting/property anywhere...
how do you set the text for the "Add New Row" button. Currently, it seems to default to the DATA_MEMBER property.
E.g. Add... USER_ROLE. I would like to be able to set it firstly to a more friendly text description.
thanks heaps. David.
Just a quick follow-up - I believe I found the propperty you need - just set the Hidden property of AddNewBox to False and then set the Prompt property to the actual text you want to see displayed.
Version="4.00" AllowAddNewDefault="Yes" AllowDeleteDefault="Yes" AllowUpdateDefault="Yes"> <FrameStyle Height="200px" Width="325px"> </FrameStyle> <AddNewBox Hidden="False" Prompt="New Prompt"> </AddNewBox> <ActivationObject BorderColor="" BorderWidth=""> </ActivationObject> <AddNewRowDefault Visible="Yes"> </AddNewRowDefault> </DisplayLayout>
I did in the end implement my own add button which works well. The Prompt property of the AddNewBox style settings is for the text before the butto... Eg.
<AddNewBox hidden="False" Prompt="Something random"> </AddNewBox>
would display the following:
Something random [ BUTTON TEXT ]
thanks heaps though for searching...