Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic AllowInplaceCreate help (Read 2278 times)
bpeacock
YaBB Newbies
*
Offline


War Eagle!

Posts: 14
Joined: Mar 8th, 2007
AllowInplaceCreate help
Aug 13th, 2008 at 1:47pm
Print Post  
I am trying to enable Inplace create so our users can click on the calendar and start typing to create a new appointment.  In design mode, I have AllowInplaceCreate = true
AllowInplaceEdit = true

When we initialize\load the calendar I set
AllowInplaceEdit = false

This is the way our sample application is set and works fine.  Is this something else I need to set for this to work?  I seem to be missing something while comparing the two apps.

Thanks

  
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: AllowInplaceCreate help
Reply #1 - Aug 13th, 2008 at 2:04pm
Print Post  
In-place editing and creation are both enabled by default, therefore there is no need for you to set anything in order to enable them.

"I seem to be missing something while comparing the two apps."

I am not sure which two apps you are referring to. Can you be more specific?

Meppy
  
Back to top
 
IP Logged
 
bpeacock
YaBB Newbies
*
Offline


War Eagle!

Posts: 14
Joined: Mar 8th, 2007
Re: AllowInplaceCreate help
Reply #2 - Aug 13th, 2008 at 2:35pm
Print Post  
I am referring to the app I am trying to get this working in and the sample app this seems to be working in.
  
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: AllowInplaceCreate help
Reply #3 - Aug 14th, 2008 at 7:27am
Print Post  
The following code should enable users to create new items interactively, but prevent them from editing existing items:

Code
Select All
calendar.AllowInplaceCreate = true;
calendar.AllowInplaceEdit = false; 



If that is what is happening at your side, then everything is set up appropriately.

Meppy
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint